summaryrefslogtreecommitdiff
path: root/doc/it
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-07-28 11:59:19 +0200
committerSebastien Helleu <flashcode@flashtux.org>2010-07-28 11:59:19 +0200
commit7512ae4b1fa354ac66867767b6aa76a586c8246f (patch)
tree431c4c18eba2f449b45553ca3f25e94bb3ccf661 /doc/it
parent734fe231c97fdf340dfd612a72fed7ddbb91840c (diff)
downloadweechat-7512ae4b1fa354ac66867767b6aa76a586c8246f.zip
Add example of printed message with tag "no_log" in scripting guide
Diffstat (limited to 'doc/it')
-rw-r--r--doc/it/weechat_scripting.it.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/it/weechat_scripting.it.txt b/doc/it/weechat_scripting.it.txt
index ea74cc64d..981f69891 100644
--- a/doc/it/weechat_scripting.it.txt
+++ b/doc/it/weechat_scripting.it.txt
@@ -374,6 +374,10 @@ Esempi:
# display "hello" on core buffer
weechat.prnt("", "hello")
+# display "hello" on core buffer, but do not write it to log file
+# (version >= 0.3.3 only)
+weechat.prnt_date_tags("", 0, "no_log", "hello")
+
# visualizza il prefisso "==>" ed il messaggio "hello" sul buffer corrente
# (prefisso e messaggio vanno separati da una tabulazione)
weechat.prnt(weechat.current_buffer(), "==>\thello")