vim
bash script to change vim colorscheme based on the available themes
2010/04/11
Here’s one script that you may find useful. A little variation or wrapper for this script can make your life colorful 🙂 You can write a wrapper to this to take one of the inputs randomly and …
vim understanding the various modes and using the yanking more efficiently.
2010/04/06
We will look at the vim modes today. Sometime back , I was looking at copying a function body. So I was basically looking to copy the lines till matching ”}”. I found a plugin …
vim scripts and tips
2010/03/29
Here are few of the links for vim that you can use. It consists of the link to vimrc, colorscheme, syntaxcomplete and zzsplash. <a …
eclim for Fedora – Leonidas – installation.
2010/03/08
Here is the installation instruction for Eclim for vim. I have not tried it as I did not require it, but if you need it. …
Built-in lists in vim
2010/02/03
<a class="zem_slink freebase/en/vimscript" title="Vimscript" rel="wikipedia" href="http://en.wikipedia.org/wiki/Vimscript">Vimscript provides excellent …
using cscope with vim
2010/01/08
Here’s the best of the two links that I found with <a class="zem_slink freebase/en/google" title="Google" rel="homepage" …
7 Examples for Sed Hold and Pattern Buffer Operations
2009/12/22
<a href="http://www.flickr.com/photos/35237104750@N01/259102613"><img id="kwiclick-temp-0" title="txt e-book" …
Know when you will type :q in your term instead of vi(m), the alias will chewed you out.
2009/12/20
most simple solution is to alias :q like so: alias :q=`echo ”This is not vim”` but as someone suggested in commandlinefu, you can use tput to put some color and fun into this. …
Multiple search in vim
2009/11/19
I was looking at a log file and needed to highlight multiple search items to make the logs more readable. I got into multiple threads suggesting various cryptic vim commands but I was in no mood to …
stop indentation on current file in vim to keep the indentation from copied text.
2009/10/22
I have been looking for this for quite some time. Finally found two easy ways to do it: […] :setlocal noautoindent :setlocal nocindent :setlocal nosmartindent :setlocal indentexpr= […] …