diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-12 17:22:37 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-12 17:22:37 +0200 |
commit | 4c2025af5cee3fcd08321c2f23c38e460d3991a9 (patch) | |
tree | 70e89149aa9778b5aa4950d456ea3b736e965625 /ftplugin/go.vim | |
parent | 35433aa23c6f7753fe96c67ed2ffdbb5291085a0 (diff) | |
download | vim-polyglot-4c2025af5cee3fcd08321c2f23c38e460d3991a9.tar.gz vim-polyglot-4c2025af5cee3fcd08321c2f23c38e460d3991a9.zip |
vim-go -> vim-golang
Diffstat (limited to 'ftplugin/go.vim')
-rw-r--r-- | ftplugin/go.vim | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/ftplugin/go.vim b/ftplugin/go.vim deleted file mode 100644 index 8066733c..00000000 --- a/ftplugin/go.vim +++ /dev/null @@ -1,17 +0,0 @@ -" Copyright 2013 The Go Authors. All rights reserved. -" Use of this source code is governed by a BSD-style -" license that can be found in the LICENSE file. -" -" go.vim: Vim filetype plugin for Go. - -if exists("b:did_ftplugin") - finish -endif -let b:did_ftplugin = 1 - -setlocal comments=s1:/*,mb:*,ex:*/,:// -setlocal commentstring=//\ %s - -let b:undo_ftplugin = "setl com< cms<" - -" vim:ts=4:sw=4:et |