Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.21 KB

README.md

File metadata and controls

26 lines (19 loc) · 1.21 KB

follow-markdown-links

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 (if sub directory does not exist, the plugin will prompt for confirmation and create)

You can press BACKSPACE to navigate to previous file (like "e#").

Installation

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
  • NeoBundle
    • Add NeoBundle 'https://github.com/prashanthellina/follow-markdown-links' to .vimrc
    • Run :NeoBundleInstall
  • vim-plug
    • Add Plug 'https://github.com/prashanthellina/follow-markdown-links' to .vimrc
    • Run :PlugInstall