From 998d0ffc09d5c7358db62dc88c2e2b87622f60b5 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Fri, 23 Jan 2015 20:03:05 -0500 Subject: 'keywordprg': support ex commands - new feature: if the first character of 'keywordprg' is ":", the command is invoked as a Vim ex-command prefixed with [count]. - change default 'keywordprg' to :Man --- runtime/ftplugin/man.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/ftplugin') diff --git a/runtime/ftplugin/man.vim b/runtime/ftplugin/man.vim index 11b2b0a665..e907220d0a 100644 --- a/runtime/ftplugin/man.vim +++ b/runtime/ftplugin/man.vim @@ -120,7 +120,7 @@ func GetPage(...) let sect = "" endif if s:FindPage(sect, page) == 0 - echo "\nCannot find a '".page."'." + echo "\nNo manual entry for '".page."'." return endif exec "let s:man_tag_buf_".s:man_tag_depth." = ".bufnr("%") -- cgit