diff options
author | Pablo Barciela <[email protected]> | 2017-10-23 21:49:56 +0200 |
---|---|---|
committer | Pablo Barciela <[email protected]> | 2017-10-24 01:11:18 +0200 |
commit | 9a574072eee9bd69c93658ca9a66eb65643ec8dd (patch) | |
tree | bc7f9cd1243e14c8ea875725fbce516b699bfbc2 /src/terminal-window.c | |
parent | d58bde20331d53140963f590bd3496dea36a0142 (diff) | |
download | mate-terminal-9a574072eee9bd69c93658ca9a66eb65643ec8dd.tar.bz2 mate-terminal-9a574072eee9bd69c93658ca9a66eb65643ec8dd.tar.xz |
add "select all" keyboard shortcut: [control] + [shift] + [A]
and it can be changed in "edit" -> "keyboard shortcuts"
Closes https://github.com/mate-desktop/mate-terminal/issues/191
Diffstat (limited to 'src/terminal-window.c')
-rw-r--r-- | src/terminal-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/terminal-window.c b/src/terminal-window.c index ce3b437..b2b0ef5 100644 --- a/src/terminal-window.c +++ b/src/terminal-window.c @@ -1932,7 +1932,7 @@ terminal_window_init (TerminalWindow *window) G_CALLBACK (edit_paste_callback) }, { - "EditSelectAll", GTK_STOCK_SELECT_ALL, NULL, NULL, + "EditSelectAll", GTK_STOCK_SELECT_ALL, NULL, "<shift><control>A", NULL, G_CALLBACK (edit_select_all_callback) }, |