diff options
author | Pablo Barciela <[email protected]> | 2017-11-07 10:14:17 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-11-18 23:04:47 +0100 |
commit | ca53774e9fcb7ab8fb4402ac09db5ed3f6489c21 (patch) | |
tree | 835b7102a281eb7d3661155e578b0e13d955e98a /src/org.mate.terminal.gschema.xml.in | |
parent | 8c0cb6d5faef66548644f0289bfe7c1c84b9cb19 (diff) | |
download | mate-terminal-ca53774e9fcb7ab8fb4402ac09db5ed3f6489c21.tar.bz2 mate-terminal-ca53774e9fcb7ab8fb4402ac09db5ed3f6489c21.tar.xz |
allow remapping "search" keyboard shortcuts
Closes https://github.com/mate-desktop/mate-terminal/issues/160
Diffstat (limited to 'src/org.mate.terminal.gschema.xml.in')
-rw-r--r-- | src/org.mate.terminal.gschema.xml.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/org.mate.terminal.gschema.xml.in b/src/org.mate.terminal.gschema.xml.in index 3a3d5e1..0a45fc8 100644 --- a/src/org.mate.terminal.gschema.xml.in +++ b/src/org.mate.terminal.gschema.xml.in @@ -320,6 +320,21 @@ <summary>Keyboard shortcut to select all text</summary> <description>Keyboard shortcut key for selecting all the text into the terminal. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action.</description> </key> + <key name="search-find" type="s"> + <default>'<Ctrl><Shift>f'</default> + <summary>Keyboard shortcut to show the find dialog</summary> + <description>Keyboard shortcut key for showing the find dialog. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action.</description> + </key> + <key name="search-find-next" type="s"> + <default>'<Ctrl><Shift>h'</default> + <summary>Keyboard shortcut to find the next text</summary> + <description>Keyboard shortcut key for finding the next text into the terminal. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action.</description> + </key> + <key name="search-find-previous" type="s"> + <default>'<Ctrl><Shift>g'</default> + <summary>Keyboard shortcut to find the previous text</summary> + <description>Keyboard shortcut key for finding the previous text into the terminal. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action.</description> + </key> <key name="full-screen" type="s"> <default>'F11'</default> <summary>Keyboard shortcut to toggle full screen mode</summary> |