This vim plugin enables browsing through your markdown files by using links between them (like a personal wiki). You just have to move the cursor to a link and press ENTER.
Example of links
[Notes](Notes.md)or[Notes]()or[Notes](Notes)will open Notes.md[SubNotes](sub/Notes.md)or[sub/Notes]()or[Notes](sub/Notes)will open sub/Notes.md (ifsubdirectory does not exist, the plugin will prompt for confirmation and create)
You can press BACKSPACE to navigate to previous file (like "e#").
Use your plugin manager of choice.
- Pathogen
git clone https://github.com/prashanthellina/follow-markdown-links ~/.vim/bundle/follow-markdown-links
- Vundle
- Add
Bundle 'https://github.com/prashanthellina/follow-markdown-links'to .vimrc - Run
:BundleInstall
- Add
- NeoBundle
- Add
NeoBundle 'https://github.com/prashanthellina/follow-markdown-links'to .vimrc - Run
:NeoBundleInstall
- Add
- vim-plug
- Add
Plug 'https://github.com/prashanthellina/follow-markdown-links'to .vimrc - Run
:PlugInstall
- Add