diff --git a/docs/text_editors.rst b/docs/text_editors.rst index 12387e65..87d645be 100644 --- a/docs/text_editors.rst +++ b/docs/text_editors.rst @@ -20,6 +20,22 @@ plugin, add this to your ``.vimrc``: let g:syntastic_yaml_checkers = ['yamllint'] +Note that Vim >9.0 includes a so-called "compiler script" for yamllint. + +- Enable the compiler: + + :: + + :compiler yamllint + +- Use it on the current buffer: + + :: + + :make % + +See ``:help quickfix``. + Neovim ------