diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2023-02-05 18:52:57 +0200 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2023-02-05 18:53:44 +0200 |
commit | 24085ba6105712ec601f94a5941da5c7f034f5fb (patch) | |
tree | ec308c9da83b87fa62be63382ef954739680ebf5 /lisp/progmodes/go-ts-mode.el | |
parent | 0862a79fef57b0954c9c47ac3783b40d6aeaef98 (diff) | |
download | emacs-24085ba6105712ec601f94a5941da5c7f034f5fb.tar.gz emacs-24085ba6105712ec601f94a5941da5c7f034f5fb.tar.bz2 emacs-24085ba6105712ec601f94a5941da5c7f034f5fb.zip |
; go-ts-mode--indent-rules: Indent to 0 at top level
Diffstat (limited to 'lisp/progmodes/go-ts-mode.el')
-rw-r--r-- | lisp/progmodes/go-ts-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/progmodes/go-ts-mode.el b/lisp/progmodes/go-ts-mode.el index 4b14e55281e..e5b7bcca9aa 100644 --- a/lisp/progmodes/go-ts-mode.el +++ b/lisp/progmodes/go-ts-mode.el @@ -66,6 +66,7 @@ (defvar go-ts-mode--indent-rules `((go + ((parent-is "source_file") point-min 0) ((node-is ")") parent-bol 0) ((node-is "]") parent-bol 0) ((node-is "}") parent-bol 0) |