From 3c5d782dbc61c9328ef0cd906dab2b043dc084a9 Mon Sep 17 00:00:00 2001 From: Yinzuo Jiang Date: Sun, 15 Dec 2024 10:31:19 +0100 Subject: [PATCH] editorconfig: set trim_trailing_whitespace = false for src/testdir/test*.vim closes: #16220 Signed-off-by: Yinzuo Jiang Signed-off-by: Christian Brabandt --- .editorconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.editorconfig b/.editorconfig index a586af40e2..7dc0cfbaf6 100644 --- a/.editorconfig +++ b/.editorconfig @@ -23,3 +23,7 @@ trim_trailing_whitespace = false [runtime/doc/**.txt] # It can mess up some documentation by trying to strip trailing whitespaces trim_trailing_whitespace = false + +[src/testdir/test*.vim] +# Some tests need trailing whitespaces, for example `set showbreak=>>\ ` +trim_trailing_whitespace = false