2018-02-05 01:58:02 +01:00
|
|
|
diff -u -r ../neovim-0851057a8deaa1197bd0af22babb62c1146d836c/runtime/autoload/man.vim ./runtime/autoload/man.vim
|
|
|
|
--- ../neovim-0851057a8deaa1197bd0af22babb62c1146d836c/runtime/autoload/man.vim 2018-02-04 12:54:30.000000000 +0000
|
|
|
|
+++ ./runtime/autoload/man.vim 2018-02-05 00:48:37.422608665 +0000
|
|
|
|
@@ -149,7 +149,7 @@
|
2017-01-02 01:00:36 +01:00
|
|
|
" Force MANPAGER=cat to ensure Vim is not recursively invoked (by man-db).
|
2016-09-24 21:09:38 +02:00
|
|
|
" http://comments.gmane.org/gmane.editors.vim.devel/29085
|
2018-02-05 01:58:02 +01:00
|
|
|
" Set MAN_KEEP_FORMATTING so Debian man doesn't discard backspaces.
|
|
|
|
- let cmd = ['env', 'MANPAGER=cat', 'MANWIDTH='.manwidth, 'MAN_KEEP_FORMATTING=1', 'man']
|
|
|
|
+ let cmd = ['env', 'MANPAGER=cat', 'MANWIDTH='.manwidth, 'MAN_KEEP_FORMATTING=1', 'mandoc']
|
2017-06-05 02:19:38 +02:00
|
|
|
return s:system(cmd + (s:localfile_arg ? ['-l', a:path] : [a:path]))
|
2016-09-24 21:09:38 +02:00
|
|
|
endfunction
|
|
|
|
|
2017-06-05 02:19:38 +02:00
|
|
|
@@ -213,7 +213,9 @@
|
2017-01-17 15:51:17 +01:00
|
|
|
|
|
|
|
function! s:get_path(sect, name) abort
|
|
|
|
if empty(a:sect)
|
2017-06-05 02:19:38 +02:00
|
|
|
- return s:system(['man', s:find_arg, a:name])
|
2017-01-17 15:51:17 +01:00
|
|
|
+ " Take the first one if multiple lines returned, such as when
|
|
|
|
+ " both man1p/test.1p and man1/test.1 exists.
|
2017-06-05 02:19:38 +02:00
|
|
|
+ return split(s:system(['man', s:find_arg, a:name]), "\n")[0] . "\n"
|
2017-01-17 15:51:17 +01:00
|
|
|
endif
|
|
|
|
" '-s' flag handles:
|
|
|
|
" - tokens like 'printf(echo)'
|