保存时显示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缓冲区(有错误)的主要内容,如果未能解决你的问题,请参考以下文章

XP网络连接拨号时显示错误693

将 numpy 保存为 csv 代码时显示错误

更改片段时显示 ProgressBar - Android

从其他片段启动视频视图片段时显示问题?

Snackbar 在片段类中不起作用

如何通过调用ajax post保存数据时显示模型状态错误