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
I am using neovim 0.9 and nvchad config which under the hood uses lazy plugin manager. Maybe I am using a fuzzy and strange environment setup, but for some reason I cannot remap any key to close event. I have this lazy plugin configuration set:
I am using neovim 0.9 and nvchad config which under the hood uses lazy plugin manager. Maybe I am using a fuzzy and strange environment setup, but for some reason I cannot remap any key to close event. I have this lazy plugin configuration set:
AFAIK Everything works but the close button. So I have to call
:python3 debugger.close()
to exit debugger.The keymaps are set because debugger status says that the stop key is F4:
▌▌ [<f5> Start] [<F4> Stop] [:help Vdebug]
and calling
:let vdebug_keymap
outs:The only way to make it work is adding this vim cmd instruction at the end of the lazy plugin config function:
vim.cmd(":noremap <F4> :python3 debugger.close()<cr>")
The text was updated successfully, but these errors were encountered: