diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-12-11 17:34:31 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-12-11 17:34:31 +0100 |
commit | 061b0e5c580d9dc8f9d88be22fca66dfcf407a17 (patch) | |
tree | ac84f4ab22db8c0077160e4b4b62cf0a9c0d45cb /src/core/wee-command.c | |
parent | 43c49926d4ec08c287303f93f94c3a3d12d9deba (diff) | |
download | weechat-061b0e5c580d9dc8f9d88be22fca66dfcf407a17.zip |
Many changes in IRC plugin, added IRC specific completions
Diffstat (limited to 'src/core/wee-command.c')
-rw-r--r-- | src/core/wee-command.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c index 0ffb8a251..d0b93696a 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -1908,7 +1908,7 @@ command_init () " scroll 15 min down: /buffer scroll +15m\n" " scroll 20 msgs up: /buffer scroll -20\n" " jump to #weechat: /buffer #weechat"), - "move|close|list|notify|scroll|set|%S|%C %S|%C", + "move|close|list|notify|scroll|set|%b|%c %b|%c", command_buffer, NULL); hook_command (NULL, "builtin", N_("launch WeeChat builtin command (do not look at commands " @@ -1975,12 +1975,12 @@ command_init () "all plugins, then autoload plugins)\n" " unload: unload one or all plugins\n\n" "Without argument, /plugin command lists loaded plugins."), - "list|listfull|load|autoload|reload|unload %P", + "list|listfull|load|autoload|reload|unload %p", command_plugin, NULL); hook_command (NULL, "quit", N_("quit WeeChat"), "", "", - NULL, + "%q", command_quit, NULL); hook_command (NULL, "reload", N_("reload WeeChat and plugins configuration files from " |