mutewinter/dot_vim

leaving vim changes xterm cursor

devhell opened this issue · 2 comments

Not sure if this is just me, but leaving vim will change the xterm block cursor to an ibar.
Not exactly a mind-blowing issue, but I thought that someone might know how to get vim to not mess with xterm's block cursor.

Fantastic project by the way, love it!

Pretty sure this is caused by https://github.com/jszakmeister/vim-togglecursor.

Just delete the line for that plugin in vundle.vim.

Thanks, that worked!

Just for reference, now that you told me the plugin responsible, I had a look into the plugins.vim you provided, and instead of deleting the plugin from the vundle list I changed

" ---------------
" vim-togglecursor
" ---------------
let g:togglecursor_leave='line'

from "line" to "block" which worked great.