diff options
| author | Philip Kaludercic | 2021-09-30 16:25:48 +0200 |
|---|---|---|
| committer | Philip Kaludercic | 2021-09-30 16:25:48 +0200 |
| commit | a1789fd67b2dd67d891b6c7181aee885a9ab9447 (patch) | |
| tree | 5097194243067778bb1bfc67434168621e4fd2d7 /doc/misc | |
| parent | b5e3cc3bc597d56dfe09ee500717344649ea0354 (diff) | |
| download | emacs-a1789fd67b2dd67d891b6c7181aee885a9ab9447.tar.gz emacs-a1789fd67b2dd67d891b6c7181aee885a9ab9447.zip | |
Add rcirc-omit-unless-requested option
* doc/misc/rcirc.texi (Notices): Update documentation
* lisp/net/rcirc.el (rcirc-pending-requests): Add local variable
(rcirc-omit-unless-requested): Add user option
(rcirc-print): Respect rcirc-omit-unless-requested
(rcirc-define-command): Update rcirc-pending-requests
Diffstat (limited to 'doc/misc')
| -rw-r--r-- | doc/misc/rcirc.texi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/misc/rcirc.texi b/doc/misc/rcirc.texi index 20971293ed1..a4ca54a8b01 100644 --- a/doc/misc/rcirc.texi +++ b/doc/misc/rcirc.texi | |||
| @@ -823,6 +823,19 @@ active and only omits a message if the nick has not been active. The | |||
| 823 | window @code{rcirc} considers is controlled by the | 823 | window @code{rcirc} considers is controlled by the |
| 824 | @code{rcirc-omit-threshold} variable. | 824 | @code{rcirc-omit-threshold} variable. |
| 825 | 825 | ||
| 826 | @vindex rcirc-omit-unless-requested | ||
| 827 | Certain messages can be omitted by default, unless the user manual | ||
| 828 | requests them. For example, if you don't want to display @code{TOPIC} | ||
| 829 | and @code{NAMES} messages, after reconnecting, you can configure | ||
| 830 | @code{rcirc-omit-unless-requested} to hide: | ||
| 831 | |||
| 832 | @example | ||
| 833 | (setq rcirc-omit-unless-requested '("TOPIC" "NAMES")) | ||
| 834 | @end example | ||
| 835 | |||
| 836 | Now NAMES will only be displayed, after it has been requested via the | ||
| 837 | @code{rcirc-cmd-name} command. | ||
| 838 | |||
| 826 | @node Hacking and Tweaking | 839 | @node Hacking and Tweaking |
| 827 | @chapter Hacking and Tweaking | 840 | @chapter Hacking and Tweaking |
| 828 | @cindex hacking and tweaking | 841 | @cindex hacking and tweaking |