gpt4 book ai didi

emacs - 在启动时添加 Hook 到 emacs scratch

转载 作者:行者123 更新时间:2023-12-04 04:58:22 24 4
gpt4 key购买 nike

我已将 emacs 暂存器设置为以方案模式打开,我正在运行 xscheme,这意味着当我运行命令时 M-x run-scheme我可以使用暂存缓冲区来评估方案而不是 elisp。

;;(setq initial-scratch-message "")
(setq initial-major-mode 'scheme-mode)
(require 'xscheme)

;;(add-hook '**CAN I ADD A HOOK HERE?**-hook
;; (lambda ()
;; (run-scheme)))

我要自动 run-scheme在启动时而不是必须输入它,但到目前为止我的尝试还没有让我走得很远。

我是否朝着正确的方向前进?

最佳答案

完全未经测试:

(add-hook 'after-init-hook 'my-scratch-run-scheme)
(defun my-scratch-run-scheme ()
(with-current-buffer "*scratch*"
(run-scheme))) ;; or perhaps (call-interactively 'run-scheme)

关于emacs - 在启动时添加 Hook 到 emacs scratch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16459350/

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