diff --git a/contrib/irc/erc/README.md b/contrib/irc/erc/README.md index ad6206164..1c9a8f3a4 100644 --- a/contrib/irc/erc/README.md +++ b/contrib/irc/erc/README.md @@ -33,6 +33,7 @@ To use this contribution add it to your `~/.spacemacs` Key Binding | Description --------------|------------------------------------------------------------ ` a i e` | Starts ERC +` a i E` | Starts ERC via TLS/SSL ` m b` | Switch between ERC buffers ` m d` | Interactively input a user action and send it to IRC. ` m j` | Join a channel, executes the /join command @@ -41,6 +42,5 @@ Key Binding | Description ` m p` | Part from the channel ` m q` | Quit server -## SSL - -Note that if you want to connect securely to an IRC server, you must run `erc-tls` command instead of the `erc` command that this layer defaults to. +**Note** If you want to connect securely to an IRC server, you must run +`erc-tls` command on SPC a i E instead of the `erc` command. diff --git a/contrib/irc/erc/packages.el b/contrib/irc/erc/packages.el index 9afc725a1..28fc793a1 100644 --- a/contrib/irc/erc/packages.el +++ b/contrib/irc/erc/packages.el @@ -25,7 +25,9 @@ which require an initialization must be listed explicitly in the list.") (use-package erc :defer t :init - (evil-leader/set-key "aie" 'erc) + (evil-leader/set-key + "aie" 'erc + "aiE" 'erc-tls) :config (progn