I want to change the cursor shape from an underscore to vertical when entering insert mode within VIM running in Terminal.app. (NOTE: I am aware that this is the default behavior under macvim.)
This reference: http://vim.wikia.com/wiki/Change_cursor_shape_in_different_modes provides 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 this just not supported?