summaryrefslogtreecommitdiff
path: root/src/testdir/color_ramp.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-10-07 20:10:29 +0200
committerBram Moolenaar <Bram@vim.org>2017-10-07 20:10:29 +0200
commit75f69e5a183e00cb5aa05d43c1ecf3b7dead7a98 (patch)
tree961701ad373d172d5262a6f4f55a01724e966954 /src/testdir/color_ramp.vim
parent631820536e4084e01bf990f9314ec385b60b21d7 (diff)
downloadvim-git-75f69e5a183e00cb5aa05d43c1ecf3b7dead7a98.tar.gz
patch 8.0.1180: MS-Windows testclean target deletes the color scriptv8.0.1180
Problem: MS-Windows testclean target deletes the color script. Solution: Rename the script file.
Diffstat (limited to 'src/testdir/color_ramp.vim')
-rw-r--r--src/testdir/color_ramp.vim40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/testdir/color_ramp.vim b/src/testdir/color_ramp.vim
new file mode 100644
index 000000000..3c8388262
--- /dev/null
+++ b/src/testdir/color_ramp.vim
@@ -0,0 +1,40 @@
+" 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