Script Roundup: VimL Parser, Pry/Vim Integration

Alex R. Young
usevim
Published in
1 min readApr 3, 2013

Send in your Vim scripts for review through our contact form.

VimL Parser

VimL Parser (GitHub: ynkdir / vim-vimlparser) by Yukihiro Nakadaira is a Vim Script parser that, given a suitable file, will output a parenthesized Polish prefix notation version of the script. For example, call vimlparser#test('.vimrc') will display a parsed version of your Vim configuration.

The project also includes tests, with examples of the expected output. The source in this plugin is pretty huge, so you might like to check it out if you want to see something extreme in Vim Script.

pry/Vim Integration

pry for Ruby is a popular IRB replacement. Ryan King has created a script to integrate Vim and pry that has some interesting ideas behind it.

It basically provides a quick way to drop into pry from Vim, but can also do things like yank the last line from pry’s history.

--

--