aboutsummaryrefslogtreecommitdiffhomepage
path: root/input.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'input.cpp')
-rw-r--r--input.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/input.cpp b/input.cpp
index 02b52688..15cb7b4e 100644
--- a/input.cpp
+++ b/input.cpp
@@ -112,6 +112,8 @@ static const wchar_t * const name_arr[] =
L"backward-char",
L"forward-word",
L"backward-word",
+ L"forward-bigword",
+ L"backward-bigword",
L"history-search-backward",
L"history-search-forward",
L"delete-char",
@@ -126,8 +128,10 @@ static const wchar_t * const name_arr[] =
L"backward-kill-line",
L"kill-whole-line",
L"kill-word",
+ L"kill-bigword",
L"backward-kill-word",
L"backward-kill-path-component",
+ L"backward-kill-bigword",
L"history-token-search-backward",
L"history-token-search-forward",
L"self-insert",
@@ -218,6 +222,8 @@ static const wchar_t code_arr[] =
R_BACKWARD_CHAR,
R_FORWARD_WORD,
R_BACKWARD_WORD,
+ R_FORWARD_BIGWORD,
+ R_BACKWARD_BIGWORD,
R_HISTORY_SEARCH_BACKWARD,
R_HISTORY_SEARCH_FORWARD,
R_DELETE_CHAR,
@@ -232,8 +238,10 @@ static const wchar_t code_arr[] =
R_BACKWARD_KILL_LINE,
R_KILL_WHOLE_LINE,
R_KILL_WORD,
+ R_KILL_BIGWORD,
R_BACKWARD_KILL_WORD,
R_BACKWARD_KILL_PATH_COMPONENT,
+ R_BACKWARD_KILL_BIGWORD,
R_HISTORY_TOKEN_SEARCH_BACKWARD,
R_HISTORY_TOKEN_SEARCH_FORWARD,
R_SELF_INSERT,