neovim-component icon indicating copy to clipboard operation
neovim-component copied to clipboard

Cursor doesn't respect `highlight Cursor` setting

Open haifengkao opened this issue 8 years ago • 1 comments

see http://vim.wikia.com/wiki/Configuring_the_cursor

NeovimCursor should store the char under the cursor to redraw it correctly. It can avoid the ugly anti-aliasing issue as well.

haifengkao avatar Jul 29 '16 07:07 haifengkao

NeovimCursor should store the char under the cursor to redraw it correctly. It can avoid the ugly anti-aliasing issue as well.

Yes, as you said, it's the best that NeovimCursor contains the character under the cursor. It was discussed once in NyaoVim issue.

https://github.com/rhysd/NyaoVim/issues/16

However, I could not find the way to obtain the character under the cursor efficiently (Note: RPC is slow). So currently neovim-component stupidly inverts the color under the cursor.

rhysd avatar Jul 29 '16 08:07 rhysd