diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-01-19 23:29:00 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-01-19 23:29:00 +0100 |
commit | 4da8fcf34d79d063a011329044c09b3a9cc382d9 (patch) | |
tree | c556def69eeca769b150c73387f2575120ec2b57 /doc/pl/autogen/user | |
parent | 49f4c8e9ef71046cf4697e2f512c4cb14dd44976 (diff) | |
download | weechat-4da8fcf34d79d063a011329044c09b3a9cc382d9.zip |
core: add command /print
Diffstat (limited to 'doc/pl/autogen/user')
-rw-r--r-- | doc/pl/autogen/user/weechat_commands.txt | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/doc/pl/autogen/user/weechat_commands.txt b/doc/pl/autogen/user/weechat_commands.txt index 36b596cce..38feae0d7 100644 --- a/doc/pl/autogen/user/weechat_commands.txt +++ b/doc/pl/autogen/user/weechat_commands.txt @@ -561,6 +561,44 @@ argumenty: argumenty przekazywane do wtyczki podczas ładowania Bez argumentów ta komenda wyświetli wszystkie załadowane wtyczki. ---- +[[command_weechat_print]] +[command]*`print`* display text on a buffer:: + +---- +/print [-buffer <number>|<name>] [-core] [-escape] [-date <date>] [-tags <tags>] [-action|-error|-join|-network|-quit] <text> + -stdout|-stderr <text> + +-buffer: the buffer where text is displayed (default: current buffer) + -core: alias of "-buffer core.weechat" +-escape: interpret escaped chars (for example \a, \07, \x07) + -date: message date, format can be: + -n: 'n' seconds before now + +n: 'n' seconds in the future + n: 'n' seconds since the Epoch (see man time) + date/time (ISO 8601): yyyy-mm-ddThh:mm:ss, example: 2014-01-19T04:32:55 + 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) + +The options -action ... -quit use the prefix defined in options "weechat.look.prefix_*". + +With options -stdout and -stderr, escaped chars are always interpreted. + +Examples: + display a reminder on core buffer with a highlight: + /print -core -tags notify_highlight Reminder: buy milk + display an error on core buffer: + /print -core -error Some error here + display message on core buffer with prefix "abc": + /print -core abc The message + display a message on channel #weechat: + /print -buffer irc.freenode.#weechat Message on #weechat + send alert (BEL): + /print -stderr \a +---- + [[command_weechat_proxy]] [command]*`proxy`* zarządzanie proxy:: |