Merge pull request #724 from ecsousa/ConEmuColors

Dectect when vim.exe is running on ConEmu with 256 colors configured
This commit is contained in:
Bailey Ling 2015-03-09 19:30:12 -04:00
commit 837f53cf79
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,8 @@
" MIT License. Copyright (c) 2013-2015 Bailey Ling.
" vim: et ts=2 sts=2 sw=2
let s:is_win32term = (has('win32') || has('win64')) && !has('gui_running')
let s:is_win32term = (has('win32') || has('win64')) && !has('gui_running') && (empty($CONEMUBUILD) || &term !=? 'xterm')
let s:separators = {}
let s:accents = {}