this post was submitted on 22 Nov 2023
2 points (100.0% liked)

Neovim

1967 readers
52 users here now

founded 1 year ago
MODERATORS
 

As title, I'v installed mini.comment plugin, but when I type gc for commenting a line nothing happen. How can I know what's wrong without disable every other extension or proceding incrementaly from scratch? (don't want to intterrupt my workflow) Thanks

you are viewing a single comment's thread
view the rest of the comments
[–] dafunkkk 1 points 7 months ago* (last edited 7 months ago) (3 children)

This is what is showed after doing :verbose namp gc, seems that all is ok....still if I press gc // on commentig line a search command is done...if I try on commented line with gcc command the line is cleared...

n g * lua require("which-key").show("g", {mode = "n", auto = true}) Last set from Lua

n gcc * Comment line Last set from Lua line 293

n gc * Comment Last set from Lua line 293

[–] [email protected] 1 points 7 months ago (2 children)

Like I said, I haven't used mini.comment, but having both gc and gcc mapping may cause problems. If I remember correctly, in these situations, neovim waits after receiving gc command to figure out if you are trying to execute comment last or gcc with comment line. Depending on timelen (or timeout, forgot the exact name) setting the command you actually execute will defer based on the key pressed/not pressed after gc.

Also, if gc is mapped to comment last, and there was no last comment action performed, it might do nothing (maybe check the readme to be sure). So maybe try changing the mapping to see if that helps.

[–] dafunkkk 1 points 7 months ago (1 children)

it seems that which-key create conflict with mini.commnet...if I disable it gc and gcc works according....now I don't know how to let both plugin live togethere

[–] [email protected] 1 points 7 months ago

That makes sense. Which-key doesn't allow the timeout to take place after gc since it knows about gcc. While that functionality is useful when you don't know which key to press next, in situations like these it would create problems. I think your best solution would still be to modify the mappings. Maybe remap gc to gcl (comment last) or something like that.