app/irc: initial commit
This commit is contained in:
parent
62d4180d9d
commit
9645945465
5 changed files with 202 additions and 0 deletions
18
modules/app/irc/autoload/irc.el
Normal file
18
modules/app/irc/autoload/irc.el
Normal file
|
@ -0,0 +1,18 @@
|
|||
;;; app/irc/autoload/email.el -*- lexical-binding: t; -*-
|
||||
|
||||
;;;###autoload
|
||||
(defun =irc ()
|
||||
"Connect to IRC."
|
||||
(interactive)
|
||||
(call-interactively #'circe))
|
||||
|
||||
;;;###autoload
|
||||
(defun +irc/connect-all ()
|
||||
"Connect to all `:irc' defined servers."
|
||||
(interactive)
|
||||
;; force a library load for +irc--accounts
|
||||
(circe--version)
|
||||
(mapcar (lambda (network)
|
||||
(circe (car network)))
|
||||
+irc--accounts))
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue