diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-06-29 22:40:58 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-06-29 22:40:58 +0000 |
commit | 42eeac3552c5a5ea10f24373f76b93633b6c8604 (patch) | |
tree | 902f3158470a3e9c53850708cf982c85c6338796 /runtime/ftplugin/help.vim | |
parent | 24bbcfe8fe62ea43b1cea86243be4fdc8794140b (diff) | |
download | vim-42eeac3552c5a5ea10f24373f76b93633b6c8604.zip |
updated for version 7.0097
Diffstat (limited to 'runtime/ftplugin/help.vim')
-rw-r--r-- | runtime/ftplugin/help.vim | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/runtime/ftplugin/help.vim b/runtime/ftplugin/help.vim new file mode 100644 index 000000000..e2439ba0e --- /dev/null +++ b/runtime/ftplugin/help.vim @@ -0,0 +1,13 @@ +" Vim filetype plugin file +" Language: Vim help file +" Maintainer: Nikolai Weibull <nikolai+work.vim@bitwi.se> +" Latest Revision: 2005-06-29 + +if exists("b:did_ftplugin") + finish +endif +let b:did_ftplugin = 1 + +let b:undo_plugin = "setl fo< tw<" + +setlocal formatoptions+=tcroql textwidth=78 |