commit 95b6215f0a9deb87fc9a463b9eb942c64924f9cb
parent fc4188ded870aa3d31a91fb0ebcf2da225acf1a5
Author: zeertzjq <zeertzjq@outlook.com>
Date: Thu, 22 Jan 2026 13:34:59 +0800
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 <cb@256bit.org>
Diffstat:
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git 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