mirror of
https://github.com/neovim/neovim.git
synced 2026-02-22 10:22:17 +10:00
vim-patch:6f585da: Overlong translation files may cause repo to become "dirty"
Problem: Overlong translation files may cause repo to become "dirty"
Solution: Add a test into check.vim to warn for lines being longer than
80 virt columns
related: vim/vim#14490
6f585da00b
Co-authored-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
@@ -229,6 +229,14 @@ elseif ctu
|
||||
" endif
|
||||
endif
|
||||
|
||||
" Check that all lines are no longer than 80 chars
|
||||
let overlong = search('\%>80v', 'n')
|
||||
if overlong > 0
|
||||
echomsg "Lines should be wrapped at 80 columns"
|
||||
if error == 0
|
||||
let error = overlong
|
||||
endif
|
||||
endif
|
||||
|
||||
if error == 0
|
||||
" If all was OK restore the view.
|
||||
|
||||
Reference in New Issue
Block a user