Dectect when vim.exe is running on ConEmu with 256 colors configured, so

it will use full color scheme.

More information on http://stackoverflow.com/questions/14315519/conemu-vim-syntax-highlight
This commit is contained in:
Eduardo Antunes C. de Sousa 2015-03-06 11:42:04 -03:00
parent 1b8e4b965a
commit 7ea4b510af

View File

@ -1,7 +1,8 @@
" MIT License. Copyright (c) 2013-2015 Bailey Ling. " MIT License. Copyright (c) 2013-2015 Bailey Ling.
" vim: et ts=2 sts=2 sw=2 " 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:separators = {}
let s:accents = {} let s:accents = {}