diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-02-02 13:02:51 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-02-02 13:02:51 +0100 |
commit | 94ddf61d2000e5824f12f4e892be6a6d2dbf1c25 (patch) | |
tree | 1120d6ffd60db443c8dedcc1ccdef3fa44a6b67c | |
parent | 8663d10063e3e347f6d1396b11839b1876038c01 (diff) | |
download | weechat-94ddf61d2000e5824f12f4e892be6a6d2dbf1c25.zip |
Add missing option "switch_active_buffer" in /help input and completion of command /input
-rw-r--r-- | src/core/wee-command.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c index 5aec91323..9e687fcf4 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -4159,7 +4159,8 @@ command_init () "jump_previously_visited_buffer | " "jump_next_visited_buffer | hotlist_clear | grab_key | " "grab_key_command | scroll_unread | set_unread | " - "set_unread_current_buffer | insert [args]", + "set_unread_current_buffer | switch_active_buffer | " + "insert [args]", N_("This command is used by key bindings or plugins."), "return|complete_next|complete_previous|search_next|" "delete_previous_char|delete_next_char|" @@ -4173,7 +4174,7 @@ command_init () "jump_smart|jump_last_buffer|jump_previously_visited_buffer|" "jump_next_visited_buffer|hotlist_clear|grab_key|" "grab_key_command|scroll_unread|set_unread|" - "set_unread_current_buffer|insert", + "set_unread_current_buffer|switch_active_buffer|insert", &command_input, NULL); hook_command (NULL, "key", N_("bind/unbind keys"), |