Skip to content

Commit

Permalink
Add missing case for c key
Browse files Browse the repository at this point in the history
Fix the breakage introduced in 01bfd9f
  • Loading branch information
jelly committed Feb 3, 2018
1 parent 01bfd9f commit 051e2fb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions termite.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 051e2fb

Please sign in to comment.