To: vim_dev@googlegroups.com Subject: Patch 8.2.0582 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 8.2.0582 Problem: Color ramp test does not show text colors. Solution: Add a row of 16 text colors and 16 bold text colors. Files: src/testdir/color_ramp.vim *** ../vim-8.2.0581/src/testdir/color_ramp.vim 2017-11-26 17:14:38.000000000 +0100 --- src/testdir/color_ramp.vim 2020-04-15 21:42:43.030345313 +0200 *************** *** 1,9 **** " 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 " --- 1,15 ---- " Script to generate a file that shows al 256 xterm colors new ! let lnum = 1 ! ! " | in original color pair to see white background. ! let trail_bar = "\033[m|" " ANSI colors + call setline(lnum, 'ANSI background') + let lnum += 1 + let s = '' for nr in range(0, 7) let s .= "\033[4" . nr . "m " *************** *** 11,40 **** for nr in range(8, 15) let s .= "\033[10" . (nr - 8) . "m " endfor ! " Add | in original color pair to see white background. ! let s .= "\033[m|" ! 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[m|" ! 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[m|" ! call setline(11, s) set binary write! :h/color_ramp.txt --- 17,84 ---- for nr in range(8, 15) let s .= "\033[10" . (nr - 8) . "m " endfor ! let s .= trail_bar ! ! call setline(lnum, s) ! let lnum += 1 ! ! " ANSI text colors ! call setline(lnum, 'ANSI text') ! let lnum += 1 ! ! let s = '' ! for nr in range(0, 7) ! let s .= "\033[0;3" . nr . "mxxxx" ! endfor ! for nr in range(8, 15) ! let s .= "\033[0;9" . (nr - 8) . "mxxxx" ! endfor ! let s .= trail_bar ! ! call setline(lnum, s) ! let lnum += 1 ! ! " ANSI with bold text ! call setline(lnum, 'ANSI bold text') ! let lnum += 1 ! ! let s = '' ! for nr in range(0, 7) ! let s .= "\033[1;3" . nr . "mxxxx" ! endfor ! for nr in range(8, 15) ! let s .= "\033[1;9" . (nr - 8) . "mxxxx" ! endfor ! let s .= trail_bar ! ! call setline(lnum, s) ! let lnum += 1 " 6 x 6 x 6 color cube ! call setline(lnum, 'color cube') ! let lnum += 1 ! 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 .= trail_bar ! call setline(lnum + high, s) endfor + let lnum += 6 " 24 shades of grey ! call setline(lnum, 'grey ramp') ! let lnum += 1 ! let s = '' for nr in range(0, 23) let s .= "\033[48;5;" . (nr + 232) . "m " endfor ! let s .= trail_bar ! call setline(lnum, s) set binary write! :h/color_ramp.txt *** ../vim-8.2.0581/src/version.c 2020-04-15 21:05:27.216645430 +0200 --- src/version.c 2020-04-15 21:43:53.046167807 +0200 *************** *** 748,749 **** --- 748,751 ---- { /* Add new patch number below this line */ + /**/ + 582, /**/ -- ARTHUR: What are you going to do. bleed on me? "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///