Search Results

8
votes

Using Vim for Lisp development

Limp aims to be a fully featured Common Lisp IDE for Vim. It defaults to SBCL, but can be changed to support most other implementations by replacing "sbcl" for your favourite lisp, in the file /usr …
2
votes

Fast word count function in Vim

This will recalculate the number of words whenever you stop typing for a while (specifically, updatetime ms). let g:word_count="<unknown>" fun! WordCount() re …