You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately, adding support for insert_only is currently not possible to implement. Support for dressing.nvim is implemented as follows:
the dressing window is opened with a "fake cursor" (i.e. I just put a highlight in the dressing buffer)
the real cursor still stays in the command line because the preview of the LSP renaming must take place from command line mode due to the way cmd-preview works in Neovim
So a setting like insert_only does not make sense because you are not actually moving around in the dressing window. You can, however, override settings globally using dressing's setup function as shown in the readme. I hope that clears things up!
Here's my setup using
lazy.nvim
:inc-rename.nvim
works just fine. However, I like to usedressing
with these settings:(see the
dressing
README)It seems like
dressing
's settings are ignored byinc-rename.nvim
. When I press escape, the prompt just exits.Could
inc-rename.nvim
inherit from the configuration passed todressing
'ssetup
function? Or perhaps support passing an independent set of options?The text was updated successfully, but these errors were encountered: