Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: GitHub noreply@github.com Date: Sun, 07 May 2023 20:37:14 UTC Commit: ca117fcff88d7332ae1b16585f446a16d999bc52 https://github.com/geany/geany-plugins/commit/ca117fcff88d7332ae1b16585f446a...
Log Message: ----------- Merge pull request #1141 from techee/numlock_fix
vimode: fix escape not working when numlock is on
Modified Paths: -------------- vimode/src/keypress.c
Modified: vimode/src/keypress.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -26,7 +26,7 @@ KeyPress *kp_from_event_key(GdkEventKey *ev) KeyPress *kp;
/* ignore keypresses containing Alt and Command on macOS - no Vim command uses them */ - if (ev->state & (GDK_MOD1_MASK | GDK_MOD2_MASK)) + if (ev->state & (GDK_MOD1_MASK | GDK_META_MASK)) return NULL;
switch (ev->keyval)
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org