Mercurial > vim
annotate runtime/colors/default.vim @ 30128:6d0056cc21a0 v9.0.0400
patch 9.0.0400: GUI test sometimes hangs on CI
Commit: https://github.com/vim/vim/commit/e68f1348f25766c669e27e1f7da2453c46e4c981
Author: K.Takata <kentkt@csc.jp>
Date: Wed Sep 7 13:01:11 2022 +0100
patch 9.0.0400: GUI test sometimes hangs on CI
Problem: GUI test sometimes hangs on CI.
Solution: Delete a test file explicitly. (Ken Takata, closes https://github.com/vim/vim/issues/11072)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 07 Sep 2022 14:15:06 +0200 |
parents | 3fc0f57ecb91 |
children | 4027cefc2aab |
rev | line source |
---|---|
7 | 1 " Vim color file |
2 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
3 " Last Change: 2001 Jul 23 | |
4 | |
5 " This is the default color scheme. It doesn't define the Normal | |
6 " highlighting, it uses whatever the colors used to be. | |
7 | |
8 " Set 'background' back to the default. The value can't always be estimated | |
9 " and is then guessed. | |
10 hi clear Normal | |
11 set bg& | |
12 | |
13 " Remove all existing highlighting and set the defaults. | |
14 hi clear | |
15 | |
16 " Load the syntax highlighting defaults, if it's enabled. | |
17 if exists("syntax_on") | |
18 syntax reset | |
19 endif | |
20 | |
21 let colors_name = "default" | |
22 | |
23 " vim: sw=2 |