summaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authorportix <portix@gmx.net>2012-01-16 14:25:00 +0100
committerportix <portix@gmx.net>2012-01-16 14:25:00 +0100
commitde4b639998bc754e5077728eed3965e1bf7264d1 (patch)
treeed2362ea41766e6c0c42a8ac6c6b0c1af24c0c64 /src/config.h
parent527395d704e6692587eeb6ff03bb585a61a5fc20 (diff)
downloaddwb-de4b639998bc754e5077728eed3965e1bf7264d1.zip
New shortcuts entry_confirm, entry_escape
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/config.h b/src/config.h
index 43cd9dee..60ee049c 100644
--- a/src/config.h
+++ b/src/config.h
@@ -112,6 +112,8 @@ static KeyValue KEYS[] = {
{ "entry_word_back", { "b", GDK_CONTROL_MASK, }, },
{ "entry_history_forward", { "j", GDK_CONTROL_MASK, }, },
{ "entry_history_back", { "k", GDK_CONTROL_MASK, }, },
+ { "entry_escape", { "c", GDK_CONTROL_MASK, }, },
+ { "entry_confirm", { "g", GDK_CONTROL_MASK, }, },
{ "download_set_execute", { "x", GDK_CONTROL_MASK, }, },
{ "complete_history", { "H", GDK_CONTROL_MASK, }, },
{ "complete_bookmarks", { "B", GDK_CONTROL_MASK, }, },
@@ -616,9 +618,13 @@ static FunctionMap FMAP [] = {
{ { "entry_history_back", "Command line: Command history back", }, 0,
(Func)commands_entry_history_back, NULL, ALWAYS_SM,
{ 0 }, EP_ENTRY, { NULL }, },
+
+ { { "entry_escape", "Command line: Alternate escape binding", }, 0,
+ (Func)commands_entry_escape, NULL, ALWAYS_SM,
+ { 0 }, EP_ENTRY, { NULL }, },
- { { "entry_history_forward", "Command line: Command history forward", }, 0,
- (Func)commands_entry_history_forward, NULL, ALWAYS_SM,
+ { { "entry_confirm", "Command line: Alternate return binding", }, 0,
+ (Func)commands_entry_confirm, NULL, ALWAYS_SM,
{ 0 }, EP_ENTRY, { NULL }, },
{ { "download_set_execute", "Downloads: toggle between spawning application/download path", }, 0,