Improved Windows support

This commit is contained in:
Nate Kane 2011-01-24 22:23:32 +10:00
parent 3c86647883
commit 353bef3dba
2 changed files with 4 additions and 0 deletions

View File

@ -172,6 +172,9 @@ function! indent_guides#init_script_vars()
let s:guide_size = indent_guides#calculate_guide_size()
let s:hi_normal = indent_guides#capture_highlight('Normal')
" remove 'font=<value>' from the s:hi_normal string (only seems to happen on Vim startup in Windows)
let s:hi_normal = substitute(s:hi_normal, ' font=[A-Za-z0-9:]\+', "", "")
" shortcuts to the global variables - this makes the code easier to read
let s:debug = g:indent_guides_debug
let s:indent_levels = g:indent_guides_indent_levels

View File

@ -214,6 +214,7 @@ Bug reports, feedback, suggestions etc are welcomed.
1.4~
* Added the new plugin option g:|indent_guides_enable_on_vim_startup|.
* Improved Windows support.
1.3~
* Changed the default value of g:|indent_guides_color_change_percent| to 10.