vhakulinen / gnvim

GUI for neovim, without any web bloat
MIT License
1.85k stars 69 forks source link

C-Space bindings #164

Closed ggouss closed 2 years ago

ggouss commented 3 years ago
binding not working with vimwiki toggle list checkbox :VimwikiToggleListItem behavior similar to https://github.com/vimwiki/vimwiki/issues/427 workaround is to remap to another keys, like `t :VimwikiToggleListItem`
skoenen commented 3 years ago

Similar problem here.

nnoremap <C-space> za

Expect: Should toggle a fold.

Actual: Does nothing

nikplx commented 3 years ago

After looking into that for a few minutes, I guess to problem comes from the keyname_to_nvim_key function which converts the keycodes GTK sends into nvim keycodes missing a mapping for the space key. I created a PR to fix this here https://github.com/vhakulinen/gnvim/pull/176.

vhakulinen commented 2 years ago

Fixed by #176.