diff options
author | Andrew Gerrand <adg@golang.org> | 2010-06-22 15:22:49 +0100 |
---|---|---|
committer | Andrew Gerrand <adg@golang.org> | 2010-06-22 15:22:49 +0100 |
commit | 72e2d88a38412de040f58c19dc50889e31f5f5d1 (patch) | |
tree | 80196a6a0e8721801d2863f8b8cb97dbcceb49b7 /misc/vim | |
parent | e184c91947b18b9e68f56b5667c590290ba4527e (diff) | |
download | go-72e2d88a38412de040f58c19dc50889e31f5f5d1.tar.gz |
misc/vim: always override filetype detection for .go files
R=adg
CC=golang-dev
http://codereview.appspot.com/1665043
Diffstat (limited to 'misc/vim')
-rw-r--r-- | misc/vim/ftdetect/gofiletype.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/vim/ftdetect/gofiletype.vim b/misc/vim/ftdetect/gofiletype.vim index b67dab0ab..884312160 100644 --- a/misc/vim/ftdetect/gofiletype.vim +++ b/misc/vim/ftdetect/gofiletype.vim @@ -1 +1 @@ -au BufRead,BufNewFile *.go setfiletype go +au BufRead,BufNewFile *.go set filetype=go |