diff options
author | Amin Bandali <bandali@gnu.org> | 2021-09-29 23:11:49 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2021-09-29 23:11:49 -0400 |
commit | dc94ca7b2b878c9a88be72fea118bf6557259ffd (patch) | |
tree | c0c23d7cedaf56de82d713c97873ff047e3faefd /lisp | |
parent | 9fc1fdcbf330b0a85cd019bb75afcb8d36243524 (diff) | |
download | emacs-dc94ca7b2b878c9a88be72fea118bf6557259ffd.tar.gz emacs-dc94ca7b2b878c9a88be72fea118bf6557259ffd.tar.bz2 emacs-dc94ca7b2b878c9a88be72fea118bf6557259ffd.zip |
Add new '/wii' convenience ERC command
* etc/NEWS: Announce the addition of the command.
* lisp/erc/erc.el (erc-cmd-WII): Add '/wii' convenience command which
calls the '/whois' command with the given nick as both arguments,
which is useful for displaying the whois information for the nick
along with idle time, even if the nick is on a different server than
the one we are currently connected to.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/erc/erc.el | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index ccb1f63bc39..2427332189a 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el @@ -3321,6 +3321,18 @@ the idle time of that user." t)) (defalias 'erc-cmd-WI #'erc-cmd-WHOIS) +(defun erc-cmd-WII (nick) + "Display whois information for NICK, including idle time. + +This is a convenience function which calls `erc-cmd-WHOIS' with +the given NICK for both arguments. Using NICK in place of the +server argument -- effectively delegating to the IRC network the +looking up of the server to which NICK is connected -- is not +standardized, but is widely supported across IRC networks. + +See `erc-cmd-WHOIS' for more details." + (erc-cmd-WHOIS nick nick)) + (defun erc-cmd-WHOAMI () "Display whois information about yourself." (erc-cmd-WHOIS (erc-current-nick)) |