/usr/share/vim/vim80/plugin
NameSizeModeActions
getscriptPlugin.vim13930644editdlrm
gzip.vim24990644editdlrm
logiPat.vim102690644editdlrm
manpager.vim6760644editdlrm
matchparen.vim67460644editdlrm
netrwPlugin.vim104400644editdlrm
README.txt9360644editdlrm
rrhelper.vim14140644editdlrm
spellfile.vim4990644editdlrm
tarPlugin.vim22590644editdlrm
tohtml.vim99240644editdlrm
vimballPlugin.vim28980644editdlrm
zipPlugin.vim25100644editdlrm
Edit: /usr/share/vim/vim80/plugin/manpager.vim (676B)
" Vim plugin for using Vim as manpager. " Maintainer: Enno Nagel " Last Change: 2018 Feb 04 command! -nargs=0 MANPAGER call s:ManPager() | delcommand MANPAGER function! s:ManPager() set nocompatible if exists('+viminfofile') set viminfofile=NONE endif set noswapfile setlocal ft=man runtime ftplugin/man.vim setlocal buftype=nofile bufhidden=hide iskeyword+=: modifiable " Emulate 'col -b' silent keepj keepp %s/\v(.)\b\ze\1?//ge " Remove empty lines above the header call cursor(1, 1) let n = search(".*(.*)", "c") if n > 1 exe "1," . n-1 . "d" endif setlocal nomodified readonly syntax on endfunction