forked from aniani/vim
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')
|
let overlong = search('\%>80v', 'n')
|
||||||
if overlong > 0
|
if overlong > 0
|
||||||
echomsg "Lines should be wrapped at 80 columns"
|
echomsg "Lines should be wrapped at 80 columns"
|
||||||
if error == 0
|
" TODO: make this an error
|
||||||
let error = overlong
|
" if error == 0
|
||||||
endif
|
" let error = overlong
|
||||||
|
" endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if error == 0
|
if error == 0
|
||||||
|
|||||||
Reference in New Issue
Block a user