rohit-px2 / nvui

A modern frontend for Neovim.
MIT License
1.72k stars 49 forks source link

Not working keys #146

Open ttytm opened 2 years ago

ttytm commented 2 years ago

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 commented 2 years ago

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

dseeni commented 2 years ago

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