* multiple servers with ERC
@ 2017-08-15 14:26 Emanuel Berg
2017-08-15 20:07 ` Pascal Bourguignon
0 siblings, 1 reply; 3+ messages in thread
From: Emanuel Berg @ 2017-08-15 14:26 UTC (permalink / raw)
To: help-gnu-emacs; +Cc: erc-discuss
How can I use ERC to be connected to several
servers simultaneously?
I Googled it, and got several hits with pages
telling me it is a feature, but nowhere how one
is supposed to do it.
TIA
--
underground experts united
http://user.it.uu.se/~embe8573
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: multiple servers with ERC
2017-08-15 14:26 multiple servers with ERC Emanuel Berg
@ 2017-08-15 20:07 ` Pascal Bourguignon
2017-08-15 20:41 ` Emanuel Berg
0 siblings, 1 reply; 3+ messages in thread
From: Pascal Bourguignon @ 2017-08-15 20:07 UTC (permalink / raw)
To: ERC Discussion; +Cc: help-gnu-emacs
[-- Attachment #1.1: Type: text/plain, Size: 464 bytes --]
> On 15 Aug 2017, at 16:26, Emanuel Berg <moasen@zoho.com> wrote:
>
> How can I use ERC to be connected to several
> servers simultaneously?
>
> I Googled it, and got several hits with pages
> telling me it is a feature, but nowhere how one
> is supposed to do it.
You just use M-x erc-select RET several times.
Note that you can even connect several times to the same server (use a different nickname).
--
__Pascal J. Bourguignon__
[-- Attachment #1.2: Type: text/html, Size: 1778 bytes --]
[-- Attachment #2: Type: text/plain, Size: 144 bytes --]
_______________________________________________
Erc-discuss mailing list
Erc-discuss@gnu.org
https://lists.gnu.org/mailman/listinfo/erc-discuss
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: multiple servers with ERC
2017-08-15 20:07 ` Pascal Bourguignon
@ 2017-08-15 20:41 ` Emanuel Berg
0 siblings, 0 replies; 3+ messages in thread
From: Emanuel Berg @ 2017-08-15 20:41 UTC (permalink / raw)
To: erc-discuss; +Cc: help-gnu-emacs
Pascal Bourguignon wrote:
> You just use M-x erc-select RET several
> times. Note that you can even connect several
> times to the same server (use a different
> nickname).
How nice to hear from you again :) Come back to
gmane.emacs.help as well!
Yes, I realized it was that simple:
(setq erc-server "irc.freenode.net")
(setq erc-port 6667)
(defun erc-freenode ()
(interactive)
(let ((server erc-server)
(port erc-port) )
(erc :server server :port port) ))
(defun erc-efnet ()
(interactive)
(let ((server "irc.du.se")
(port erc-port) )
(erc :server server :port port) ))
(defun erc-join-all ()
(interactive)
(erc-freenode)
(erc-efnet) )
--
underground experts united
http://user.it.uu.se/~embe8573
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-08-15 20:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-15 14:26 multiple servers with ERC Emanuel Berg
2017-08-15 20:07 ` Pascal Bourguignon
2017-08-15 20:41 ` Emanuel Berg
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.