info.vim
info.vim copied to clipboard
Browse info files from Vim (mirror)
For example, `:Info git init` falls back to the default git page, while `:Man git init` shows the right page.
Info supports looking up indices that are not Nodes. For a list of what indices you could look up you could run `info --apropos=` I added support for this on...
Thanks for this plugin. Executing e.g. `:Info ls` returns the error `Info.vim: falling back to manpage`. Running `info ls` on the regular command line shows the expected page. Executing `:Info`...
The README mentions there is both a `:Menu` command and a `:InfoMenu` command. But when I load the plugin, I only get a `:Menu` option. I'm working around right now...
Thanks for nice plugin! Currently, info.vim uses `info:...` format for buffer names. I suggest changing it to the standard `info://...` format, following many other plugins, e.g. `fugitive://`, `man://`, `fern://`. Vim...
I added these mappings: nmap gg K "use fzf for the menu nmap gm :call fzf#vim#buffer_lines('* ', 0) There's probably a much better way to find the nodes names than...