Problem: Commit 6f585d breaks CI
Problem: Commit 6f585d breaks CI Solution: Don't error out, simply return an error message. Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
@ -230,9 +230,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