diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-05-01 08:47:11 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-05-01 08:47:11 +0200 |
commit | 90bd568a619b0a78cb6c206d883f35b8631c122f (patch) | |
tree | e6efe9861866cc96c7d9c6b7cce80f7491c9e5aa /src | |
parent | d8d44d6138f3cebf551e2c19710846905ce00cd9 (diff) | |
download | weechat-90bd568a619b0a78cb6c206d883f35b8631c122f.zip |
core: add missing completions in command /input
Diffstat (limited to 'src')
-rw-r--r-- | src/core/wee-command.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c index 960e4c42b..a23523749 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -7406,18 +7406,20 @@ command_init () " paste_stop: stop paste (bracketed paste mode)\n" "\n" "This command is used by key bindings or plugins."), - "return|complete_next|complete_previous|search_text|search_switch_case|" + "return|complete_next|complete_previous|search_text|" + "search_switch_case|search_switch_regex|search_switch_where|" "search_previous|search_next|search_stop|delete_previous_char|" "delete_next_char|delete_previous_word|delete_next_word|" "delete_beginning_of_line|delete_end_of_line|delete_line|" "clipboard_paste|transpose_chars|undo|redo|move_beginning_of_line|" - "move_end_of_line|move_previous_char|move_next_char|move_previous_word|" - "move_next_word|history_previous|history_next|history_global_previous|" - "history_global_next|jump_smart|jump_previously_visited_buffer|" + "move_end_of_line|move_previous_char|move_next_char|" + "move_previous_word|move_next_word|history_previous|history_next|" + "history_global_previous|history_global_next|jump_smart|" + "jump_last_buffer_displayed|jump_previously_visited_buffer|" "jump_next_visited_buffer|hotlist_clear|grab_key|grab_key_command|" "grab_mouse|grab_mouse_area|set_unread|set_unread_current_buffer|" - "switch_active_buffer|switch_active_buffer_previous|zoom_merged_buffer|" - "insert|send|paste_start|paste_stop", + "switch_active_buffer|switch_active_buffer_previous|" + "zoom_merged_buffer|insert|send|paste_start|paste_stop", &command_input, NULL); hook_command ( NULL, "key", |