让 w0rp Async Lint Engine "ALE" 尽可能快?
make w0rp Async Lint Engine "ALE" as fast as possible?
我很高兴使用优秀的异步 linter ALE w0rp-ale 和 Vim。
我想让 ALE 尽可能快 -- 例如,目前当我更正错误时,会有大约半秒的停顿让警告消失。关于如何使它更快的任何提示?
我可以在 github 页面上开票,但我很好奇谁也可能在 SO 上看到这个 post。谢谢!
我会选择 g:ale_lint_delay=0
来自 ale 文档:
g:ale_lint_delay *g:ale_lint_delay*
Type: |Number|
Default: `200`
This variable controls the milliseconds delay after which the linters will
be run after text is changed. This option is only meaningful with the
|g:ale_lint_on_text_changed| variable set to `always`, `insert`, or `normal`.
可以测试 :ALELint
的时间和 linter 的命令行版本:(pylint
)。 (我可能会 post 这里)
我很高兴使用优秀的异步 linter ALE w0rp-ale 和 Vim。
我想让 ALE 尽可能快 -- 例如,目前当我更正错误时,会有大约半秒的停顿让警告消失。关于如何使它更快的任何提示?
我可以在 github 页面上开票,但我很好奇谁也可能在 SO 上看到这个 post。谢谢!
我会选择 g:ale_lint_delay=0
来自 ale 文档:
g:ale_lint_delay *g:ale_lint_delay*
Type: |Number|
Default: `200`
This variable controls the milliseconds delay after which the linters will
be run after text is changed. This option is only meaningful with the
|g:ale_lint_on_text_changed| variable set to `always`, `insert`, or `normal`.
可以测试 :ALELint
的时间和 linter 的命令行版本:(pylint
)。 (我可能会 post 这里)