view src/testdir/xterm_ramp.vim @ 12786:0350d971fa16 v8.0.1270

patch 8.0.1270: mismatching file name with Filelist commit https://github.com/vim/vim/commit/8fdb35a974d92c7d0267bc8988aa6af74ee6885d Author: Bram Moolenaar <Bram@vim.org> Date: Sun Nov 5 18:23:16 2017 +0100 patch 8.0.1270: mismatching file name with Filelist Problem: Mismatching file name with Filelist. Solution: Rename color_ramp.vim to xterm_ramp.vim
author Christian Brabandt <cb@256bit.org>
date Sun, 05 Nov 2017 18:30:06 +0100
parents fcb11cfca8b3
children
line wrap: on
line source

" Script to generate a file that shows al 256 xterm colors

new
call setline(1, 'ANSI')

" ANSI colors
let s = ''
for nr in range(0, 7)
  let s .= "\033[4" . nr . "m    "
endfor
for nr in range(8, 15)
  let s .= "\033[10" . (nr - 8) . "m    "
endfor
let s .= "\033[107m|"
call setline(2, s)

" 6 x 6 x 6 color cube
call setline(3, 'color cube')
for high in range(0, 5)
  let s = ''
  for low in range(0, 35)
    let nr = low + high * 36
    let s .= "\033[48;5;" . (nr + 16) . "m  "
  endfor
  let s .= "\033[107m|"
  call setline(high + 4, s)
endfor

" 24 shades of grey
call setline(10, 'grey ramp')
let s = ''
for nr in range(0, 23)
    let s .= "\033[48;5;" . (nr + 232) . "m   "
endfor
let s .= "\033[107m|"
call setline(11, s)

set binary
write! <sfile>:h/xterm_ramp.txt
quit