话不多说,上代码如下:

 "   ___  __)                   )   ___                  ______)
" (, |/ (__/_____) /) (, / /) /)
" | _/_ _ __ ____ / ___// _____ / _ (/_ // _
" ) /|_ (___(/_/ (_/ / /_ (_/ (_)(/_(_)/ (_ ) / (_(_/_) (/__(/_
" (_/ (______) (_/
"
" guns <self@sungpae.com> " Version: 1.6
" License: MIT
" Homepage: http://github.com/guns/xterm-color-table.vim
"
" NOTES:
"
" * Provides command :XtermColorTable, as well as variants for different splits
" * Xterm numbers on the left, equivalent RGB values on the right
" * Press `#` to yank current color (shortcut for yiw)
" * Press `t` to toggle RGB text visibility
" * Press `f` to set RGB text to current color
" * Buffer behavior similar to Scratch.vim
"
" INSPIRED BY:
"
" * http://www.calmar.ws/vim/256-xterm-24bit-rgb-color-chart.html
" * http://vim.wikia.com/wiki/Xterm256_color_names_for_console_Vim
" * http://www.vim.org/scripts/script.php?script_id=664 " We have a dependency on buffer-local autocommands
if version < 700
echo 'FAIL: XtermColorTable requires vim 7.0+'
finish
endif let s:bufname = '__XtermColorTable__' if !exists('g:XtermColorTableDefaultOpen')
let g:XtermColorTableDefaultOpen = 'split'
endif command! XtermColorTable execute 'call <SID>XtermColorTable(g:XtermColorTableDefaultOpen)'
command! SXtermColorTable call <SID>XtermColorTable('split')
command! VXtermColorTable call <SID>XtermColorTable('vsplit')
command! TXtermColorTable call <SID>XtermColorTable('tabnew')
command! EXtermColorTable call <SID>XtermColorTable('edit')
command! OXtermColorTable call <SID>XtermColorTable('edit') | only augroup XtermColorTable "{{{
autocmd!
autocmd BufNewFile __XtermColorTable__ call <SID>ColorTable()
autocmd ColorScheme * silent! doautoall XtermColorTableBuffer ColorScheme
augroup END "}}} function! <SID>XtermColorTable(open) "{{{
let bufid = bufnr(s:bufname)
let winid = bufwinnr(bufid) if bufid == -1
" Create new buffer
execute a:open.' '.s:bufname
return
elseif winid != -1 && winnr('$') > 1
" Close extant window
execute winid.'wincmd w' | close
endif " Open extant buffer
execute a:open.' +buffer'.bufid
endfunction "}}} function! <SID>ColorTable() "{{{
let rows = [] call add(rows, <SID>ColorRow(0, 7))
call add(rows, <SID>ColorRow(8, 15))
"call add(rows, '') for lnum in range(16, 248, 8)
call add(rows, <SID>ColorRow(lnum, lnum + 7))
if lnum == 24
call add(rows, '')
call add(rows, ' -------------------------------------------------------------------------------------------------------')
call add(rows, '')
endif
if lnum == 56
call add(rows, '')
endif
if lnum == 88
call add(rows, '')
call add(rows, ' -------------------------------------------------------------------------------------------------------')
call add(rows, '')
endif
if lnum == 120
call add(rows, '')
endif
if lnum == 152
call add(rows, '')
call add(rows, ' -------------------------------------------------------------------------------------------------------')
call add(rows, '')
endif
if lnum == 184
call add(rows, '')
endif
if lnum == 216
call add(rows, '')
call add(rows, ' -------------------------------------------------------------------------------------------------------')
call add(rows, '')
endif
endfor if &modifiable
call append(0, rows)
call append(len(rows) + 1, <SID>HelpComment())
call <SID>SetBufferOptions()
endif
endfunction "}}} function! <SID>ColorRow(start, end) "{{{
return join(map(range(a:start, a:end), '<SID>ColorCell(v:val)'))
endfunction "}}} function! <SID>ColorCell(n) "{{{
let rgb = s:xterm_colors[a:n] " Clear extant values
execute 'silent! syntax clear fg_'.a:n
execute 'silent! syntax clear bg_'.a:n execute 'syntax match fg_'.a:n.' " '.a:n.' " containedin=ALL'
execute 'syntax match bg_'.a:n.' "'. rgb .'" containedin=ALL' call <SID>HighlightCell(a:n, -1) return printf(' %3s %7s', a:n, rgb)
endfunction "}}} function! <SID>HighlightCell(n, bgf) "{{{
let rgb = s:xterm_colors[a:n] " bgf has three states:
" -2) black or white depending on intensity
" -1) same as background
" 0+) xterm color value
if a:bgf == -2
let sum = 0
for val in map(split(substitute(rgb, '^#', '', ''), '\v\x{2}\zs'), 'str2nr(v:val, 16)')
" TODO: does Vimscript have a fold/reduce function?
let sum += val
endfor
let bgf = sum > (0xff * 1.5) ? 0 : 15
elseif a:bgf == -1
let bgf = a:n
else
let bgf = a:bgf
endif " Clear any extant values
execute 'silent! highlight clear fg_'.a:n
execute 'silent! highlight clear bg_'.a:n execute 'highlight fg_'.a:n.' ctermfg='.a:n.' guifg='.rgb
execute 'highlight bg_'.a:n.' ctermbg='.a:n.' guibg='.rgb
execute 'highlight bg_'.a:n.' ctermfg='.bgf.' guifg='.s:xterm_colors[bgf]
endfunction "}}} function! <SID>SetBufferOptions() "{{{
setlocal buftype=nofile bufhidden=hide buflisted
setlocal nomodified nomodifiable noswapfile readonly
setlocal nocursorline nocursorcolumn
setlocal iskeyword+=# let b:XtermColorTableRgbVisible = 0
let b:XtermColorTableBGF = -2 nmap <silent><buffer> # yiw:echo 'yanked: '.@"<CR>
nmap <silent><buffer> t :call <SID>ToggleRgbVisibility()<CR>
nmap <silent><buffer> f :call <SID>SetRgbForeground(expand('<cword>'))<CR> " Colorschemes often call `highlight clear';
" register a handler to deal with this
augroup XtermColorTableBuffer
autocmd! * <buffer>
autocmd ColorScheme <buffer> call <SID>HighlightTable(-1)
augroup END
endfunction "}}} function! <SID>HelpComment() "{{{
" we have to define our own comment type
silent! syntax clear XtermColorTableComment
syntax match XtermColorTableComment ';.*'
highlight link XtermColorTableComment Comment let lines = []
call add(lines, "; # to copy current color (yiw)")
call add(lines, "; t to toggle RGB visibility")
call add(lines, "; f to set RGB foreground color") return lines
endfunction "}}} function! <SID>ToggleRgbVisibility() "{{{
let bgf = b:XtermColorTableRgbVisible ? -1 : b:XtermColorTableBGF
let b:XtermColorTableRgbVisible = (b:XtermColorTableRgbVisible + 1) % 2 call <SID>HighlightTable(bgf)
endfunction "}}} function! <SID>HighlightTable(bgf) "{{{
for val in range(0, 0xff) | call <SID>HighlightCell(val, a:bgf) | endfor
endfunction "}}} function! <SID>SetRgbForeground(cword) "{{{
if len(a:cword)
let sname = synIDattr(synID(line('.'), col('.'), 0), 'name')
let b:XtermColorTableBGF = substitute(sname, '\v^\w+_', '', '') + 0
else
let b:XtermColorTableBGF = -2
endif if b:XtermColorTableRgbVisible
call <SID>HighlightTable(b:XtermColorTableBGF)
else
call <SID>ToggleRgbVisibility()
endif
endfunction "}}} """ Xterm 256 color dictionary {{{ let s:xterm_colors = {
\ '0': '#000000', '1': '#800000', '2': '#008000', '3': '#808000', '4': '#000080',
\ '5': '#800080', '6': '#008080', '7': '#c0c0c0', '8': '#808080', '9': '#ff0000',
\ '10': '#00ff00', '11': '#ffff00', '12': '#0000ff', '13': '#ff00ff', '14': '#00ffff',
\ '15': '#ffffff', '16': '#000000', '17': '#00005f', '18': '#000087', '19': '#0000af',
\ '20': '#0000df', '21': '#0000ff', '22': '#005f00', '23': '#005f5f', '24': '#005f87',
\ '25': '#005faf', '26': '#005fdf', '27': '#005fff', '28': '#008700', '29': '#00875f',
\ '30': '#008787', '31': '#0087af', '32': '#0087df', '33': '#0087ff', '34': '#00af00',
\ '35': '#00af5f', '36': '#00af87', '37': '#00afaf', '38': '#00afdf', '39': '#00afff',
\ '40': '#00df00', '41': '#00df5f', '42': '#00df87', '43': '#00dfaf', '44': '#00dfdf',
\ '45': '#00dfff', '46': '#00ff00', '47': '#00ff5f', '48': '#00ff87', '49': '#00ffaf',
\ '50': '#00ffdf', '51': '#00ffff', '52': '#5f0000', '53': '#5f005f', '54': '#5f0087',
\ '55': '#5f00af', '56': '#5f00df', '57': '#5f00ff', '58': '#5f5f00', '59': '#5f5f5f',
\ '60': '#5f5f87', '61': '#5f5faf', '62': '#5f5fdf', '63': '#5f5fff', '64': '#5f8700',
\ '65': '#5f875f', '66': '#5f8787', '67': '#5f87af', '68': '#5f87df', '69': '#5f87ff',
\ '70': '#5faf00', '71': '#5faf5f', '72': '#5faf87', '73': '#5fafaf', '74': '#5fafdf',
\ '75': '#5fafff', '76': '#5fdf00', '77': '#5fdf5f', '78': '#5fdf87', '79': '#5fdfaf',
\ '80': '#5fdfdf', '81': '#5fdfff', '82': '#5fff00', '83': '#5fff5f', '84': '#5fff87',
\ '85': '#5fffaf', '86': '#5fffdf', '87': '#5fffff', '88': '#870000', '89': '#87005f',
\ '90': '#870087', '91': '#8700af', '92': '#8700df', '93': '#8700ff', '94': '#875f00',
\ '95': '#875f5f', '96': '#875f87', '97': '#875faf', '98': '#875fdf', '99': '#875fff',
\ '100': '#878700', '101': '#87875f', '102': '#878787', '103': '#8787af', '104': '#8787df',
\ '105': '#8787ff', '106': '#87af00', '107': '#87af5f', '108': '#87af87', '109': '#87afaf',
\ '110': '#87afdf', '111': '#87afff', '112': '#87df00', '113': '#87df5f', '114': '#87df87',
\ '115': '#87dfaf', '116': '#87dfdf', '117': '#87dfff', '118': '#87ff00', '119': '#87ff5f',
\ '120': '#87ff87', '121': '#87ffaf', '122': '#87ffdf', '123': '#87ffff', '124': '#af0000',
\ '125': '#af005f', '126': '#af0087', '127': '#af00af', '128': '#af00df', '129': '#af00ff',
\ '130': '#af5f00', '131': '#af5f5f', '132': '#af5f87', '133': '#af5faf', '134': '#af5fdf',
\ '135': '#af5fff', '136': '#af8700', '137': '#af875f', '138': '#af8787', '139': '#af87af',
\ '140': '#af87df', '141': '#af87ff', '142': '#afaf00', '143': '#afaf5f', '144': '#afaf87',
\ '145': '#afafaf', '146': '#afafdf', '147': '#afafff', '148': '#afdf00', '149': '#afdf5f',
\ '150': '#afdf87', '151': '#afdfaf', '152': '#afdfdf', '153': '#afdfff', '154': '#afff00',
\ '155': '#afff5f', '156': '#afff87', '157': '#afffaf', '158': '#afffdf', '159': '#afffff',
\ '160': '#df0000', '161': '#df005f', '162': '#df0087', '163': '#df00af', '164': '#df00df',
\ '165': '#df00ff', '166': '#df5f00', '167': '#df5f5f', '168': '#df5f87', '169': '#df5faf',
\ '170': '#df5fdf', '171': '#df5fff', '172': '#df8700', '173': '#df875f', '174': '#df8787',
\ '175': '#df87af', '176': '#df87df', '177': '#df87ff', '178': '#dfaf00', '179': '#dfaf5f',
\ '180': '#dfaf87', '181': '#dfafaf', '182': '#dfafdf', '183': '#dfafff', '184': '#dfdf00',
\ '185': '#dfdf5f', '186': '#dfdf87', '187': '#dfdfaf', '188': '#dfdfdf', '189': '#dfdfff',
\ '190': '#dfff00', '191': '#dfff5f', '192': '#dfff87', '193': '#dfffaf', '194': '#dfffdf',
\ '195': '#dfffff', '196': '#ff0000', '197': '#ff005f', '198': '#ff0087', '199': '#ff00af',
\ '200': '#ff00df', '201': '#ff00ff', '202': '#ff5f00', '203': '#ff5f5f', '204': '#ff5f87',
\ '205': '#ff5faf', '206': '#ff5fdf', '207': '#ff5fff', '208': '#ff8700', '209': '#ff875f',
\ '210': '#ff8787', '211': '#ff87af', '212': '#ff87df', '213': '#ff87ff', '214': '#ffaf00',
\ '215': '#ffaf5f', '216': '#ffaf87', '217': '#ffafaf', '218': '#ffafdf', '219': '#ffafff',
\ '220': '#ffdf00', '221': '#ffdf5f', '222': '#ffdf87', '223': '#ffdfaf', '224': '#ffdfdf',
\ '225': '#ffdfff', '226': '#ffff00', '227': '#ffff5f', '228': '#ffff87', '229': '#ffffaf',
\ '230': '#ffffdf', '231': '#ffffff', '232': '#080808', '233': '#121212', '234': '#1c1c1c',
\ '235': '#262626', '236': '#303030', '237': '#3a3a3a', '238': '#444444', '239': '#4e4e4e',
\ '240': '#585858', '241': '#606060', '242': '#666666', '243': '#767676', '244': '#808080',
\ '245': '#8a8a8a', '246': '#949494', '247': '#9e9e9e', '248': '#a8a8a8', '249': '#b2b2b2',
\ '250': '#bcbcbc', '251': '#c6c6c6', '252': '#d0d0d0', '253': '#dadada', '254': '#e4e4e4',
\ '255': '#eeeeee', 'fg': 'fg', 'bg': 'bg', 'NONE': 'NONE' } "}}}

  只有82-112区区30行代码,但是感觉比原来的颜色显示舒服多了,效果如下。

自己修改的vim配色选择器的颜色显示部分的更多相关文章

  1. vim中添加molokai.vim 配色安装

    无意中发现知乎中讨论的话题: 你认为最好看的 Vim 配色方案(color scheme)是哪款? 网友回答 排在第一位的是:molokai 啊,最经典的配色 既然molokai这么经典,当然要用了. ...

  2. vim配色方案

    想更换vim配色方案,需要修改两个文件: 第一个修改是在 /user/share/vim/vim73/colors 添加xxx.vim文件://路径里面有些不是vim73,是vim70或其他 第二个修 ...

  3. 改变vim配色:安装colorscheme【转】

    主要有两种方式安装colorscheme: 自行下载colorscheme安装,下载的文件扩展名通常为.vim. 通过安装相关vim的插件获取. 自行下载colorscheme安装 以mac为例,在系 ...

  4. vim配色方案设置(更换vim配色方案)

    vim配色后,我的 设定底色为黑色,字体为绿色,然后将文件夹设为洋红,默认的注释换为淡黄:其实有一种简单的方法,就是设定为系统配置好的配色方案:转载文章如下:   ---------------- ( ...

  5. Mac OSX vim配色方案选择

    首先查看系统自带的vim配色种类: ls /usr/share/vim/vim73/colors 大致输出如下: README.txt default.vim elflord.vim morning. ...

  6. mac 修改 vim 配色

    1. 看看系统有哪些自带配色方案 ls /usr/share/vim/vim73/colors README.txt darkblue.vim delek.vim elflord.vim koehle ...

  7. centos 7.6 修改vim配色方案

    cd ~ vim .vimrc colorscheme desert

  8. ubuntu下Vim配色方案Solarized的配置

    系统:ubuntu 12.04 LTS vim版本:7.4 ---------------------------------------------------------------------- ...

  9. Vim 配色设置与配色脚本语法

    几个给tag加颜色的插件 https://github.com/octol/vim-cpp-enhanced-highlight:基于tag的c family语法高亮 https://github.c ...

随机推荐

  1. 二分搜索 POJ 3273 Monthly Expense

    题目传送门 /* 题意:分成m个集合,使最大的集合值(求和)最小 二分搜索:二分集合大小,判断能否有m个集合. */ #include <cstdio> #include <algo ...

  2. 小白的python之路 序

    计算机专科毕业,.net开发已有8年有余,中途断断续续,似懂非懂,积累了一些经验知识,但是不求甚解,属于那种一瓶不满半瓶子晃荡,这么一个状态. 主要从事web开发,涉及一些前端jq等,还有接口开发,搜 ...

  3. cocos2d-x android 环境部署

    1.下载jdk http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 2.下载 and ...

  4. (3)左右值再探与decltype

    Decltype 类型指示符 “引用从来都作为其所指对象的同义词出现,只有用在decltype处是一个例外” 理解: Decltype和auto区别: 1.     auto是从表达式类型推断出要定义 ...

  5. 校网助手APP lua源码

    import 'android.webkit.WebView'webView.addJavascriptInterface({},'JsInterface') import 'test' cjson= ...

  6. Android常见问题总结(二)

    1.布局文件LinearLayout线性布局添加内容报错. 解决方法: 线性布局LinearLayout中包裹的元素多余1个需要添加android:orientation属性. 2.android 的 ...

  7. PAT甲级考前整理(2019年3月备考)之二,持续更新中.....

    PAT甲级考前整理之一网址:https://www.cnblogs.com/jlyg/p/7525244.html,主要总结了前面131题的类型以及易错题及坑点. PAT甲级考前整理三网址:https ...

  8. Android学习笔记(四) JAVA基础知识回顾

    一.接口 1)接口中定义的方法都是public权限,并且默认为public,而不是default. 2)接口的实现(implements)是特殊的继承,类似于父类子类的关系,可以向上转型(非常重要). ...

  9. CAD梦想看图6.0安卓版 20181022更新

    下载地址: http://www.mxdraw.com/ndetail_10109.html 1. 保存上次的文件浏览位置和绘制颜色 2. 调整工具条按钮位置和文字 3. 增加测量距离和面积时的捕捉功 ...

  10. 视频剪辑生成gif格式(php外挂python程序)完美!

    接到朋友的需求,朋友是做php的,让我帮忙处理php生成gif的需求.他的项目类似抖音短视频那种,就是展示出来的界面是gif动图,然后点进去是完整的视频. 我想了想,我倒是没做过php生成gif的需求 ...