From bd436dbb89264598ec3217e2a0e11eb91e4a0d95 Mon Sep 17 00:00:00 2001 From: Andrey Utkin Date: Sat, 1 Feb 2014 20:40:20 +0200 Subject: [PATCH] [WIP] add konsole-alike hotkeys --- terminal/terminal-window.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terminal/terminal-window.c b/terminal/terminal-window.c index 8dd564d..5da9820 100644 --- a/terminal/terminal-window.c +++ b/terminal/terminal-window.c @@ -209,10 +209,10 @@ static const GtkActionEntry action_entries[] = { "terminal-menu", NULL, N_ ("_Terminal"), NULL, NULL, NULL, }, { "set-title", NULL, N_ ("_Set Title..."), NULL, NULL, G_CALLBACK (terminal_window_action_set_title), }, { "search", GTK_STOCK_FIND, N_ ("_Find..."), "f", NULL, G_CALLBACK (terminal_window_action_search), }, - { "search-next", NULL, N_ ("Find Ne_xt"), NULL, NULL, G_CALLBACK (terminal_window_action_search_next), }, - { "search-prev", NULL, N_ ("Find Pre_vious"), NULL, NULL, G_CALLBACK (terminal_window_action_search_prev), }, + { "search-next", NULL, N_ ("Find Ne_xt"), "F3", NULL, G_CALLBACK (terminal_window_action_search_next), }, + { "search-prev", NULL, N_ ("Find Pre_vious"), "F3", NULL, G_CALLBACK (terminal_window_action_search_prev), }, { "reset", NULL, N_ ("_Reset"), NULL, NULL, G_CALLBACK (terminal_window_action_reset), }, - { "reset-and-clear", NULL, N_ ("_Clear Scrollback and Reset"), NULL, NULL, G_CALLBACK (terminal_window_action_reset_and_clear), }, + { "reset-and-clear", NULL, N_ ("_Clear Scrollback and Reset"), "x", NULL, G_CALLBACK (terminal_window_action_reset_and_clear), }, { "tabs-menu", NULL, N_ ("T_abs"), NULL, NULL, NULL, }, { "prev-tab", GTK_STOCK_GO_BACK, N_ ("_Previous Tab"), "Page_Up", N_ ("Switch to previous tab"), G_CALLBACK (terminal_window_action_prev_tab), }, { "next-tab", GTK_STOCK_GO_FORWARD, N_ ("_Next Tab"), "Page_Down", N_ ("Switch to next tab"), G_CALLBACK (terminal_window_action_next_tab), }, -- 1.8.5.3