mirror of
https://git.decapod.one/brethil/dotfiles
synced 2024-11-22 11:31:30 +01:00
vim: add syntax highlighting to :Man command
This commit is contained in:
parent
f5f70bfc07
commit
f19e9ea485
|
@ -126,10 +126,10 @@ command! -nargs=1 -complete=command -bar -range Redir silent call Redir(<q-args>
|
|||
|
||||
" Gets the manul page for the given command
|
||||
function! Man(cmd)
|
||||
let output = system('env PAGER="bat -p" man ' . a:cmd)
|
||||
let output = system('man ' . a:cmd)
|
||||
vnew
|
||||
let w:scratch=1
|
||||
setlocal buftype=nofile bufhidden=wipe nobuflisted noswapfile
|
||||
setlocal buftype=nofile bufhidden=wipe nobuflisted noswapfile filetype=man
|
||||
setlocal nonumber norelativenumber
|
||||
call setline(1, split(output, '\n'))
|
||||
endfunction
|
||||
|
|
Loading…
Reference in New Issue
Block a user