From cc056d78fb2dc294bfc3daeba9db1fa3c4f6bff6 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Wed, 10 Jun 2026 12:56:22 +0800 Subject: [PATCH] vim-patch:9.1.0581: Various lines are indented inconsistently (#40161) Problem: style: Various lines are indented inconsistently Solution: Retab these lines and correct some comments. (zeertzjq) closes: vim/vim#15259 https://github.com/vim/vim/commit/d9be94cf03dc123f1bd64531198bd7f52c986162 --- test/old/testdir/test_taglist.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/old/testdir/test_taglist.vim b/test/old/testdir/test_taglist.vim index beb8d9c48b..da57f31a09 100644 --- a/test/old/testdir/test_taglist.vim +++ b/test/old/testdir/test_taglist.vim @@ -107,9 +107,9 @@ func Test_tagfiles() " Nvim: expectation(s) based on tags in build dir (added to &rtp). " Filter out the '../../../runtime/doc/tags'. call filter(tf, 'v:val != "../../../runtime/doc/tags"') - " if 'helplang includes another language, then we may find - " 2 tagfiles (e.g.: for EN and RU) - " we may need to adjust this, if further translated help files are included + " If 'helplang' includes another language, then we may find 2 tagfiles + " (e.g.: for EN and RU). + " We may need to adjust this, if further translated help files are included. call assert_inrange(1, 2, len(tf)) call assert_equal(fnamemodify(expand('$BUILD_DIR/runtime/doc/tags'), ':p:gs?\\?/?'), \ fnamemodify(tf[0], ':p:gs?\\?/?'))