diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2020-07-20 22:39:28 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-07-20 22:39:28 +0200 |
commit | 84e30438d42c1726d506b6ca93feaf7c854ec303 (patch) | |
tree | f91e9405d889f59f9416367f305f003c8c8914c0 /ReleaseNotes.adoc | |
parent | ee3a4a1fc01815c64354d1c793fc5330a079b2d9 (diff) | |
download | weechat-84e30438d42c1726d506b6ca93feaf7c854ec303.zip |
irc: allow to send text on buffers with commands /allchan, /allpv and /allserv
Diffstat (limited to 'ReleaseNotes.adoc')
-rw-r--r-- | ReleaseNotes.adoc | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/ReleaseNotes.adoc b/ReleaseNotes.adoc index 977f50939..37e2e7c58 100644 --- a/ReleaseNotes.adoc +++ b/ReleaseNotes.adoc @@ -20,6 +20,34 @@ https://weechat.org/files/changelog/ChangeLog-devel.html[ChangeLog] [[v3.0]] == Version 3.0 (under dev) +[[v3.0_irc_commands_allchan_allpv_allserv]] +=== IRC commands /allchan, /allpv and /allserv + +The command and arguments given to commands `/allchan`, `/allpv` and `/allserv` +are now evaluated (see /help on the commands for more information). + +Additionally, a breaking change has been introduced: the leading `/` is now +required in these commands, so this allows to send text to buffers without +using the command `/msg * xxx`. + +So with previous releases, to say "hello" on all channels: + +---- +/allchan msg * hello +---- + +Now it can be done like this: + +---- +/allchan hello +---- + +If you want to use a command, you must add explicitly the leading `/`: + +---- +/allchan /msg * hello +---- + [[v3.0_trigger_beep]] === Default "beep" trigger |