summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2024-04-11 22:02:28 +0200
committerChristian Brabandt <cb@256bit.org>2024-04-11 22:05:11 +0200
commit6f585da00bda333d079acf77fe8dd8e1019c987d (patch)
tree3810a5b38e4e37df7deda248d677da5a9bcb968a
parent87319173baf7b60b2e21e7d254a46623c53c5899 (diff)
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: #14490 Signed-off-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--src/po/check.vim8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/po/check.vim b/src/po/check.vim
index 917c648494..659a196055 100644
--- a/src/po/check.vim
+++ b/src/po/check.vim
@@ -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.