Navigation Menu

Skip to content

Commit

Permalink
Set ctrl-shift-v to properties to stop it crashing VTE
Browse files Browse the repository at this point in the history
Some VTE versions crash if paste happens with focus outside the window, bind the accelerator to something innocuous in Geany to override it outside the VTE window.
  • Loading branch information
elextr committed Jul 12, 2021
1 parent b524a58 commit 0adab77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/keybindings.c
Expand Up @@ -345,7 +345,7 @@ static void init_default_kb(void)
GDK_KEY_s, GDK_SHIFT_MASK | GEANY_PRIMARY_MOD_MASK, "menu_saveall", _("Save all"),
"menu_save_all1");
add_kb(group, GEANY_KEYS_FILE_PROPERTIES, NULL,
0, 0, "file_properties", _("Properties"), "properties1");
GDK_KEY_v, GDK_SHIFT_MASK | GEANY_PRIMARY_MOD_MASK, "file_properties", _("Properties"), "properties1");
add_kb(group, GEANY_KEYS_FILE_PRINT, NULL,
GDK_KEY_p, GEANY_PRIMARY_MOD_MASK, "menu_print", _("Print"), "print1");
add_kb(group, GEANY_KEYS_FILE_CLOSE, NULL,
Expand Down

0 comments on commit 0adab77

Please sign in to comment.