nvim-anywise-reg.lua
nvim-anywise-reg.lua copied to clipboard
Plugin for making registers content-aware beyond char- and linewise
Hey! I've noticed that after enabling nvim-anywise-reg using the default config (`p` for anywise-reg's paste), pasting files in nvim-tree stopped working. It looks like anywise-reg overrides the mapping that nvim-tree...
If one does `daw` and then `.` the second action is not stored in the register data stored by anywise. The commands still work but doing a `p` after will...
Enumerating all the text objects manually is kind of error prone and repetitive. Also for some things like [nvim-ts-hint-textobject](https://github.com/mfussenegger/nvim-ts-hint-textobject.git). There is a lot of textobjects implicitly (`m[a-z]`)
To fulfill the potential of the name 'anywise' we could try add the option of copying and pasting as any text object. - Copy a line and paste it in...
If something would go wrong with the register data (for example what currently happens with the numbered registers after `x` or `s`) it would perhaps be good to have a...