ignore case

This commit is contained in:
Marco Hinz 2013-04-29 01:34:53 +02:00
parent 620bb954de
commit 406df759b7

View file

@ -15,7 +15,7 @@ let g:startify_session_dir = resolve(expand(get(g:, 'startify_session_dir',
augroup startify
autocmd!
autocmd VimEnter *
\ if !argc() && (line2byte('$') == -1) && (v:progname =~# '^[gm]\=vim\%[\.exe]$') |
\ if !argc() && (line2byte('$') == -1) && (v:progname =~? '^[gm]\=vim\%[\.exe]$') |
\ call s:insane_in_the_membrane() |
\ endif
augroup END