gpt4 book ai didi

emacs - 让Emacs停止询问 “Active processes exist; kill them and exit anyway”

转载 作者:行者123 更新时间:2023-12-03 08:26:24 25 4
gpt4 key购买 nike

尽管所有建议都是一个坏主意,但当我按C-c C-x时,我仍然希望Emacs停止问我“ Activity 进程存在;杀死它们并退出”。我希望它简单地杀死所有 Activity 进程而无需询问。

我该怎么做?

最佳答案

该代码段(进入您的.emacs定制文件)将使Emacs暂时认为,杀死它时没有 Activity 的进程,因此不会出现烦人的提示。

(require 'cl-lib)
(defadvice save-buffers-kill-emacs (around no-query-kill-emacs activate)
"Prevent annoying \"Active processes exist\" query when you quit Emacs."
(cl-letf (((symbol-function #'process-list) (lambda ())))
ad-do-it))

关于emacs - 让Emacs停止询问 “Active processes exist; kill them and exit anyway”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2706527/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com