From: Yinzuo Jiang Date: Sun, 15 Dec 2024 09:31:19 +0000 (+0100) Subject: editorconfig: set trim_trailing_whitespace = false for src/testdir/test*.vim X-Git-Tag: v9.1.0928~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c5d782dbc61c9328ef0cd906dab2b043dc084a9;p=thirdparty%2Fvim.git editorconfig: set trim_trailing_whitespace = false for src/testdir/test*.vim closes: #16220 Signed-off-by: Yinzuo Jiang Signed-off-by: Christian Brabandt --- 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