diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-02-12 17:39:34 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-02-12 17:39:34 +0000 |
commit | aba6e1257d4ef85e8641ee0f35428ea53a217b03 (patch) | |
tree | cc1e920d8aead9f1d43d665484d8b442a4fe0993 /doc/en | |
parent | 6d01968259a92cc1a62cb313742b22b5c1178788 (diff) | |
download | weechat-aba6e1257d4ef85e8641ee0f35428ea53a217b03.zip |
Added "call" option to /key command, added new key function "insert" to insert text on command line (task #6468)
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/key_functions.xml | 4 | ||||
-rw-r--r-- | doc/en/weechat_commands.xml | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/en/key_functions.xml b/doc/en/key_functions.xml index bc04f1bbf..1680aeb29 100644 --- a/doc/en/key_functions.xml +++ b/doc/en/key_functions.xml @@ -197,3 +197,7 @@ <entry><literal>grab_key</literal></entry> <entry>grab a key</entry> </row> +<row> + <entry><literal>insert</literal></entry> + <entry>insert a string in command line</entry> +</row> diff --git a/doc/en/weechat_commands.xml b/doc/en/weechat_commands.xml index cd875739d..82d7e7dc2 100644 --- a/doc/en/weechat_commands.xml +++ b/doc/en/weechat_commands.xml @@ -108,13 +108,14 @@ For each argument, '*' means all. Without argument, /ignore command lists all defined ignore. </programlisting> -<command>key [key [function/command]] [unbind key] [functions] [reset -yes]</command> +<command>key [key [function/command]] [unbind key] [functions] [call function ["args"]] [reset -yes]</command> <programlisting> bind/unbind keys key: display or bind this key to an internal function or a command (beginning by "/") unbind: unbind a key functions: list internal functions for key bindings + call: call a function by name (with optional arguments) reset: restore bindings to the default values and delete ALL personal bindings (use carefully!) </programlisting> |