Questions tagged «erc»

2
Elisp:如何从init文件中排除敏感信息?(即登录凭据)
我想在初始化脚本中定义一个登录功能,但是我不想对我的登录凭证进行硬编码。我认为一个不错的解决方法是让我的初始化脚本从本地文件中读取我的登录凭据,并将这些值另存为变量。这样,我可以从git索引中排除该文件,从而确保我的登录凭据安全。 关于这种方法或将参数设置为文件中定义的值的方法有什么建议吗? 例如,我想在我的内容中使用以下内容init.el: ;; Set up our login variables here: (setq file-location "~/.emacs.d/.login") (setq erc-username "default-name") (setq erc-password "default-password") (setq erc-url "default-url") (setq erc-port "default-port") (defun read-lines (filePath) "Return a list of lines of a file at filePath." (with-temp-buffer (insert-file-contents filePath) (split-string (buffer-string) "\n" t))) (if (file-exists-p file-location) (progn (setq …

1
重新连接时将ERC缓冲区保留在后台
我将ERC(与ZNC一起)用作IRC客户端。我加入了很多渠道,当我运行时,我的znc-all所有缓冲区都被还原,日志被重播。太好了 但是,我感到非常烦人的是,在重播日志时,每个通道缓冲区都弹出到最前面,我当时真的不能做任何其他工作。 当我暂时断开连接后自动重新连接时,这更令人讨厌。我的工作突然被这些通道缓冲区打断了,这些通道缓冲区在重放通道日志时弹出到最前面。 重播聊天日志时,如何告诉ERC / ZNC在后台保留缓冲区?我不希望Emacs曾经切换缓冲区,除非我明确要求它切换缓冲区。
10 buffers  erc 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.