简体   繁体   中英

How to make cursor show as vertical line in insert mode and as block in normal mode, in vim on iterm2

How to change vim cursor to vertical line in insert mode, and block in normal mode, iterm2. mac osx

I have tried some other configs, i found online which said it would fix it but none of them worked. I have tried this, from Vertical vim cursor in command mode :

let &t_EI = "\<Esc>]50;CursorShape=0\x7"
let &t_SI = "\<Esc>]50;CursorShape=1\x7"

I have also tried this one from this site https://hamberg.no/erlend/posts/2014-03-09-change-vim-cursor-in-iterm.html

if $TERM_PROGRAM =~ "iTerm"
    let &t_SI = "\<Esc>]50;CursorShape=1\x7" 
    let &t_EI = "\<Esc>]50;CursorShape=0\x7" 
endif

Nothing seems to be working, and the cursor still remains a block in both insert mode and normal mode. Is there anything else I can try?

There is all you need to know in this guide .

let &t_SI = "\<Esc>]50;CursorShape=1\x7"
let &t_SR = "\<Esc>]50;CursorShape=2\x7"
let &t_EI = "\<Esc>]50;CursorShape=0\x7"

If you use tmux :

let &t_SI = "\<Esc>Ptmux;\<Esc>\<Esc>]50;CursorShape=1\x7\<Esc>\\"
let &t_SR = "\<Esc>Ptmux;\<Esc>\<Esc>]50;CursorShape=2\x7\<Esc>\\"
let &t_EI = "\<Esc>Ptmux;\<Esc>\<Esc>]50;CursorShape=0\x7\<Esc>\\"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM