about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorLuqman Aden <me@luqman.ca>2013-03-18 17:19:40 -0700
committerLuqman Aden <me@luqman.ca>2013-03-18 17:19:40 -0700
commit7352d919f62350bd24aefe0f188203ebef833fd5 (patch)
treef79f3d1d2cd215a9cd31b8cdf1ddda0684c2630a /src
parent087a015a727b11d46ff5a309ff37c7967e8636d1 (diff)
downloadrust-7352d919f62350bd24aefe0f188203ebef833fd5.tar.gz
rust-7352d919f62350bd24aefe0f188203ebef833fd5.zip
Update rust.vim
Column limit 78 -> 100.
Diffstat (limited to 'src')
-rw-r--r--src/etc/vim/after/ftplugin/rust.vim4
1 files 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