Created
July 8, 2014 15:39
-
-
Save asethwright/9c436d2a8a5b0f48e499 to your computer and use it in GitHub Desktop.
Vim Cursor Color Change in TMUX
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Cursor to yellow on insert mode | |
" Blue on command/other mode | |
" Note the use of hex codes (ie 3971ED) | |
if exists('$TMUX') | |
let &t_EI = "\<Esc>Ptmux;\<Esc>\033]Pl3971ED\033\\" | |
let &t_SI = "\<Esc>Ptmux;\<Esc>\033]PlFBA922\033\\" | |
silent !echo -ne "\<Esc>Ptmux;\<Esc>\033]Pl3971ED\033\\" | |
autocmd VimLeave * silent !echo -ne "\<Esc>Ptmux;\<Esc>\033]Pl3971ED\033\\" | |
else | |
let &t_EI = "\033]Pl3971ED\033\\" | |
let &t_SI = "\033]PlFBA922\033\\" | |
silent !echo -ne "\033]Pl3971ED\033\\" | |
autocmd VimLeave * silent !echo -ne "\033]Pl3971ED\033\\" | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@kostyawhite, @ozohad.. I believe this is based on this answer here: https://vi.stackexchange.com/questions/3756/change-cursor-shape-in-different-terminals
What @asethwright is doing is checking sending the
DCS
escape sequence, ifvim
is running intmux
, otherwise the sequcne wont be sentMore details here: http://vim.wikia.com/wiki/Change_cursor_shape_in_different_modes