Vim Tips Wiki
Advertisement

To stop the cursor from blinking in GVim, add the following to your .vimrc :

" Turn off blinking for the n, v, & c states:
let &guicursor = substitute(&guicursor, "n-v-c:", "n-v-c:blinkon0-", "")
" NOTE: To stop all blinking:
" let &guicursor = &guicursor . ",a:blinkon0"

From http://www.sheepdogit.com/2007/01/28/gvim-vimrc-on-windowsxp/

Comments

Needs a title change (spaces), and prefer using :set over :let, at least for the second command. :set guicursor+=a:blinkon0. (Spiiph 01:08, 16 August 2009 (UTC))


Advertisement