summaryrefslogtreecommitdiffstats
path: root/runtime/ftplugin/go.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-08-22 19:21:47 +0200
committerBram Moolenaar <Bram@vim.org>2014-08-22 19:21:47 +0200
commitfb539273c95f95e18e9542c2de3318b1b1e73db6 (patch)
tree9b435b3ca96881d563c9416fc876939d0d3f92b6 /runtime/ftplugin/go.vim
parentd2e8087b532e676cc513a2b385deaf1bf7afbf94 (diff)
Updated runtime files.
Diffstat (limited to 'runtime/ftplugin/go.vim')
-rw-r--r--runtime/ftplugin/go.vim18
1 files changed, 18 insertions, 0 deletions
diff --git a/runtime/ftplugin/go.vim b/runtime/ftplugin/go.vim
new file mode 100644
index 0000000000..61dc1a13b7
--- /dev/null
+++ b/runtime/ftplugin/go.vim
@@ -0,0 +1,18 @@
+" Vim filetype plugin file
+" Language: Go
+" Maintainer: David Barnett (https://github.com/google/vim-ft-go)
+" Last Change: 2014 Aug 16
+
+if exists('b:did_ftplugin')
+ finish
+endif
+let b:did_ftplugin = 1
+
+setlocal formatoptions-=t
+
+setlocal comments=s1:/*,mb:*,ex:*/,://
+setlocal commentstring=//\ %s
+
+let b:undo_ftplugin = 'setl fo< com< cms<'
+
+" vim: sw=2 sts=2 et