当我在启动时在 init 文件中加载 shell 时,为什么会收到 26 个 shell 提示符?
当我在启动时加载 shell 时 - 只需在 .emacs 文件中使用 (shell) - 总是有 26 个 shell 提示“bash-3.2$ bash-3.2$ bash-3.2$...”。为什么会发生这种情况?这在终端上的 emacs 和 aquamacs 中以同样的方式发生。
When I load a shell at startup - just using (shell) in my .emacs file - there are always 26 shell prompts "bash-3.2$ bash-3.2$ bash-3.2$...". Why is that happening? This is happening the same way in emacs on a terminal and aquamacs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用二分搜索来缩小范围以找到罪魁祸首。听起来很复杂,但是速度非常快。
只需注释掉一半的初始化文件 (
.emacs
),然后注释掉四分之一,然后注释掉八分之一,等等,直到您准确地知道哪个部分导致了问题。使用注释/取消注释该区域的任何键/命令来执行此操作。 (我使用comment-region
,将其绑定到 CM-;。Use binary search to narrow things down to find the culprit. Sounds complicated, but it is very fast.
Just comment out half of your init file (
.emacs
), then a quarter, then an eighth, etc. until you know precisely what part causes the problem. Use any of the keys/commands that comment/uncomment the region to do this. (I usecomment-region
, which I bind to C-M-;.