From a515175134cf4ce7af0f2b147ef48c03da9ce3ff Mon Sep 17 00:00:00 2001 From: AlterDepp Date: Mon, 12 Dec 2011 08:55:56 +0000 Subject: [PATCH] SConscript and SConstruct are python-files git-svn-id: https://vimsuite.svn.sourceforge.net/svnroot/vimsuite/trunk@214 eb2d0018-73a3-4aeb-bfe9-1def61c9ec69 --- vimfiles.stefan/ftdetect/scons.vim | 6 +++--- vimfiles.stefan/ftplugin/scons.vim | 13 ------------- 2 files changed, 3 insertions(+), 16 deletions(-) delete mode 100644 vimfiles.stefan/ftplugin/scons.vim diff --git a/vimfiles.stefan/ftdetect/scons.vim b/vimfiles.stefan/ftdetect/scons.vim index e585be0..b4b39b0 100644 --- a/vimfiles.stefan/ftdetect/scons.vim +++ b/vimfiles.stefan/ftdetect/scons.vim @@ -1,3 +1,3 @@ -autocmd BufRead,BufNewFile SConstruct setlocal filetype=scons -autocmd BufRead,BufNewFile SConscript setlocal filetype=scons -autocmd BufRead,BufNewFile *.SConscript setlocal filetype=scons +autocmd BufRead,BufNewFile SConstruct setlocal filetype=python +autocmd BufRead,BufNewFile SConscript setlocal filetype=python +autocmd BufRead,BufNewFile *.SConscript setlocal filetype=python diff --git a/vimfiles.stefan/ftplugin/scons.vim b/vimfiles.stefan/ftplugin/scons.vim deleted file mode 100644 index 7335034..0000000 --- a/vimfiles.stefan/ftplugin/scons.vim +++ /dev/null @@ -1,13 +0,0 @@ -" Stefans scons-file plugin - -" don't use spaces for tabs -setlocal expandtab -setlocal tabstop=4 -setlocal shiftwidth=4 -setlocal formatoptions=croq - -" commenting -let b:commentstring = '#' - -" Grep options -"let b:GrepFiles = '*.py'