Add: reasonable default keybindings for circe

The =+irc/send-message= function was added so that we can send private
messages using =SPC m m= or =M-x= with =+irc/send-message=.
This commit is contained in:
Mark Redeman 2018-06-23 14:44:40 +02:00
parent 1620011463
commit 7a6407eb92
No known key found for this signature in database
GPG key ID: E555FD0E65FF9E9E
2 changed files with 23 additions and 1 deletions

View file

@ -36,6 +36,12 @@ workspace for it."
(and (+irc-setup-wconf inhibit-workspace)
(call-interactively #'circe)))
;;;###autoload
(defun +irc/send-message (who what)
"Send WHO a message containing WHAT."
(interactive "sWho: \nsWhat: ")
(circe-command-MSG who what))
;;;###autoload
(defun +irc/quit ()
"Kill current circe session and workgroup."