diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-12-30 09:09:40 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-12-30 09:09:40 -0500 |
commit | b5c7fbf4b09334fce266ba9a644e3dd6980993a8 (patch) | |
tree | aa5023538237b1fdc8f2e505ded84939bd69106b /runtime/ftplugin | |
parent | a31bcfb98afbe4d845911b4d90255c18769f197a (diff) | |
parent | 272f1064c74c745af4ac97ca1e46015fc7a6934d (diff) | |
download | rneovim-b5c7fbf4b09334fce266ba9a644e3dd6980993a8.tar.gz rneovim-b5c7fbf4b09334fce266ba9a644e3dd6980993a8.tar.bz2 rneovim-b5c7fbf4b09334fce266ba9a644e3dd6980993a8.zip |
Merge pull request #1744 from fwalch/vim-1e8ebf8
vim-patch:1e8ebf8 (missing runtime update)
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/go.vim | 18 | ||||
-rw-r--r-- | runtime/ftplugin/vroom.vim | 2 |
2 files changed, 19 insertions, 1 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 diff --git a/runtime/ftplugin/vroom.vim b/runtime/ftplugin/vroom.vim index 75f61f7b90..3d9e7835d0 100644 --- a/runtime/ftplugin/vroom.vim +++ b/runtime/ftplugin/vroom.vim @@ -1,6 +1,6 @@ " Vim filetype plugin file " Language: Vroom (vim testing and executable documentation) -" Maintainer: David Barnett (https://github.com/google/vim-ft.vroom) +" Maintainer: David Barnett (https://github.com/google/vim-ft-vroom) " Last Change: 2014 Jul 23 if exists('b:did_ftplugin') |