inc-rename.nvim icon indicating copy to clipboard operation
inc-rename.nvim copied to clipboard

Incremental LSP renaming based on Neovim's command-preview feature.

Results 17 inc-rename.nvim issues
Sort by recently updated
recently updated
newest added

@weilbith Could you check out this branch? Do you think this is too laggy? (I might be able to add some sort of caching to speed things up when repeatedly...

Hey 👋🏾 I think the title is pretty dump, but I fail to summarize the issue better. The problem is that if I use a keymap like from the README,...

enhancement

It would be great for this plugin to show a rename preview panel similar to the quick fix one, containing a row for each of the symbols which will be...

enhancement

Hi, thank you for this awesome plugin! I love the live-preview for renaming, and [live-command.nvim](https://github.com/smjonas/live-command.nvim) that expands this to other commands like `norm`. Is there anyway to integrate this with...

enhancement

Hey, when I use the snippet provided in the config to rename a variable it works, as long as I don't completely remove the previous variable. Hopefully the video explains...

bug
status: needs repro

Hey I just found this, and it's exactly what I need but there would be one really awesome addition I think. You have all the rest in place, and I...

Here's my setup using `lazy.nvim`: ```lua { "smjonas/inc-rename.nvim", dependencies = { "stevearc/dressing.nvim" }, config = function() local inc_rename = require("inc_rename") inc_rename.setup({ input_buffer_type = "dressing" }) vim.keymap.set("n", "rn", function() return ":IncRename...

enhancement

Hi. Sometimes, when I try to rename an item, I get the following error: ``` [inc-rename] An error occurred in the preview function. Please report this error here: https://github.com/smjonas/inc-rename.nvim/issues: Error...

bug
status: needs repro

Normally, we can use `up` and `down` key to rotate the command in history after typing `:`. But if we used `IncRename` command we cannot do that https://github.com/smjonas/inc-rename.nvim/assets/62557596/4f5157bb-2865-497e-a944-71fe2cf3dac9

bug

Thank you for the great plugin! I would like to suggest that the `post_hook` also be executed when the operation is canceled. Consider a scenario where we set `inccommand` to...

enhancement
status: needs response