diff options
author | Case Duckworth | 2021-09-15 23:38:02 -0500 |
---|---|---|
committer | Case Duckworth | 2021-09-15 23:38:02 -0500 |
commit | 76c525767e12f45534a65c34ccdbb7f269768962 (patch) | |
tree | 8b322208bc63854e1cb08cfb944e20f9f1686a40 /lisp/acdw-irc.el | |
parent | Steal jao-buffer-same-mode (diff) | |
parent | blech (diff) | |
download | emacs-76c525767e12f45534a65c34ccdbb7f269768962.tar.gz emacs-76c525767e12f45534a65c34ccdbb7f269768962.zip |
Merge branch 'main' of https://tildegit.org/acdw/emacs
Diffstat (limited to 'lisp/acdw-irc.el')
-rw-r--r-- | lisp/acdw-irc.el | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/lisp/acdw-irc.el b/lisp/acdw-irc.el index b4b75ec..305dc93 100644 --- a/lisp/acdw-irc.el +++ b/lisp/acdw-irc.el | |||
@@ -73,6 +73,41 @@ and right on t." | |||
73 | (dolist (network (mapcar #'car circe-network-options)) | 73 | (dolist (network (mapcar #'car circe-network-options)) |
74 | (circe-maybe-connect network))) | 74 | (circe-maybe-connect network))) |
75 | 75 | ||
76 | (el-patch-feature circe) | ||
77 | (with-eval-after-load 'circe | ||
78 | (defvar circe-server-buffer-action 'pop-to-buffer-same-window | ||
79 | "What to do with `circe-server' buffers when created.") | ||
80 | |||
81 | (el-patch-defun circe (network-or-server &rest server-options) | ||
82 | "Connect to IRC. | ||
83 | |||
84 | Connect to the given network specified by NETWORK-OR-SERVER. | ||
85 | |||
86 | When this function is called, it collects options from the | ||
87 | SERVER-OPTIONS argument, the user variable | ||
88 | `circe-network-options', and the defaults found in | ||
89 | `circe-network-defaults', in this order. | ||
90 | |||
91 | If NETWORK-OR-SERVER is not found in any of these variables, the | ||
92 | argument is assumed to be the host name for the server, and all | ||
93 | relevant settings must be passed via SERVER-OPTIONS. | ||
94 | |||
95 | All SERVER-OPTIONS are treated as variables by getting the string | ||
96 | \"circe-\" prepended to their name. This variable is then set | ||
97 | locally in the server buffer. | ||
98 | |||
99 | See `circe-network-options' for a list of common options." | ||
100 | (interactive (circe--read-network-and-options)) | ||
101 | (let* ((options (circe--server-get-network-options network-or-server | ||
102 | server-options)) | ||
103 | (buffer (circe--server-generate-buffer options))) | ||
104 | (with-current-buffer buffer | ||
105 | (circe-server-mode) | ||
106 | (circe--server-set-variables options) | ||
107 | (circe-reconnect)) | ||
108 | (el-patch-swap (pop-to-buffer-same-window buffer) | ||
109 | (funcall circe-server-buffer-action buffer))))) | ||
110 | |||
76 | (defun circe-network-connected-p (network) | 111 | (defun circe-network-connected-p (network) |
77 | "Return non-nil if there's any Circe server-buffer whose | 112 | "Return non-nil if there's any Circe server-buffer whose |
78 | `circe-server-netwok' is NETWORK." | 113 | `circe-server-netwok' is NETWORK." |