assets/keymaps/vim.json 🔗
@@ -568,7 +568,7 @@
}
},
{
- "context": "Editor && vim_mode == normal",
+ "context": "Editor && vim_mode == normal && !VimWaiting",
"bindings": {
"g c c": "editor::ToggleComments"
}
xzbdmw created
Release Notes:
-Fixed #12483
It turns out to be very simple. `fg` has conflict with `gc` mapping so
when you type g editor state is pending.
assets/keymaps/vim.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -568,7 +568,7 @@
}
},
{
- "context": "Editor && vim_mode == normal",
+ "context": "Editor && vim_mode == normal && !VimWaiting",
"bindings": {
"g c c": "editor::ToggleComments"
}