summaryrefslogtreecommitdiffstats
path: root/runtime/doc/filetype.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-05-24 20:02:38 +0200
committerBram Moolenaar <Bram@vim.org>2016-05-24 20:02:38 +0200
commit26852128a2b713ef49341a0c18daba928444e7eb (patch)
tree2bf91f7e6ffd93f3bc70646a733c96570d856327 /runtime/doc/filetype.txt
parent2b2b8ae5ab37b04584633c469265d85825166905 (diff)
Update runtime files.
Diffstat (limited to 'runtime/doc/filetype.txt')
-rw-r--r--runtime/doc/filetype.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/doc/filetype.txt b/runtime/doc/filetype.txt
index cc1e53ccb5..995a04965d 100644
--- a/runtime/doc/filetype.txt
+++ b/runtime/doc/filetype.txt
@@ -1,4 +1,4 @@
-*filetype.txt* For Vim version 7.4. Last change: 2016 Apr 30
+*filetype.txt* For Vim version 7.4. Last change: 2016 May 24
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -585,6 +585,10 @@ If you do not like the default folding, use an autocommand to add your desired
folding style instead. For example: >
autocmd FileType man setlocal foldmethod=indent foldenable
+You may also want to set 'keywordprg' to make the |K| command open a manual
+page in a Vim window: >
+ set keywordprg=:Man
+
MANPAGER *manpager.vim*