Wednesday, June 15, 2022

Re: Cursors

> Why cursor shape in terminal neovim can change but in vim not? Maybe
> something different in here.

It very much depends on the terminal. Neovim assumes a very recent
terminal, it won't work everywhere. It may mess up on some terminals.

What I use myself:

" Change the cursor color and shape depending on the mode.
if &term =~ "xterm" && $SSH_CLIENT == ''
let &t_SI = "\<Esc>]12;purple\x7" . "\<Esc>[5 q"
try
let &t_SR = "\<Esc>]12;darkred\x7" . "\<Esc>[3 q"
catch
endtry
let &t_EI = "\<Esc>]12;royalblue2\x7" . "\<Esc>[2 q"
endif

--
Why is "abbreviation" such a long word?

/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/20220615155853.AB4591C233D%40moolenaar.net.

No comments: