Add missing case for c key

Fix the breakage introduced in 01bfd9f9ea
This commit is contained in:
Jelle van der Waa 2018-02-03 14:25:39 +01:00
parent 01bfd9f9ea
commit 051e2fbf66
1 changed files with 1 additions and 0 deletions

View File

@ -998,6 +998,7 @@ gboolean key_press_cb(VteTerminal *vte, GdkEventKey *event, keybind_info *info)
overlay_show(&info->panel, overlay_mode::urlselect, nullptr);
exit_command_mode(vte, &info->select);
return TRUE;
case GDK_KEY_c:
#if VTE_CHECK_VERSION(0, 50, 0)
vte_terminal_copy_clipboard_format(vte, VTE_FORMAT_TEXT);
#else