Real-time Markdown preview tool with pandoc (view markdown)
npm init --scope=herznodes
Tree-sitter grammar for Vim help files
A rust library and command line tool to read encrypted Vim files.
Edit Directories in Your $EDITOR
Language server for vim help files
VIM as a presentation tool
Search your vim keybindings precisely by keystroke, mode, description or where they came from. Search vim options by name, alias and description.
Vimdo is a ruby gem to automate tasks with vim remote servers. Predefined tasks include diff, merge, etc. You can define your own recipes to run tasks with Vim. For example, you can define `DirDiff` recipe: ```ruby module VimDo class CLI < Thor desc "dirdiff", "directory diff in vim" def dirdiff(from, to) [from, to].each do |f| unless File.directory?(f) raise PathError "#{f} is not directory!" end end from, to = [from, to].map {|f| File.expand_path(f) } commands(%Q{exec 'DirDiff ' fnameescape("#{from}") fnameescape("#{to}")}) end end end ``` Then run `vimdo dirdiff path/to/a path/to/b` from the command line or other tools
VIM as a presentation tool