With the previous setting, the 64th column was being highlighted.
---
 misc/vim/ftplugin/factor_settings.vim |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

... try number two, but with the comment fixed this time.

diff --git a/misc/vim/ftplugin/factor_settings.vim 
b/misc/vim/ftplugin/factor_settings.vim
index ced9e85..a837f41 100644
--- a/misc/vim/ftplugin/factor_settings.vim
+++ b/misc/vim/ftplugin/factor_settings.vim
@@ -9,8 +9,8 @@ setlocal expandtab tabstop=4 shiftwidth=4 softtabstop=4
 if expand("%:t") !~ "-docs\.factor$"
     setlocal textwidth=64
 
-    " Mark anything in column 64 or beyond as a syntax error.
-    match Error /\%>63v.\+/
+    " Mark anything beyond column 64 as a syntax error.
+    match Error /\%>64v.\+/
 endif
 
 " Teach Vim what comments look like.
-- 
1.6.5



------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Factor-talk mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/factor-talk

Reply via email to