Billy Patton wrote:
In gvim the mouse cursor dissapears when I begin typing.
Can this be done in vim?
This property is more a function of the xterm/console you're using
rather than of vim.
Here's an example of how to change color with an xterm (blue on insert,
yellow else):
if v:version >= 700
let &t_SI="\<esc>]12;blue\x7"
let &t_EI="\<esc>]12;yellow\x7"
endif
I don't think you can change cursor size, but I'm willing for someone to
show how to do it.
I looked over a list of ansi escape sequences I found on the web but saw
nothing to change
the cursor size.
Regards,
Chip Campbell