diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..926ccaa --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +doc/tags diff --git a/colors/solarized8_dark.vim b/colors/solarized8_dark.vim index 4d523f9..9566f57 100644 --- a/colors/solarized8_dark.vim +++ b/colors/solarized8_dark.vim @@ -4,7 +4,7 @@ " Maintainer: Lifepillar " Website: https://github.com/lifepillar/vim-solarized8 " License: OSI approved MIT license -" Last Updated: Sun Oct 29 20:39:37 2017 +" Last Updated: Sun Nov 5 11:05:15 2017 if !(has('termguicolors') && &termguicolors) && !has('gui_running') \ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', 0) ? 16 : 256)) diff --git a/colors/solarized8_dark_flat.vim b/colors/solarized8_dark_flat.vim index bb34f67..774f32c 100644 --- a/colors/solarized8_dark_flat.vim +++ b/colors/solarized8_dark_flat.vim @@ -4,7 +4,7 @@ " Maintainer: Lifepillar " Website: https://github.com/lifepillar/vim-solarized8 " License: OSI approved MIT license -" Last Updated: Sun Oct 29 21:23:20 2017 +" Last Updated: Sun Nov 5 11:05:16 2017 if !(has('termguicolors') && &termguicolors) && !has('gui_running') \ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', 0) ? 16 : 256)) diff --git a/colors/solarized8_dark_high.vim b/colors/solarized8_dark_high.vim index 3935232..16b1f4e 100644 --- a/colors/solarized8_dark_high.vim +++ b/colors/solarized8_dark_high.vim @@ -4,7 +4,7 @@ " Maintainer: Lifepillar " Website: https://github.com/lifepillar/vim-solarized8 " License: OSI approved MIT license -" Last Updated: Sat Oct 28 22:11:09 2017 +" Last Updated: Sun Nov 5 11:05:17 2017 if !(has('termguicolors') && &termguicolors) && !has('gui_running') \ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', 0) ? 16 : 256)) @@ -41,22 +41,34 @@ let g:colors_name = 'solarized8_dark_high' " base02: GUI=#073642/rgb( 7, 54, 66) Term=236 #303030/rgb( 48, 48, 48) [delta=13.434724] if get(g:, 'solarized_use16', 1) -if !has('gui_running') && get(g:, 'solarized_transp_bg', 0) +if !has('gui_running') && get(g:, 'solarized_termtrans', 0) hi Normal ctermfg=14 ctermbg=NONE guifg=#93a1a1 guibg=NONE guisp=NONE cterm=NONE gui=NONE -hi CursorLineNr ctermfg=9 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold -hi CursorLineNr ctermfg=11 ctermbg=NONE guifg=#657b83 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold -hi CursorLineNr ctermfg=14 ctermbg=NONE guifg=#93a1a1 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold hi FoldColumn ctermfg=fg ctermbg=NONE guifg=fg guibg=NONE guisp=NONE cterm=NONE gui=NONE hi Folded ctermfg=fg ctermbg=NONE guifg=fg guibg=NONE guisp=#002b36 cterm=NONE,bold gui=NONE,bold hi LineNr ctermfg=11 ctermbg=NONE guifg=#657b83 guibg=NONE guisp=NONE cterm=NONE gui=NONE +hi CursorLineNr ctermbg=NONE guifg=NONE else hi Normal ctermfg=14 ctermbg=8 guifg=#93a1a1 guibg=#002b36 guisp=NONE cterm=NONE gui=NONE -hi CursorLineNr ctermfg=9 ctermbg=0 guifg=#cb4b16 guibg=#073642 guisp=NONE cterm=NONE,bold gui=NONE,bold -hi CursorLineNr ctermfg=11 ctermbg=0 guifg=#657b83 guibg=#073642 guisp=NONE cterm=NONE,bold gui=NONE,bold -hi CursorLineNr ctermfg=14 ctermbg=0 guifg=#93a1a1 guibg=#073642 guisp=NONE cterm=NONE,bold gui=NONE,bold hi FoldColumn ctermfg=14 ctermbg=0 guifg=#93a1a1 guibg=#073642 guisp=NONE cterm=NONE gui=NONE hi Folded ctermfg=14 ctermbg=0 guifg=#93a1a1 guibg=#073642 guisp=#002b36 cterm=NONE,bold gui=NONE,bold hi LineNr ctermfg=11 ctermbg=0 guifg=#657b83 guibg=#073642 guisp=NONE cterm=NONE gui=NONE +hi CursorLineNr ctermbg=0 guibg=#073642 +endif +if get(g:, "solarized_visibility", "") == "high" +hi CursorLineNr ctermfg=9 guifg=#cb4b16 cterm=bold gui=bold +hi NonText ctermfg=9 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold +hi SpecialKey ctermfg=9 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,reverse gui=NONE,reverse +hi Title ctermfg=3 ctermbg=NONE guifg=#b58900 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold +elseif get(g:, "solarized_visibility", "") == "low" +hi CursorLineNr ctermfg=11 guifg=#657b83 cterm=bold gui=bold +hi NonText ctermfg=0 ctermbg=NONE guifg=#073642 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold +hi SpecialKey ctermfg=0 ctermbg=NONE guifg=#073642 guibg=NONE guisp=NONE cterm=NONE,reverse gui=NONE,reverse +hi Title ctermfg=11 ctermbg=NONE guifg=#657b83 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold +else +hi CursorLineNr ctermfg=14 guifg=#93a1a1 cterm=bold gui=bold +hi NonText ctermfg=12 ctermbg=NONE guifg=#839496 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold +hi SpecialKey ctermfg=12 ctermbg=0 guifg=#839496 guibg=#073642 guisp=NONE cterm=NONE,bold gui=NONE,bold +hi Title ctermfg=3 ctermbg=NONE guifg=#b58900 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold endif hi ColorColumn ctermfg=NONE ctermbg=0 guifg=NONE guibg=#073642 guisp=NONE cterm=NONE gui=NONE hi Conceal ctermfg=4 ctermbg=NONE guifg=#268bd2 guibg=NONE guisp=NONE cterm=NONE gui=NONE @@ -67,19 +79,6 @@ hi Cursor ctermfg=15 ctermbg=4 guifg=#fdf6e3 guibg=#268bd2 guisp=NONE cterm=NONE endif hi CursorColumn ctermfg=NONE ctermbg=0 guifg=NONE guibg=#073642 guisp=NONE cterm=NONE gui=NONE hi CursorLine ctermfg=NONE ctermbg=0 guifg=NONE guibg=#073642 guisp=#eee8d5 cterm=NONE gui=NONE -if get(g:, "solarized_visibility", "") == "high" -hi NonText ctermfg=9 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold -hi SpecialKey ctermfg=9 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,reverse gui=NONE,reverse -hi Title ctermfg=3 ctermbg=NONE guifg=#b58900 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold -elseif get(g:, "solarized_visibility", "") == "low" -hi NonText ctermfg=0 ctermbg=NONE guifg=#073642 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold -hi SpecialKey ctermfg=0 ctermbg=NONE guifg=#073642 guibg=NONE guisp=NONE cterm=NONE,reverse gui=NONE,reverse -hi Title ctermfg=11 ctermbg=NONE guifg=#657b83 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold -else -hi NonText ctermfg=12 ctermbg=NONE guifg=#839496 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold -hi SpecialKey ctermfg=12 ctermbg=0 guifg=#839496 guibg=#073642 guisp=NONE cterm=NONE,bold gui=NONE,bold -hi Title ctermfg=3 ctermbg=NONE guifg=#b58900 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold -endif if get(g:, "solarized_diffmode", "") == "high" hi DiffAdd ctermfg=2 ctermbg=NONE guifg=#859900 guibg=NONE guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi DiffChange ctermfg=3 ctermbg=NONE guifg=#b58900 guibg=NONE guisp=NONE cterm=NONE,reverse gui=NONE,reverse @@ -384,22 +383,34 @@ let g:terminal_color_2='#859900' endif endif if !get(g:, 'solarized_use16', 1) -if !has('gui_running') && get(g:, 'solarized_transp_bg', 0) +if !has('gui_running') && get(g:, 'solarized_termtrans', 0) hi Normal ctermfg=247 ctermbg=NONE guifg=#93a1a1 guibg=NONE guisp=NONE cterm=NONE gui=NONE -hi CursorLineNr ctermfg=166 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold -hi CursorLineNr ctermfg=243 ctermbg=NONE guifg=#657b83 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold -hi CursorLineNr ctermfg=247 ctermbg=NONE guifg=#93a1a1 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold hi FoldColumn ctermfg=fg ctermbg=NONE guifg=fg guibg=NONE guisp=NONE cterm=NONE gui=NONE hi Folded ctermfg=fg ctermbg=NONE guifg=fg guibg=NONE guisp=#002b36 cterm=NONE,bold gui=NONE,bold hi LineNr ctermfg=243 ctermbg=NONE guifg=#657b83 guibg=NONE guisp=NONE cterm=NONE gui=NONE +hi CursorLineNr ctermbg=NONE guifg=NONE else hi Normal ctermfg=247 ctermbg=235 guifg=#93a1a1 guibg=#002b36 guisp=NONE cterm=NONE gui=NONE -hi CursorLineNr ctermfg=166 ctermbg=236 guifg=#cb4b16 guibg=#073642 guisp=NONE cterm=NONE,bold gui=NONE,bold -hi CursorLineNr ctermfg=243 ctermbg=236 guifg=#657b83 guibg=#073642 guisp=NONE cterm=NONE,bold gui=NONE,bold -hi CursorLineNr ctermfg=247 ctermbg=236 guifg=#93a1a1 guibg=#073642 guisp=NONE cterm=NONE,bold gui=NONE,bold hi FoldColumn ctermfg=247 ctermbg=236 guifg=#93a1a1 guibg=#073642 guisp=NONE cterm=NONE gui=NONE hi Folded ctermfg=247 ctermbg=236 guifg=#93a1a1 guibg=#073642 guisp=#002b36 cterm=NONE,bold gui=NONE,bold hi LineNr ctermfg=243 ctermbg=236 guifg=#657b83 guibg=#073642 guisp=NONE cterm=NONE gui=NONE +hi CursorLineNr ctermbg=236 guibg=#073642 +endif +if get(g:, "solarized_visibility", "") == "high" +hi CursorLineNr ctermfg=166 guifg=#cb4b16 cterm=bold gui=bold +hi NonText ctermfg=166 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold +hi SpecialKey ctermfg=166 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,reverse gui=NONE,reverse +hi Title ctermfg=136 ctermbg=NONE guifg=#b58900 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold +elseif get(g:, "solarized_visibility", "") == "low" +hi CursorLineNr ctermfg=243 guifg=#657b83 cterm=bold gui=bold +hi NonText ctermfg=236 ctermbg=NONE guifg=#073642 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold +hi SpecialKey ctermfg=236 ctermbg=NONE guifg=#073642 guibg=NONE guisp=NONE cterm=NONE,reverse gui=NONE,reverse +hi Title ctermfg=243 ctermbg=NONE guifg=#657b83 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold +else +hi CursorLineNr ctermfg=247 guifg=#93a1a1 cterm=bold gui=bold +hi NonText ctermfg=246 ctermbg=NONE guifg=#839496 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold +hi SpecialKey ctermfg=246 ctermbg=236 guifg=#839496 guibg=#073642 guisp=NONE cterm=NONE,bold gui=NONE,bold +hi Title ctermfg=136 ctermbg=NONE guifg=#b58900 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold endif hi ColorColumn ctermfg=NONE ctermbg=236 guifg=NONE guibg=#073642 guisp=NONE cterm=NONE gui=NONE hi Conceal ctermfg=32 ctermbg=NONE guifg=#268bd2 guibg=NONE guisp=NONE cterm=NONE gui=NONE @@ -410,19 +421,6 @@ hi Cursor ctermfg=230 ctermbg=32 guifg=#fdf6e3 guibg=#268bd2 guisp=NONE cterm=NO endif hi CursorColumn ctermfg=NONE ctermbg=236 guifg=NONE guibg=#073642 guisp=NONE cterm=NONE gui=NONE hi CursorLine ctermfg=NONE ctermbg=236 guifg=NONE guibg=#073642 guisp=#eee8d5 cterm=NONE gui=NONE -if get(g:, "solarized_visibility", "") == "high" -hi NonText ctermfg=166 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold -hi SpecialKey ctermfg=166 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,reverse gui=NONE,reverse -hi Title ctermfg=136 ctermbg=NONE guifg=#b58900 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold -elseif get(g:, "solarized_visibility", "") == "low" -hi NonText ctermfg=236 ctermbg=NONE guifg=#073642 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold -hi SpecialKey ctermfg=236 ctermbg=NONE guifg=#073642 guibg=NONE guisp=NONE cterm=NONE,reverse gui=NONE,reverse -hi Title ctermfg=243 ctermbg=NONE guifg=#657b83 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold -else -hi NonText ctermfg=246 ctermbg=NONE guifg=#839496 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold -hi SpecialKey ctermfg=246 ctermbg=236 guifg=#839496 guibg=#073642 guisp=NONE cterm=NONE,bold gui=NONE,bold -hi Title ctermfg=136 ctermbg=NONE guifg=#b58900 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold -endif if get(g:, "solarized_diffmode", "") == "high" hi DiffAdd ctermfg=106 ctermbg=NONE guifg=#859900 guibg=NONE guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi DiffChange ctermfg=136 ctermbg=NONE guifg=#b58900 guibg=NONE guisp=NONE cterm=NONE,reverse gui=NONE,reverse @@ -745,7 +743,46 @@ endif " Color: green #859900 ~ 2 " Color: back #002b36 ~ 8 " Background: dark -" Normal base0 back +" verbatim +" endverbatim +" Normal base0 none +" FoldColumn fg none +" Folded fg none bold s=base03 +" LineNr base01 none +" verbatim +" hi CursorLineNr ctermbg=NONE guifg=NONE +" else +" endverbatim +" Normal base0 back +" FoldColumn base0 base02 +" Folded base0 base02 bold s=base03 +" LineNr base01 base02 +" verbatim +" hi CursorLineNr ctermbg=@base02 guibg=@base02 +" endif +" endverbatim +" verbatim +" hi CursorLineNr ctermfg=@orange guifg=@orange cterm=bold gui=bold +" endverbatim +" NonText orange none bold +" SpecialKey orange none reverse +" Title yellow none bold +" verbatim +" hi CursorLineNr ctermfg=@base01 guifg=@base01 cterm=bold gui=bold +" endverbatim +" NonText base02 none bold +" SpecialKey base02 none reverse +" Title base01 none bold +" verbatim +" else +" hi CursorLineNr ctermfg=@base0 guifg=@base0 cterm=bold gui=bold +" endverbatim +" NonText base00 none bold +" SpecialKey base00 base02 bold +" Title yellow none bold +" verbatim +" endif +" endverbatim " ColorColumn none base02 " Conceal blue none " verbatim @@ -762,28 +799,6 @@ endif " CursorLine none base02 s=base1 " verbatim " endverbatim -" CursorLineNr orange base02/none bold -" NonText orange none bold -" SpecialKey orange none reverse -" Title yellow none bold -" verbatim -" endverbatim -" CursorLineNr base01 base02/none bold -" NonText base02 none bold -" SpecialKey base02 none reverse -" Title base01 none bold -" verbatim -" else -" endverbatim -" CursorLineNr base0 base02/none bold -" NonText base00 none bold -" SpecialKey base00 base02 bold -" Title yellow none bold -" verbatim -" endif -" endverbatim -" verbatim -" endverbatim " DiffAdd green none reverse " DiffChange yellow none reverse " DiffDelete red none reverse @@ -807,10 +822,7 @@ endif " Directory blue none " EndOfBuffer none none " ErrorMsg red base3 reverse -" FoldColumn base0/fg base02/none -" Folded base0/fg base02/none bold s=base03 " IncSearch orange none standout -" LineNr base01/base01 base02/none " MatchParen base3 base02 bold " ModeMsg blue none " MoreMsg blue none diff --git a/colors/solarized8_dark_low.vim b/colors/solarized8_dark_low.vim index 038f806..5418e77 100644 --- a/colors/solarized8_dark_low.vim +++ b/colors/solarized8_dark_low.vim @@ -4,7 +4,7 @@ " Maintainer: Lifepillar " Website: https://github.com/lifepillar/vim-solarized8 " License: OSI approved MIT license -" Last Updated: Sun Oct 29 21:29:40 2017 +" Last Updated: Sun Nov 5 11:05:19 2017 if !(has('termguicolors') && &termguicolors) && !has('gui_running') \ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', 0) ? 16 : 256)) diff --git a/colors/solarized8_light.vim b/colors/solarized8_light.vim index 06a4b7e..94c3060 100644 --- a/colors/solarized8_light.vim +++ b/colors/solarized8_light.vim @@ -4,7 +4,7 @@ " Maintainer: Lifepillar " Website: https://github.com/lifepillar/vim-solarized8 " License: OSI approved MIT license -" Last Updated: Sun Oct 29 20:56:37 2017 +" Last Updated: Sun Nov 5 11:05:20 2017 if !(has('termguicolors') && &termguicolors) && !has('gui_running') \ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', 0) ? 16 : 256)) diff --git a/colors/solarized8_light_flat.vim b/colors/solarized8_light_flat.vim index 8a83789..cf805b9 100644 --- a/colors/solarized8_light_flat.vim +++ b/colors/solarized8_light_flat.vim @@ -4,7 +4,7 @@ " Maintainer: Lifepillar " Website: https://github.com/lifepillar/vim-solarized8 " License: OSI approved MIT license -" Last Updated: Sun Oct 29 21:17:23 2017 +" Last Updated: Sun Nov 5 11:05:22 2017 if !(has('termguicolors') && &termguicolors) && !has('gui_running') \ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', 0) ? 16 : 256)) diff --git a/colors/solarized8_light_high.vim b/colors/solarized8_light_high.vim index 2d7f8c1..f86016d 100644 --- a/colors/solarized8_light_high.vim +++ b/colors/solarized8_light_high.vim @@ -4,7 +4,7 @@ " Maintainer: Lifepillar " Website: https://github.com/lifepillar/vim-solarized8 " License: OSI approved MIT license -" Last Updated: Sun Oct 29 21:19:02 2017 +" Last Updated: Sun Nov 5 11:05:23 2017 if !(has('termguicolors') && &termguicolors) && !has('gui_running') \ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', 0) ? 16 : 256)) diff --git a/colors/solarized8_light_low.vim b/colors/solarized8_light_low.vim index a9e47cf..0e932d7 100644 --- a/colors/solarized8_light_low.vim +++ b/colors/solarized8_light_low.vim @@ -4,7 +4,7 @@ " Maintainer: Lifepillar " Website: https://github.com/lifepillar/vim-solarized8 " License: OSI approved MIT license -" Last Updated: Sun Oct 29 21:18:50 2017 +" Last Updated: Sun Nov 5 11:05:25 2017 if !(has('termguicolors') && &termguicolors) && !has('gui_running') \ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', 0) ? 16 : 256)) diff --git a/doc/solarized8_dark.txt b/doc/solarized8_dark.txt index d4242e4..b3a0e15 100644 --- a/doc/solarized8_dark.txt +++ b/doc/solarized8_dark.txt @@ -1,6 +1,6 @@ ============================================================================== -Solarized8 Dark colorscheme *solarized8_dark* +Solarized8 Dark colorscheme *solarized* *g:solarized_diffmode* Tweak the way diffs are displayed. Allowed values are `"normal"` (default), diff --git a/doc/solarized8_dark_flat.txt b/doc/solarized8_dark_flat.txt deleted file mode 100644 index 44e69be..0000000 --- a/doc/solarized8_dark_flat.txt +++ /dev/null @@ -1,46 +0,0 @@ - -============================================================================== -Solarized8 Dark Flat colorscheme *solarized8_dark_flat* - - *g:solarized_diffmode* -Tweak the way diffs are displayed. Allowed values are `"normal"` (default), -`"high"`, and `"low"`. -> - let g:solarized_diffmode = "normal" -< - *g:solarized_old_cursor_style* -Set to 1 if you want to use the original Solarized's cursor style. By default, -the cursor is blue. NOTE: your terminal may override the cursor's color. -> - let g:solarized_old_cursor_style = 0 -< - *g:solarized_statusline* -Set to `"low"` to reduce the contrast in the status line. -> - let g:solarized_statusline = "normal" -< - *g:solarized_term_italics* -Set to 0 if you want to disable italics in the terminal. -> - let g:solarized_term_italics = 1 -< - *g:solarized_termtrans* -Set to 1 if you want a transparent background. Takes effect only in the -terminal. -> - let g:solarized_termtrans = 0 -< - *g:solarized_visibility* -Tweak the visibility of a few elements. Allowed values are `"normal"` -(default), `"high"`, and `"low"`. -> - let g:solarized_visibility = "normal" -< -============================================================================== -Solarized8 Dark Flat other options *solarized8_dark_flat-other-options* - - *g:solarized_use16* -Set to 0 if you want to use 256 colors. -> - let g:solarized_use16 = 1 -< diff --git a/doc/solarized8_dark_high.txt b/doc/solarized8_dark_high.txt deleted file mode 100644 index 1a9873d..0000000 --- a/doc/solarized8_dark_high.txt +++ /dev/null @@ -1,47 +0,0 @@ - -============================================================================== -Solarized8 Dark High Contrast colorscheme *solarized8_dark_high* - - *g:solarized_diffmode* -Tweak the way diffs are displayed. Allowed values are `"normal"` (default), -`"high"`, and `"low"`. -> - let g:solarized_diffmode = "normal" -< - *g:solarized_old_cursor_style* -Set to 1 if you want to use the original Solarized's cursor style. By default, -the cursor is blue. NOTE: your terminal may override the cursor's color. -> - let g:solarized_old_cursor_style = 0 -< - *g:solarized_statusline* -Set to `"low"` to reduce the contrast in the status line. -> - let g:solarized_statusline = "normal" -< - *g:solarized_term_italics* -Set to 0 if you want to disable italics in the terminal. -> - let g:solarized_term_italics = 1 -< - *g:solarized_visibility* -Tweak the visibility of a few elements. Allowed values are `"normal"` -(default), `"high"`, and `"low"`. -> - let g:solarized_visibility = "normal" -< - -============================================================================== -Solarized8 Dark High Contrast other options *solarized8_dark_high-other-options* - - *g:solarized_transp_bg* -Set to 1 if you want a transparent background. Takes effect only in the -terminal. -> - let g:solarized_transp_bg = 0 -< - *g:solarized_use16* -Set to 0 if you want to use 256 colors. -> - let g:solarized_use16 = 1 -< diff --git a/doc/solarized8_dark_low.txt b/doc/solarized8_dark_low.txt deleted file mode 100644 index 70e88a7..0000000 --- a/doc/solarized8_dark_low.txt +++ /dev/null @@ -1,46 +0,0 @@ - -============================================================================== -Solarized8 Dark Low Contrast colorscheme *solarized8_dark_low* - - *g:solarized_diffmode* -Tweak the way diffs are displayed. Allowed values are `"normal"` (default), -`"high"`, and `"low"`. -> - let g:solarized_diffmode = "normal" -< - *g:solarized_old_cursor_style* -Set to 1 if you want to use the original Solarized's cursor style. By default, -the cursor is blue. NOTE: your terminal may override the cursor's color. -> - let g:solarized_old_cursor_style = 0 -< - *g:solarized_statusline* -Set to `"low"` to reduce the contrast in the status line. -> - let g:solarized_statusline = "normal" -< - *g:solarized_term_italics* -Set to 0 if you want to disable italics in the terminal. -> - let g:solarized_term_italics = 1 -< - *g:solarized_termtrans* -Set to 1 if you want a transparent background. Takes effect only in the -terminal. -> - let g:solarized_termtrans = 0 -< - *g:solarized_visibility* -Tweak the visibility of a few elements. Allowed values are `"normal"` -(default), `"high"`, and `"low"`. -> - let g:solarized_visibility = "normal" -< -============================================================================== -Solarized8 Dark Low Contrast other options *solarized8_dark_low-other-options* - - *g:solarized_use16* -Set to 0 if you want to use 256 colors. -> - let g:solarized_use16 = 1 -< diff --git a/doc/solarized8_light.txt b/doc/solarized8_light.txt deleted file mode 100644 index e9976b1..0000000 --- a/doc/solarized8_light.txt +++ /dev/null @@ -1,46 +0,0 @@ - -============================================================================== -Solarized8 Light colorscheme *solarized8_light* - - *g:solarized_diffmode* -Tweak the way diffs are displayed. Allowed values are `"normal"` (default), -`"high"`, and `"low"`. -> - let g:solarized_diffmode = "normal" -< - *g:solarized_old_cursor_style* -Set to 1 if you want to use the original Solarized's cursor style. By default, -the cursor is blue. NOTE: your terminal may override the cursor's color. -> - let g:solarized_old_cursor_style = 0 -< - *g:solarized_statusline* -Set to `"low"` to reduce the contrast in the status line. -> - let g:solarized_statusline = "normal" -< - *g:solarized_term_italics* -Set to 0 if you want to disable italics in the terminal. -> - let g:solarized_term_italics = 1 -< - *g:solarized_termtrans* -Set to 1 if you want a transparent background. Takes effect only in the -terminal. -> - let g:solarized_termtrans = 0 -< - *g:solarized_visibility* -Tweak the visibility of a few elements. Allowed values are `"normal"` -(default), `"high"`, and `"low"`. -> - let g:solarized_visibility = "normal" -< -============================================================================== -Solarized8 Light other options *solarized8_light-other-options* - - *g:solarized_use16* -Set to 0 if you want to use 256 colors. -> - let g:solarized_use16 = 1 -< diff --git a/doc/solarized8_light_flat.txt b/doc/solarized8_light_flat.txt deleted file mode 100644 index a59a96e..0000000 --- a/doc/solarized8_light_flat.txt +++ /dev/null @@ -1,46 +0,0 @@ - -============================================================================== -Solarized8 Light Flat colorscheme *solarized8_light_flat* - - *g:solarized_diffmode* -Tweak the way diffs are displayed. Allowed values are `"normal"` (default), -`"high"`, and `"low"`. -> - let g:solarized_diffmode = "normal" -< - *g:solarized_old_cursor_style* -Set to 1 if you want to use the original Solarized's cursor style. By default, -the cursor is blue. NOTE: your terminal may override the cursor's color. -> - let g:solarized_old_cursor_style = 0 -< - *g:solarized_statusline* -Set to `"low"` to reduce the contrast in the status line. -> - let g:solarized_statusline = "normal" -< - *g:solarized_term_italics* -Set to 0 if you want to disable italics in the terminal. -> - let g:solarized_term_italics = 1 -< - *g:solarized_termtrans* -Set to 1 if you want a transparent background. Takes effect only in the -terminal. -> - let g:solarized_termtrans = 0 -< - *g:solarized_visibility* -Tweak the visibility of a few elements. Allowed values are `"normal"` -(default), `"high"`, and `"low"`. -> - let g:solarized_visibility = "normal" -< -============================================================================== -Solarized8 Light Flat other options *solarized8_light_flat-other-options* - - *g:solarized_use16* -Set to 0 if you want to use 256 colors. -> - let g:solarized_use16 = 1 -< diff --git a/doc/solarized8_light_high.txt b/doc/solarized8_light_high.txt deleted file mode 100644 index 8b71353..0000000 --- a/doc/solarized8_light_high.txt +++ /dev/null @@ -1,46 +0,0 @@ - -============================================================================== -Solarized8 Light High Contrast colorscheme *solarized8_light_high* - - *g:solarized_diffmode* -Tweak the way diffs are displayed. Allowed values are `"normal"` (default), -`"high"`, and `"low"`. -> - let g:solarized_diffmode = "normal" -< - *g:solarized_old_cursor_style* -Set to 1 if you want to use the original Solarized's cursor style. By default, -the cursor is blue. NOTE: your terminal may override the cursor's color. -> - let g:solarized_old_cursor_style = 0 -< - *g:solarized_statusline* -Set to `"low"` to reduce the contrast in the status line. -> - let g:solarized_statusline = "normal" -< - *g:solarized_term_italics* -Set to 0 if you want to disable italics in the terminal. -> - let g:solarized_term_italics = 1 -< - *g:solarized_termtrans* -Set to 1 if you want a transparent background. Takes effect only in the -terminal. -> - let g:solarized_termtrans = 0 -< - *g:solarized_visibility* -Tweak the visibility of a few elements. Allowed values are `"normal"` -(default), `"high"`, and `"low"`. -> - let g:solarized_visibility = "normal" -< -============================================================================== -Solarized8 Light High Contrast other options *solarized8_light_high-other-options* - - *g:solarized_use16* -Set to 0 if you want to use 256 colors. -> - let g:solarized_use16 = 1 -< diff --git a/doc/solarized8_light_low.txt b/doc/solarized8_light_low.txt deleted file mode 100644 index 6a70234..0000000 --- a/doc/solarized8_light_low.txt +++ /dev/null @@ -1,46 +0,0 @@ - -============================================================================== -Solarized8 Light Low Contrast colorscheme *solarized8_light_low* - - *g:solarized_diffmode* -Tweak the way diffs are displayed. Allowed values are `"normal"` (default), -`"high"`, and `"low"`. -> - let g:solarized_diffmode = "normal" -< - *g:solarized_old_cursor_style* -Set to 1 if you want to use the original Solarized's cursor style. By default, -the cursor is blue. NOTE: your terminal may override the cursor's color. -> - let g:solarized_old_cursor_style = 0 -< - *g:solarized_statusline* -Set to `"low"` to reduce the contrast in the status line. -> - let g:solarized_statusline = "normal" -< - *g:solarized_term_italics* -Set to 0 if you want to disable italics in the terminal. -> - let g:solarized_term_italics = 1 -< - *g:solarized_termtrans* -Set to 1 if you want a transparent background. Takes effect only in the -terminal. -> - let g:solarized_termtrans = 0 -< - *g:solarized_visibility* -Tweak the visibility of a few elements. Allowed values are `"normal"` -(default), `"high"`, and `"low"`. -> - let g:solarized_visibility = "normal" -< -============================================================================== -Solarized8 Light Low Contrast other options *solarized8_light_low-other-options* - - *g:solarized_use16* -Set to 0 if you want to use 256 colors. -> - let g:solarized_use16 = 1 -< diff --git a/templates/make_colorschemes.vim b/templates/make_colorschemes.vim index e8f9e9f..917fdc2 100644 --- a/templates/make_colorschemes.vim +++ b/templates/make_colorschemes.vim @@ -9,6 +9,11 @@ let s:errors = 0 for s:template in glob(s:curdir . '/*.colortemplate', 1, 1) let s:template_name = fnamemodify(s:template, ':t:r') + if s:template_name == 'solarized8_dark' + let g:colortemplate_no_doc = 0 + else + let g:colortemplate_no_doc = 1 + endif execute "edit" s:template execute "Colortemplate!" fnameescape(s:parent) if g:colortemplate_exit_status != 0 diff --git a/templates/solarized8_dark.colortemplate b/templates/solarized8_dark.colortemplate index 3b96682..0a15c2b 100644 --- a/templates/solarized8_dark.colortemplate +++ b/templates/solarized8_dark.colortemplate @@ -34,7 +34,7 @@ License: OSI approved MIT license # Documentation {{{ documentation ============================================================================== -@fullname colorscheme *@shortname* +@fullname colorscheme *@optionprefix* *g:@optionprefix_diffmode* Tweak the way diffs are displayed. Allowed values are `"normal"` (default),