diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-11-28 13:53:34 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-11-28 13:53:34 +0100 |
commit | 3678208477b1f0586128f7f18a6382d342c0c960 (patch) | |
tree | c96e68878f240a8bb87c1da6d25971d5b9bd4d42 /runtime/ftplugin/jproperties.vim | |
parent | c62a644eaf31ff1ea6e3d569d0fe8c9d4eb3d908 (diff) | |
download | vim-git-3678208477b1f0586128f7f18a6382d342c0c960.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/ftplugin/jproperties.vim')
-rw-r--r-- | runtime/ftplugin/jproperties.vim | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/runtime/ftplugin/jproperties.vim b/runtime/ftplugin/jproperties.vim new file mode 100644 index 000000000..5bdd8a7cf --- /dev/null +++ b/runtime/ftplugin/jproperties.vim @@ -0,0 +1,15 @@ +" Vim filetype plugin +" Language: Java properties file +" Maintainer: David Bürgin <676c7473@gmail.com> +" Last Change: 2013-11-19 + +if exists("b:did_ftplugin") + finish +endif +let b:did_ftplugin = 1 + +setlocal formatoptions-=t +setlocal comments=:#,:! +setlocal commentstring=#\ %s + +let b:undo_ftplugin = "setl cms< com< fo<" |