diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-12-10 20:35:50 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-12-10 20:35:50 +0100 |
commit | 81af9250a7655e54e4f744f2e193ecd5655336a4 (patch) | |
tree | d0f914f475b2472326c6f2b9234b39e2b3608831 /runtime/ftplugin | |
parent | 7c5676b5d68249dabd86bb1da542ba4f103bee07 (diff) | |
download | vim-git-81af9250a7655e54e4f744f2e193ecd5655336a4.tar.gz |
Update runtime files.
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/man.vim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/ftplugin/man.vim b/runtime/ftplugin/man.vim index eef0628a0..3fb22a10d 100644 --- a/runtime/ftplugin/man.vim +++ b/runtime/ftplugin/man.vim @@ -1,7 +1,7 @@ " Vim filetype plugin file " Language: man " Maintainer: SungHyun Nam <goweol@gmail.com> -" Last Change: 2008 Sep 17 +" Last Change: 2010 Nov 29 " To make the ":Man" command available before editing a manual page, source " this script from your startup vimrc file. @@ -15,6 +15,10 @@ if &filetype == "man" endif let b:did_ftplugin = 1 + " Ensure Vim is not recursively invoked (man-db does this) + " when doing ctrl-[ on a man page reference. + let $MANPAGER = "" + " allow dot and dash in manual page name. setlocal iskeyword+=\.,- |