diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-12-19 22:46:22 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-12-19 22:46:22 +0000 |
commit | 1cd871b5341bf43ee99e136844e3131014880f92 (patch) | |
tree | 6bd9573dbc14de3c4ec85e424cbec9c8d1ee0ed8 /runtime/ftplugin/make.vim | |
parent | 46c9c73de8def79baf8f0a34a12549f6c14944f3 (diff) | |
download | vim-1cd871b5341bf43ee99e136844e3131014880f92.zip |
updated for version 7.0023
Diffstat (limited to 'runtime/ftplugin/make.vim')
-rw-r--r-- | runtime/ftplugin/make.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/ftplugin/make.vim b/runtime/ftplugin/make.vim index c7397da7a..a947be1ad 100644 --- a/runtime/ftplugin/make.vim +++ b/runtime/ftplugin/make.vim @@ -1,7 +1,7 @@ " Vim filetype plugin file " Language: Make " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last Change: 2003 May 04 +" Last Change: 2004 Dec 17 " Only do this when not done yet for this buffer if exists("b:did_ftplugin") @@ -23,3 +23,6 @@ setlocal com=sO:#\ -,mO:#\ \ ,b:# " Set 'commentstring' to put the marker after a #. setlocal commentstring=#\ %s + +" Including files. +let &l:include = '^\s*include' |