From 91181d9579477ce7a8786ba0f002edbc31aa37d6 Mon Sep 17 00:00:00 2001 From: Romain Lafourcade Date: Tue, 4 Mar 2025 17:12:46 +0100 Subject: [PATCH] Update text_editors.rst Add mention of Vim's native support. --- docs/text_editors.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 ------