Overlong translation files may cause repo to become "dirty"
Commit:
https://github.com/vim/vim/commit/6f585da00bda333d079acf77fe8dd8e1019c987d
Author: Christian Brabandt <[email protected]>
Date: Thu Apr 11 22:02:28 2024 +0200
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 <[email protected]>
diff --git a/src/po/check.vim b/src/po/check.vim
index 917c64849..659a19605 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.
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/E1rv0p5-004lqJ-RI%40256bit.org.