VimPlugin: vim-superman

From wikinotes

view/navigate syntax-highlighted manpages within vim,
optionally use instead of man.

Documentation

github https://github.com/osyo-manga/vim-over

Usage

Vim

:Man vim
# table of contents within quickfix
function ManToc()
    """ show table of contents for vim-superman manpage
    """
    :vimgrep \^[A-Z]\+   %<Left><Left><Left><CR><CR>
    :copen
endfunction
command! ManToc call ManToc()

Commandline

# alias to show manpage within vim with TOC
alias vman='vim -c "SuperMan $*" -c ":copen" -c "vimgrep \^[A-Z]\+   %<Left><Left><Left><CR><CR>"'