diff options
-rw-r--r-- | ChangeLog.asciidoc | 1 | ||||
-rw-r--r-- | src/core/wee-command.c | 14 |
2 files changed, 9 insertions, 6 deletions
diff --git a/ChangeLog.asciidoc b/ChangeLog.asciidoc index 924879b4a..b7c3ca0ae 100644 --- a/ChangeLog.asciidoc +++ b/ChangeLog.asciidoc @@ -51,6 +51,7 @@ https://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes] === Bugs fixed +* core: add missing completions in command /input * guile: fix value returned in case of error in functions: config_option_reset, config_color, config_color_default, config_write, config_read, config_reload, hook_command, buffer_string_replace_local_var, 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", |