保存时显示Flycheck缓冲区(有错误)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了保存时显示Flycheck缓冲区(有错误)相关的知识,希望对你有一定的参考价值。
在Emacs中,只有在出现错误时,保存时自动显示Flycheck缓冲区的方法是什么?
有点像https://github.com/steelbrain/linter。
我在https://stackoverflow.com/questions/tagged/flycheck?sort=votes&pageSize=50上搜索过但没有找到任何接近的东西。
答案
将以下内容添加到~/.emacs
,这会将其绑定到C-x C-s
:
(defun save-buffer-maybe-show-errors ()
"Save buffer and show errors if any."
(interactive)
(save-buffer)
(when (not flycheck-current-errors)
(flycheck-list-errors)))
;; Bind it to some key:
(global-set-key (kbd "C-x C-s") 'save-buffer-maybe-show-errors)
以上是关于保存时显示Flycheck缓冲区(有错误)的主要内容,如果未能解决你的问题,请参考以下文章