]> git.wh0rd.org Git - nano.git/commitdiff
Making the formatter command more visible in the Go syntax file.
authorBenno Schulenberg <bensberg@justemail.net>
Thu, 11 Feb 2016 17:30:16 +0000 (17:30 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Thu, 11 Feb 2016 17:30:16 +0000 (17:30 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5634 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
doc/syntax/go.nanorc

index eda219338a2bd809c51bdd9e987ff9fb5df18091..67c576416e05576ec634913114179e116ffcf31f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,7 @@
        allow the user a little time to read them.
        * src/text.c (do_linter, do_formatter): Condense some declarations,
        rewrap some lines, and improve a few comments.
+       * doc/syntax/go.nanorc: Make the formatter command more visible.
 
 2016-02-10  Benno Schulenberg  <bensberg@justemail.net>
        * src/text.c (discard_until): Prevent a chain of editing actions from
index 0b6233475e35ecf544888d715e4c3fac7fd7d1eb..e52d188baf8483e9c1fd322b290dcbe77a0da72b 100644 (file)
@@ -2,6 +2,9 @@
 
 syntax "go" "\.go$"
 
+# Set up a formatter since spelling is probably useless...
+formatter gofmt -w
+
 # Types.
 color green "\<(bool|u?int(8|16|32|64)?|float(32|64)|complex(64|128)|byte|rune|uintptr|string|error)\>"
 color green "\<((<-[[:space:]]*)chan|chan[[:space:]]*<-|const|func|interface|map|struct|type|var)\>"
@@ -40,6 +43,3 @@ color brightblue start="/\*" end="\*/"
 
 # Trailing whitespace.
 color ,green "[[:space:]]+$"
-
-# Set up the formatter since spelling is probably useless...
-formatter gofmt -w