Merge branch 'DerSaidin-patch-1'

* DerSaidin-patch-1:
  Whitespace
  Wording
  Exit gracefully if too old to support this plugin
This commit is contained in:
Nate Kane 2015-10-26 19:12:21 +10:00
commit a0b7df69de

View File

@ -1,6 +1,11 @@
" Author: Nate Kane <nathanaelkane AT gmail DOT com> " Author: Nate Kane <nathanaelkane AT gmail DOT com>
" Homepage: http://github.com/nathanaelkane/vim-indent-guides " Homepage: http://github.com/nathanaelkane/vim-indent-guides
" Do not load if vim is too old
if (v:version == 701 && !exists('*matchadd')) || (v:version < 701)
finish
endif
if exists('g:loaded_indent_guides') || &cp if exists('g:loaded_indent_guides') || &cp
finish finish
endif endif