更好的 compile 命令
运行 compile 之前都要确认是否保存未保存的 buffer,以及没有为 compile 分配一个默认的快捷键,这两个设定简直让人无语。下面这段代码能够修正这两个问题,并且还能使得编译窗口遵照预定的大小显示,同时光标还会随着输出的增加而下移。
;; This gives a regular `compile-command' prompt.
(define-key prog-mode-map [C-f9] #'compile)
;; This just compiles immediately.
(define-key prog-mode-map [f9]
#'endless/compile-please)
;; I'm not scared of saving everything.
(setq compilation-ask-about-save nil)
;; Stop on the first error.
(setq compilation-scroll-output 'next-error)
;; Don't stop on info or warnings.
(setq compilation-skip-threshold 2)
(defcustom endless/compile-window-size 105
"Width given to the non-compilation window."
:type 'integer
:group 'endless)
(defun endless/compile-please (comint)
"Compile without confirmation.
With a prefix argument, use comint-mode."
(interactive "P")
;; Do the command without a prompt.
(save-window-excursion
(compile (eval compile-command) (and comint t)))
;; Create a compile window of the desired width.
(pop-to-buffer (get-buffer "*compilation*"))
(enlarge-window
(- (frame-width)
endless/compile-window-size
(window-width))
'horizontal))
他们都告诉我有个叫 compilation-skip-threshold
的变量,通常情况下 Warnings 也是需要修复的,但是再某些语言中,很可能你根本无法修复那些 warning,因此编译窗口最好不要因为出现 warnning 就停止滚动。
修改 endless/compile-please
为会传递 prefix 参数到 compile
函数,这样若使用 prefix 参数调用该函数,则会再 comint-mode 下编译(这样你可以与编译 buffer 进行交互了),详情请参见 这篇博文 的 UPDATE 部分。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论