comparison runtime/colors/README.txt @ 26057:92c424550367 v8.2.3562

patch 8.2.3562: cannot add color names Commit: https://github.com/vim/vim/commit/e30d10253fa634c4f60daa798d029245f4eed393 Author: Drew Vogel <dvogel@github> Date: Sun Oct 24 20:35:07 2021 +0100 patch 8.2.3562: cannot add color names Problem: Cannot add color names. Solution: Add the v:colornames dictionary. (Drew Vogel, closes https://github.com/vim/vim/issues/8761)
author Bram Moolenaar <Bram@vim.org>
date Sun, 24 Oct 2021 21:45:04 +0200
parents 17c4178f26ea
children 82244cfc4694
comparison
equal deleted inserted replaced
26056:977bbbf36908 26057:92c424550367
85 - Split a window with ":split" and ":vsplit". Are the status lines and 85 - Split a window with ":split" and ":vsplit". Are the status lines and
86 vertical separators clearly visible? 86 vertical separators clearly visible?
87 - In the GUI, is it easy to find the cursor, also in a file with lots of 87 - In the GUI, is it easy to find the cursor, also in a file with lots of
88 syntax highlighting? 88 syntax highlighting?
89 - Do not use hard coded escape sequences, these will not work in other 89 - Do not use hard coded escape sequences, these will not work in other
90 terminals. Always use color names or #RRGGBB for the GUI. 90 terminals. Always use color names or #RRGGBB for the GUI. See v:colornames
91 for details on how to define your own color names.