Skip to content

Instantly share code, notes, and snippets.

@johnjohndoe
Created January 21, 2013 23:30
Show Gist options
  • Save johnjohndoe/4590553 to your computer and use it in GitHub Desktop.
Save johnjohndoe/4590553 to your computer and use it in GitHub Desktop.
VimColorTest script to test Vim for 256 colors support. Place the script into ~/.vim/plugin/ and run it via :VimColorTest.
" Source: http://emerg3nc3.wordpress.com/2012/07/28/full-256-color-support-for-vim-andor-xterm-on-ubuntu-12-04/
"
" Color test: Save this file, then enter ':so %'
" Then enter the following commands:
" :VimColorTest "(for console/terminal Vim)
function! VimColorTest(outfile, fgend, bgend)
let result = []
for fg in range(a:fgend)
for bg in range(a:bgend)
let kw = printf('%-7s', printf('c_%d_%d', fg, bg))
let h = printf('hi %s ctermfg=%d ctermbg=%d', kw, fg, bg)
let s = printf('syn keyword %s %s', kw, kw)
call add(result, printf('%-32s | %s', h, s))
endfor
endfor
call writefile(result, a:outfile)
execute 'edit '.a:outfile
source %
endfunction
" Increase numbers in next line to see more colors.
command! VimColorTest call VimColorTest('vim-color-test.tmp', 1, 256)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment