Home
last modified time | relevance | path

Searched refs:colors (Results 1 – 25 of 152) sorted by relevance

1234567

/vim-8.2.3635/runtime/doc/
H A Dusr_06.txt14 |06.2| No or wrong colors?
15 |06.3| Different colors
16 |06.4| With colors or without colors
17 |06.5| Printing with colors
51 *06.2* No or wrong colors?
63 xterm that supports colors: >
124 colors again.
154 !mkdir ~/.vim/colors
155 !cp $VIMRUNTIME/colors/morning.vim ~/.vim/colors/mine.vim
207 GUI colors. These are defined in `colors/lists/default.vim`. All such files
[all …]
H A Dos_dos.txt14 4. Screen output and colors |dos-colors|
126 4. Screen output and colors *dos-colors*
132 To change the screen colors that Vim uses, you can use the |:highlight|
133 command. The Normal highlight group specifies the colors Vim uses for normal
186 overridden the default colors in a command prompt, you may need to adjust
187 some of the highlight colors in your vimrc---see below).
204 These colors were chosen because they also look good when using an inverted
H A Dgui_w32.txt13 5. Special colors |win32-colors|
295 5. Special colors *win32-colors*
297 On Win32, the normal DOS colors can be used. See |dos-colors|.
299 Additionally the system configured colors can also be used. These are known
322 These extra colors are also available:
326 Additionally, colors defined by a default color list can be used. For more
327 info see |:colorscheme|. These colors used to be defined in
329 $VIMRUNTIME/colors/lists/default.vim.
H A Dos_unix.txt43 *terminal-colors*
44 To use colors in Vim you can use the following example (if your terminal
45 supports colors, but "T_Co" is empty or zero): >
H A Dusr_toc.txt117 |06.2| No or wrong colors?
118 |06.3| Different colors
119 |06.4| With colors or without colors
120 |06.5| Printing with colors
H A Dsyntax.txt1993 In order to highlight nested parens with different colors define colors
3994 different colors: >
5015 # tmux colors
5028 *cterm-colors*
5063 colors!
5144 *gui-colors*
5157 |win32-colors|.
5470 the default colors. This way these colors will be used after the ":syntax
5487 your defined colors are to be used or the colors from the scheme. This
5498 the colors.
[all …]
H A Dterminal.txt179 not using GUI colors, the terminal window always uses the 16 ANSI colors of
183 |term_getansicolors()| to get the currently used colors.
437 COLORS number of colors, 't_Co' (256*256*256 in the GUI)
575 If neither was used returns the default colors.
752 term_setansicolors({buf}, {colors}) *term_setansicolors()*
754 {colors} must be a List of 16 valid color names or hexadecimal
758 The colors normally are:
776 These colors are used in the GUI and in the terminal when
777 'termguicolors' is set. When not using GUI colors (GUI mode
779 ANSI colors of the underlying terminal.
[all …]
/vim-8.2.3635/runtime/syntax/
H A Ddircolors.vim96 function! s:get_256color(colors) abort argument
97 if len(a:colors) >= 2 " May be fewer while editing
98 let [_five, color] = remove(a:colors, 0, 1)
118 let colors = split(colordef, ';')
122 while len(colors) > 0
123 let item = str2nr(remove(colors, 0))
146 let color = s:get_256color(colors)
153 let color = s:get_256color(colors)
H A Dsyncolor.vim10 " ":syntax on" works like in Vim 5.7: set colors but keep links
15 " ":syntax enable" keeps any existing colors
19 " ":syntax reset" resets all colors to the default
23 " User defined syncolor file has already set the colors.
28 " Many terminals can only use six different colors (plus black and white).
29 " Therefore the number of colors used is kept low. It doesn't look nice with
30 " too many colors anyway.
H A Dxpm.vim26 let colors = 0 variable
38 " get the 3rd value: colors = number of colors
39 let colors = substitute(s, '"\s*\d\+\s\+\d\+\s\+\(\d\+\).*"', '\1', '') variable
55 elseif n <= colors " string is a color specification
125 unlet color chars colors cpp n i s
H A Dxpm2.vim30 let colors = 0 variable
45 " get the 3rd value: colors = number of colors
46 let colors = substitute(s, '\s*\d\+\s\+\d\+\s\+\(\d\+\).*', '\1', '') variable
62 elseif n <= colors " string is a color specification
134 unlet color chars colors cpp n i s
H A Ddesc.vim73 " priority tag colors
80 " download tag colors
84 " tag region colors
H A Delinks.vim43 syn keyword elinksPrefix active_link colors search cache codepage colors
83 \ colors transparency underline charset
85 syn keyword elinksPrefix ui colors color mainmenu normal selected hotkey
H A Dcolortest.vim1 " Vim script for testing colors
6 " edit this file, then do ":source %", and check if the colors match
H A Dsynload.vim17 " Set the default highlighting colors. Use a color scheme if specified.
19 exe "colors " . colors_name
/vim-8.2.3635/runtime/colors/
H A DREADME.txt41 autocmd SourcePre */colors/blue_sky.vim set background=dark
56 To customize a colorscheme use another name, e.g. "~/.vim/colors/mine.vim",
59 runtime colors/evening.vim
66 You can use ":highlight" to find out the current colors. Exception: the
68 terminal. Use the color names instead. See ":help cterm-colors".
76 - Source the $VIMRUNTIME/colors/tools/check_colors.vim script to check for
H A Ddesert.vim5 " URL: http://hans.fugal.net/vim/colors/desert.vim
11 " :he cterm-colors
H A Dpeachpuff.vim4 " URL: http://trific.ath.cx/Ftp/vim/colors/peachpuff.vim
9 " Note: Only GUI colors differ from default, on terminal it's just `light'.
/vim-8.2.3635/src/testdir/
H A Dcolor_ramp.vim1 " Script to generate a file that shows al 256 xterm colors
9 " ANSI colors
25 " ANSI text colors
H A Dtest_packadd.vim269 let colordirrun = &packpath . '/runtime/colors'
270 let colordirstart = &packpath . '/pack/mine/start/foo/colors'
271 let colordiropt = &packpath . '/pack/mine/opt/bar/colors'
289 let colordirrun = &packpath . '/runtime/colors'
290 let colordirstart = &packpath . '/pack/mine/start/foo/colors'
291 let colordiropt = &packpath . '/pack/mine/opt/bar/colors'
H A Dterm_util.vim10 " For most tests we need to be able to run terminal Vim with 256 colors. On
11 " MS-Windows the console only has 16 colors and the GUI can't run in a
75 " Always do this with 256 colors and a light background.
/vim-8.2.3635/runtime/compiler/
H A Djest.vim18 " CompilerSet makeprg=npx\ jest\ --no-colors
20 CompilerSet makeprg=jest\ --no-colors
/vim-8.2.3635/runtime/colors/tools/
H A Dcheck_colors.vim3 " :edit colors/desert.vim | :so colors/tools/check_colors.vim
119 " do not check for background colors, they could be intentionally left out
143 let err['t_Co'] = 'Does not check terminal for capable colors'
/vim-8.2.3635/src/libvterm/src/
H A Dpen.c57 *col = state->colors[index]; in lookup_colour_ansi()
172 lookup_default_colour_ansi(col, &state->colors[col]); in vterm_state_newpen()
273 state->colors[index] = *col; in vterm_state_set_palette_color()
274 state->colors[index].index = index + 1; in vterm_state_set_palette_color()
/vim-8.2.3635/nsis/
H A Dgvim.nsi365 SetOutPath $0\colors
366 File ${VIMRT}\colors\*.*
367 SetOutPath $0\colors\tools
368 File ${VIMRT}\colors\tools\*.*
369 SetOutPath $0\colors\lists
370 File ${VIMRT}\colors\lists\*.*
1037 RMDir /r $0\colors
1071 RMDir ${dir}\vimfiles\colors

1234567