aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorF. Jason Park2023-05-04 00:01:11 -0700
committerF. Jason Park2023-07-13 18:45:31 -0700
commit08515350faff03e4206e7ed4dfacffc55a4779cd (patch)
tree48ac364cb0bf976271b7f1ce8835e7da27e86cbb /lisp
parentded35c2da4da52641ec99927347cd50b736b9577 (diff)
downloademacs-08515350faff03e4206e7ed4dfacffc55a4779cd.tar.gz
emacs-08515350faff03e4206e7ed4dfacffc55a4779cd.zip
Add mini modules bufbar and nickbar to ERC
* doc/misc/erc.texi: Add `bufbar' and `nickbar' to known modules. Also add `keep-place', which was missing, and remove `bbdb', which is not part of ERC. Add new section "Auxiliary Modules" for listing experimental modules or those typically managed by some other feature. * erc/ERC-NEWS: Mention new mini modules for libraries erc-status-sidebar.el and erc-speedbar.el. * lisp/erc/erc.el (erc-modules): Add `bufbar' and `nickbar' to selection of offered modules. * test/lisp/erc/erc-tests.el (erc-tests--modules): Add `bufbar' and `nickbar'. (Bug#63595)
Diffstat (limited to 'lisp')
-rw-r--r--lisp/erc/erc.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el
index 07c62c935c3..03c21059a92 100644
--- a/lisp/erc/erc.el
+++ b/lisp/erc/erc.el
@@ -2046,6 +2046,7 @@ removed from the list will be disabled."
2046 :greedy t 2046 :greedy t
2047 (const :tag "autoaway: Set away status automatically" autoaway) 2047 (const :tag "autoaway: Set away status automatically" autoaway)
2048 (const :tag "autojoin: Join channels automatically" autojoin) 2048 (const :tag "autojoin: Join channels automatically" autojoin)
2049 (const :tag "bufbar: Show ERC buffers in a side window" bufbar)
2049 (const :tag "button: Buttonize URLs, nicknames, and other text" button) 2050 (const :tag "button: Buttonize URLs, nicknames, and other text" button)
2050 (const :tag "capab: Mark unidentified users on servers supporting CAPAB" 2051 (const :tag "capab: Mark unidentified users on servers supporting CAPAB"
2051 capab-identify) 2052 capab-identify)
@@ -2066,6 +2067,7 @@ removed from the list will be disabled."
2066 move-to-prompt) 2067 move-to-prompt)
2067 (const :tag "netsplit: Detect netsplits" netsplit) 2068 (const :tag "netsplit: Detect netsplits" netsplit)
2068 (const :tag "networks: Provide data about IRC networks" networks) 2069 (const :tag "networks: Provide data about IRC networks" networks)
2070 (const :tag "nickbar: Show nicknames in a dyamic side window" nickbar)
2069 (const :tag "nicks: Uniquely colorize nicknames in target buffers" nicks) 2071 (const :tag "nicks: Uniquely colorize nicknames in target buffers" nicks)
2070 (const :tag "noncommands: Don't display non-IRC commands after evaluation" 2072 (const :tag "noncommands: Don't display non-IRC commands after evaluation"
2071 noncommands) 2073 noncommands)