Skip to content

Commit

Permalink
Overlong translation files may cause repo to become "dirty"
Browse files Browse the repository at this point in the history
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: #14490

Signed-off-by: Christian Brabandt <cb@256bit.org>
  • Loading branch information
chrisbra committed Apr 11, 2024
1 parent 8731917 commit 6f585da
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/po/check.vim
Expand Up @@ -226,6 +226,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.
Expand Down

0 comments on commit 6f585da

Please sign in to comment.