Mercurial > vim
comparison src/testdir/color_ramp.vim @ 12604:a0199c0efc73 v8.0.1180
patch 8.0.1180: MS-Windows testclean target deletes the color script
commit https://github.com/vim/vim/commit/75f69e5a183e00cb5aa05d43c1ecf3b7dead7a98
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 7 20:10:29 2017 +0200
patch 8.0.1180: MS-Windows testclean target deletes the color script
Problem: MS-Windows testclean target deletes the color script.
Solution: Rename the script file.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 07 Oct 2017 20:15:05 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
12603:1c2128119501 | 12604:a0199c0efc73 |
---|---|
1 " Script to generate a file that shows al 256 xterm colors | |
2 | |
3 new | |
4 call setline(1, 'ANSI') | |
5 | |
6 " ANSI colors | |
7 let s = '' | |
8 for nr in range(0, 7) | |
9 let s .= "\033[4" . nr . "m " | |
10 endfor | |
11 for nr in range(8, 15) | |
12 let s .= "\033[10" . (nr - 8) . "m " | |
13 endfor | |
14 let s .= "\033[107m|" | |
15 call setline(2, s) | |
16 | |
17 " 6 x 6 x 6 color cube | |
18 call setline(3, 'color cube') | |
19 for high in range(0, 5) | |
20 let s = '' | |
21 for low in range(0, 35) | |
22 let nr = low + high * 36 | |
23 let s .= "\033[48;5;" . (nr + 16) . "m " | |
24 endfor | |
25 let s .= "\033[107m|" | |
26 call setline(high + 4, s) | |
27 endfor | |
28 | |
29 " 24 shades of grey | |
30 call setline(10, 'grey ramp') | |
31 let s = '' | |
32 for nr in range(0, 23) | |
33 let s .= "\033[48;5;" . (nr + 232) . "m " | |
34 endfor | |
35 let s .= "\033[107m|" | |
36 call setline(11, s) | |
37 | |
38 set binary | |
39 write! <sfile>:h/xterm_ramp.txt | |
40 quit |