mirror of
https://github.com/neovim/neovim.git
synced 2026-03-31 04:42:03 +00:00
vim-patch:c858382: Problem: Commit 6f585d breaks CI
Problem: Commit 6f585d breaks CI
Solution: Don't error out, simply return an error message.
c858382482
Co-authored-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user