I want to change the shape of the cursor from underline to vertical when I enter insert mode in VIM running in Terminal.app. (NOTE: I know this is the default behavior in macvim.)
This link: http://vim.wikia.com/wiki/Change_cursor_shape_in_different_modes contains instructions on how to do this. For example, the following works with iterm2:
let &t_SI = "\<Esc>]50;CursorShape=1\x7" let &t_EI = "\<Esc>]50;CursorShape=0\x7"
Unfortunately, this does not work with Terminal.app (under Lion).
Are there any tricks for this with Terminal.app - or is it just not supported?
source share