我想使用Komodo IDE构建一个Django项目。我想使用flycheck语法检查器,以便在运行时指示语法错误。如果fly-check无法与Komodo集成,是否还有其他语法可能性在飞行中检查?
答案 0 :(得分:0)
使用以下过程:
转到工具箱=>添加=>新命令
在“运行”字段中输入emacs命令行参数:
emacs eval('(progn (flycheck-declare-checker go-gofmt "A Go syntax and style checker using the gofmt utility." :command '("gofmt" source-inplace) :error-patterns '(("^\\(?1:.*\\):\\(?2:[0-9]+\\):\\(?3:[0-9]+\\): \\(?4:.*\\)$" error)) :modes 'go-mode) (add-to-list 'flycheck-checkers 'go-gofmt)))
选中所有方框
在Start In
字段
点击Key Binding
标签
使用 Ctrl + 0 作为New Key Sequence
按 Ctrl + A,Ctrl + 0
<强>参考强>