mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-18 16:06:56 -05:00
app/irc: initial commit
This commit is contained in:
committed by
Henrik Lissner
parent
62d4180d9d
commit
9645945465
2
modules/app/irc/autoload/evil.el
Normal file
2
modules/app/irc/autoload/evil.el
Normal file
@@ -0,0 +1,2 @@
|
||||
;;; app/irc/autoload/evil.el -*- lexical-binding: t; -*-
|
||||
|
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))
|
||||
|
Reference in New Issue
Block a user