nvui icon indicating copy to clipboard operation
nvui copied to clipboard

Not working keys

Open ttytm opened this issue 2 years ago • 2 comments

There are already some issues mentioning not working keys, so I don't want to bother too much when there is no time. Maybe it'll be good to create an issue that groups them and create an overview which helps when there is more room for it.

#134 #143

Another one that looks like it has problems is <. E.g., when mapping it to preserve selection while outdenting, no selection is preserved in nvui. vim.keymap.set("v", "<", "<gv", { desc = "Outdent" })

ttytm avatar Jun 09 '22 17:06 ttytm

In terms of the < issue I should haved checked better it is solved using:

local map = vim.keymap.set
-- ...
map("v", "<S-lt>", "<gv",	{ desc = "Outdent" })

In terms of C+^ #147 it's nice to see it solved in #148

ttytm avatar Jun 15 '22 00:06 ttytm

Hmm this present an issue with motion operators as well, for example ct< or dt< or cf< or even f<

dseeni avatar Jun 27 '22 23:06 dseeni