将vim GUI颜色方案转换为256色vim的自动方式?

时间:2011-01-24 08:30:47

标签: vim colors syntax-highlighting

我有一个仅限GUI的vim配色方案,我想将其转换为256色版本。有没有自动化的方法来做到这一点?

谷歌搜索只发现了http://www.vim.org/scripts/script.php?script_id=1809这对我不起作用(颜色完全错误)并不是真的意味着要进行转换以保存和重复使用,而是用于即时转换

3 个答案:

答案 0 :(得分:7)

您可以使用CSApprox这是一个将GUI颜色方案转换为终端颜色方案的插件。

我尝试了一两次,结果是可以接受的。

答案 1 :(得分:1)

我正在使用gnome-terminal而只是添加

set t_Co=256

到我的.vimrc文件完全不同

答案 2 :(得分:0)

这是一个简单的python脚本,它将为您进行转换:

'''add terminal color values to a GUI only colorscheme'''

# USAGE: vim_colorscheme_convert.py <colorscheme_file>

import sys
import re

# requires path.py: https://pypi.python.org/pypi/path.py
from path import path

# requires colortrans.py: https://gist.github.com/MicahElliott/719710
from colortrans import rgb2short

HI_LINE = 'hi %(name)s guifg=%(guifg)s guibg=%(guibg)s gui=%(gui)s ctermfg=%(ctermfg)s ctermbg=%(ctermbg)s cterm=%(cterm)s'

f = path(sys.argv[1])
if not f.isfile():
    print('File does not exist: %s' % f)
    sys.exit(-1)

output = []

for line in f.lines():
    m = re.match('hi\s+(?P<name>\w+)\s+.*$', line)
    if not m:
        # append non "hi" lines verbatim
        output.append(line)

    else:
        values = {'name': m.group('name')}
        for val in ('', 'fg', 'bg'):
            m = re.search('gui%s=(?P<gui%s>\S+)' % (val, val), line)
            if not m:
                values['gui%s' % val]   = 'NONE'
                values['cterm%s' % val] = 'NONE'
            else:
                values['gui%s' % val]   = m.group('gui%s' % val)
                if not values['gui%s' % val].startswith('#'):
                    values['cterm%s' % val] = values['gui%s' % val]
                else:
                    values['cterm%s' % val] = rgb2short(m.group('gui%s' % val).strip('#'))[0]

        output.append(HI_LINE % values)

# make a back up of the original and write the new contents
f.copy('%s.bak' % f)
f.write_lines(output)