]> git.eshelyaron.com Git - emacs.git/commitdiff
* rcirc.texi: Document rcirc-nick-filter and rcirc-channel-filter
authorPhilip Kaludercic <philipk@posteo.net>
Sat, 11 Sep 2021 14:37:42 +0000 (16:37 +0200)
committerPhilip Kaludercic <philipk@posteo.net>
Sat, 11 Sep 2021 14:37:42 +0000 (16:37 +0200)
doc/misc/rcirc.texi

index dc08a222d86a3800cb45394ccc4232f2b0f6174f..5e157ec57e30d035b3373350498854b2398c9ab2 100644 (file)
@@ -935,6 +935,37 @@ because @code{defun-rcirc-command} is not yet available, and without
                          (concat "I use " rcirc-id-string))))
 @end smallexample
 
+@node Using rcirc with bouncers
+@section Using rcirc with bouncers
+@cindex bouncer
+
+Some bouncers multiplex connections to various servers, but have to
+modify nicks and channel names to make this work. The channel
+@code{#emacs} on @code{irc.libera.chat} becomes
+@code{#emacs/irc.libera.chat}.
+
+@vindex rcirc-nick-filter
+@vindex rcirc-channel-filter
+The options @code{rcirc-nick-filter} and @code{rcirc-channel-filter}
+can be used to make this feel more natural. When set to functions,
+these will be used to change how nicks and channel names are
+displayed. A simple configuration to fix the above example might be:
+
+@smallexample
+(defun my/rcirc-remove-suffix (STR)
+  "Remove suffixes from STR."
+  (save-match-data
+    (if (string-match "/[[:alpha:]]+?\\'" str)
+        (substring str 0 (match-beginning 0))
+      str)))
+
+(setq rcirc-nick-filter #'my/rcirc-remove-suffix
+      rcirc-channel-filter #'local/rcirc-soju-suffix)
+@end smallexample
+
+The effect is that buffer names, nicks in messages, nick-completion
+all strip away the suffix introduced by the bouncer.
+
 @node GNU Free Documentation License
 @appendix GNU Free Documentation License
 @include doclicense.texi