From 7352d919f62350bd24aefe0f188203ebef833fd5 Mon Sep 17 00:00:00 2001 From: Luqman Aden <me@luqman.ca> Date: Mon, 18 Mar 2013 17:19:40 -0700 Subject: [PATCH] Update rust.vim Column limit 78 -> 100. --- src/etc/vim/after/ftplugin/rust.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/vim/after/ftplugin/rust.vim b/src/etc/vim/after/ftplugin/rust.vim index 56616de6aa8..f0f1c85ee97 100644 --- a/src/etc/vim/after/ftplugin/rust.vim +++ b/src/etc/vim/after/ftplugin/rust.vim @@ -1,5 +1,5 @@ -"Highlight the 78th text column +"Highlight the 100th text column "Feature became available in v7.3 if version >= 703 - set colorcolumn=78 + set colorcolumn=100 endif