summaryrefslogtreecommitdiff
path: root/doc/en/autogen/user/weechat_commands.txt
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2014-01-24 12:53:23 +0100
committerSebastien Helleu <flashcode@flashtux.org>2014-01-24 12:53:23 +0100
commit97cede06b5b6d7866679b1f8b625b3153b0ade7c (patch)
tree97120a9925918b013a8729a8d1df14d10fbd531b /doc/en/autogen/user/weechat_commands.txt
parentd49c3eaac6df0e7eb225abbfc080cd8abf6e51bb (diff)
downloadweechat-97cede06b5b6d7866679b1f8b625b3153b0ade7c.zip
core: add support of escaped unicode chars in commands /print and "/input insert"
Diffstat (limited to 'doc/en/autogen/user/weechat_commands.txt')
-rw-r--r--doc/en/autogen/user/weechat_commands.txt11
1 files changed, 7 insertions, 4 deletions
diff --git a/doc/en/autogen/user/weechat_commands.txt b/doc/en/autogen/user/weechat_commands.txt
index 9c4e17ab5..c25856339 100644
--- a/doc/en/autogen/user/weechat_commands.txt
+++ b/doc/en/autogen/user/weechat_commands.txt
@@ -410,7 +410,7 @@ list of actions:
switch_active_buffer: switch to next merged buffer
switch_active_buffer_previous: switch to previous merged buffer
zoom_merged_buffer: zoom on merged buffer
- insert: insert text in command line
+ insert: insert text in command line (escaped chars are allowed, see /help print)
paste_start: start paste (bracketed paste mode)
paste_stop: stop paste (bracketed paste mode)
@@ -579,12 +579,13 @@ Without argument, this command lists loaded plugins.
time: hh:mm:ss (example: 04:32:55)
-tags: comma-separated list of tags (see /help filter for a list of tags most commonly used)
text: text to display (prefix and message must be separated by \t)
--stdout: display text on stdout (not in a buffer)
--stderr: display text on stderr (not in a buffer)
+-stdout: display text on stdout (escaped chars are interpreted)
+-stderr: display text on stderr (escaped chars are interpreted)
The options -action ... -quit use the prefix defined in options "weechat.look.prefix_*".
-With options -stdout and -stderr, escaped chars are always interpreted.
+Following escaped chars are supported:
+ \" \\ \a \b \e \f \n \r \t \v \0ooo \xhh \uhhhh \Uhhhhhhhh
Examples:
display a reminder on core buffer with a highlight:
@@ -595,6 +596,8 @@ Examples:
/print -core abc\tThe message
display a message on channel #weechat:
/print -buffer irc.freenode.#weechat Message on #weechat
+ display a snowman (U+2603):
+ /print -escape \u2603
send alert (BEL):
/print -stderr \a
----