From 9086fd9b3139cebf8244d80b0e327b7552d0e1c4 Mon Sep 17 00:00:00 2001 From: Francois-Michel L'Heureux Date: Fri, 13 Sep 2024 12:22:17 -0400 Subject: [PATCH] Fix documentation for editor vim plugin ALE The documented configuration did not work. On failure, ALE suggest to run `ALEFixSuggest`, into with it documents the working configuration key 'ruff_format' - Fix python files with the ruff formatter. --- docs/editors/setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/editors/setup.md b/docs/editors/setup.md index ad5955eef1ebd..f026f16baac4e 100644 --- a/docs/editors/setup.md +++ b/docs/editors/setup.md @@ -153,7 +153,7 @@ extension for [coc.nvim](https://github.com/neoclide/coc.nvim). " Linter let g:ale_linters = { "python": ["ruff"] } " Formatter -let g:ale_fixers = { "python": ["ruff-format"] } +let g:ale_fixers = { "python": ["ruff_format"] } ```