FlyCheck可以与Komodo(用于Django)一起用于检查语法吗?

时间:2014-08-22 10:53:11

标签: django-templates komodo komodoedit syntax-checking flycheck

我想使用Komodo IDE构建一个Django项目。我想使用flycheck语法检查器,以便在运行时指示语法错误。如果fly-check无法与Komodo集成,是否还有其他语法可能性在飞行中检查?

1 个答案:

答案 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字段

  • 中输入emacs的路径
  • 点击Key Binding标签

  • 使用 Ctrl + 0 作为New Key Sequence

  • Ctrl + A,Ctrl + 0

<强>参考