From 95b6215f0a9deb87fc9a463b9eb942c64924f9cb Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Thu, 22 Jan 2026 13:34:59 +0800 Subject: [PATCH] vim-patch:c858382: Problem: Commit 6f585d breaks CI Problem: Commit 6f585d breaks CI Solution: Don't error out, simply return an error message. https://github.com/vim/vim/commit/c85838248246ff250b3e8818967cbd658104d72e Co-authored-by: Christian Brabandt --- src/nvim/po/check.vim | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/nvim/po/check.vim b/src/nvim/po/check.vim index 719e99bb03..5139d35f67 100644 --- a/src/nvim/po/check.vim +++ b/src/nvim/po/check.vim @@ -233,9 +233,10 @@ endif let overlong = search('\%>80v', 'n') if overlong > 0 echomsg "Lines should be wrapped at 80 columns" - if error == 0 - let error = overlong - endif + " TODO: make this an error + " if error == 0 + " let error = overlong + " endif endif if error == 0