From 330148b2f3fac994f4dcb22da423a8990f47f294 Mon Sep 17 00:00:00 2001 From: Lifepillar Date: Sun, 25 Mar 2018 12:44:52 +0200 Subject: [PATCH] Make VertSplit separator always visible. The separator makes it clear how a window has been split, which is useful, for example, when you rotate windows (). The separator may be suppressed by the user with 'fillchars'. See also: https://github.com/vim/vim/issues/2724. --- colors/solarized8.vim | 14 +++++++------- colors/solarized8_flat.vim | 14 +++++++------- colors/solarized8_high.vim | 14 +++++++------- colors/solarized8_low.vim | 14 +++++++------- templates/solarized8.colortemplate | 4 ++-- templates/solarized8_flat.colortemplate | 4 ++-- templates/solarized8_high.colortemplate | 4 ++-- templates/solarized8_low.colortemplate | 4 ++-- 8 files changed, 36 insertions(+), 36 deletions(-) diff --git a/colors/solarized8.vim b/colors/solarized8.vim index 9f225f0..95f8ecf 100644 --- a/colors/solarized8.vim +++ b/colors/solarized8.vim @@ -4,7 +4,7 @@ " Maintainer: Lifepillar " Website: https://github.com/lifepillar/vim-solarized8 " License: OSI approved MIT license -" Last Updated: Wed Nov 29 19:34:14 2017 +" Last Updated: Sun Mar 25 12:43:30 2018 if !(has('termguicolors') && &termguicolors) && !has('gui_running') \ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', 0) ? 16 : 256)) @@ -138,7 +138,7 @@ if !get(g:, 'solarized_use16', 0) endif hi! link StatusLineTerm StatusLine hi! link StatusLineTermNC StatusLineNC - hi VertSplit ctermfg=242 ctermbg=242 guifg=#586e75 guibg=#586e75 guisp=NONE cterm=NONE gui=NONE + hi VertSplit ctermfg=236 ctermbg=242 guifg=#073642 guibg=#586e75 guisp=NONE cterm=NONE gui=NONE hi Visual ctermfg=242 ctermbg=235 guifg=#586e75 guibg=#002b36 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi VisualNOS ctermfg=NONE ctermbg=236 guifg=NONE guibg=#073642 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi WarningMsg ctermfg=166 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold @@ -525,7 +525,7 @@ if !get(g:, 'solarized_use16', 0) endif hi! link StatusLineTerm StatusLine hi! link StatusLineTermNC StatusLineNC - hi VertSplit ctermfg=247 ctermbg=247 guifg=#93a1a1 guibg=#93a1a1 guisp=NONE cterm=NONE gui=NONE + hi VertSplit ctermfg=242 ctermbg=247 guifg=#586e75 guibg=#93a1a1 guisp=NONE cterm=NONE gui=NONE hi Visual ctermfg=247 ctermbg=230 guifg=#93a1a1 guibg=#fdf6e3 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi VisualNOS ctermfg=NONE ctermbg=254 guifg=NONE guibg=#eee8d5 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi WarningMsg ctermfg=166 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold @@ -884,7 +884,7 @@ if &background ==# 'dark' endif hi! link StatusLineTerm StatusLine hi! link StatusLineTermNC StatusLineNC - hi VertSplit ctermfg=10 ctermbg=10 guifg=#586e75 guibg=#586e75 guisp=NONE cterm=NONE gui=NONE + hi VertSplit ctermfg=0 ctermbg=10 guifg=#073642 guibg=#586e75 guisp=NONE cterm=NONE gui=NONE hi Visual ctermfg=10 ctermbg=8 guifg=#586e75 guibg=#002b36 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi VisualNOS ctermfg=NONE ctermbg=0 guifg=NONE guibg=#073642 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi WarningMsg ctermfg=9 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold @@ -1253,7 +1253,7 @@ else endif hi! link StatusLineTerm StatusLine hi! link StatusLineTermNC StatusLineNC -hi VertSplit ctermfg=14 ctermbg=14 guifg=#93a1a1 guibg=#93a1a1 guisp=NONE cterm=NONE gui=NONE +hi VertSplit ctermfg=10 ctermbg=14 guifg=#586e75 guibg=#93a1a1 guisp=NONE cterm=NONE gui=NONE hi Visual ctermfg=14 ctermbg=15 guifg=#93a1a1 guibg=#fdf6e3 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi VisualNOS ctermfg=NONE ctermbg=7 guifg=NONE guibg=#eee8d5 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi WarningMsg ctermfg=9 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold @@ -1605,7 +1605,7 @@ finish " TabLineSel base0 base02 reverse " StatusLineTerm -> StatusLine " StatusLineTermNC -> StatusLineNC -" VertSplit base01 base01 +" VertSplit base02 base01 " Visual base01 base03 reverse " VisualNOS none base02 reverse " WarningMsg orange none bold @@ -1930,7 +1930,7 @@ finish " TabLineSel base1 base02 reverse " StatusLineTerm -> StatusLine " StatusLineTermNC -> StatusLineNC -" VertSplit base01 base01 +" VertSplit base1 base01 " Visual base01 base03 reverse " VisualNOS none base02 reverse " WarningMsg orange none bold diff --git a/colors/solarized8_flat.vim b/colors/solarized8_flat.vim index 6fe1def..1334f2b 100644 --- a/colors/solarized8_flat.vim +++ b/colors/solarized8_flat.vim @@ -4,7 +4,7 @@ " Maintainer: Lifepillar " Website: https://github.com/lifepillar/vim-solarized8 " License: OSI approved MIT license -" Last Updated: Wed Nov 29 19:34:18 2017 +" Last Updated: Sun Mar 25 12:43:34 2018 if !(has('termguicolors') && &termguicolors) && !has('gui_running') \ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', 0) ? 16 : 256)) @@ -137,7 +137,7 @@ if !get(g:, 'solarized_use16', 0) hi CommandMode ctermfg=236 ctermbg=162 guifg=#073642 guibg=#d33682 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse hi! link StatusLineTerm StatusLine hi! link StatusLineTermNC StatusLineNC - hi VertSplit ctermfg=236 ctermbg=236 guifg=#073642 guibg=#073642 guisp=NONE cterm=NONE gui=NONE + hi VertSplit ctermfg=242 ctermbg=236 guifg=#586e75 guibg=#073642 guisp=NONE cterm=NONE gui=NONE hi Visual ctermfg=242 ctermbg=235 guifg=#586e75 guibg=#002b36 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi VisualNOS ctermfg=NONE ctermbg=236 guifg=NONE guibg=#073642 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi WarningMsg ctermfg=166 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold @@ -518,7 +518,7 @@ if !get(g:, 'solarized_use16', 0) hi CommandMode ctermfg=254 ctermbg=162 guifg=#eee8d5 guibg=#d33682 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse hi! link StatusLineTerm StatusLine hi! link StatusLineTermNC StatusLineNC - hi VertSplit ctermfg=254 ctermbg=254 guifg=#eee8d5 guibg=#eee8d5 guisp=NONE cterm=NONE gui=NONE + hi VertSplit ctermfg=247 ctermbg=254 guifg=#93a1a1 guibg=#eee8d5 guisp=NONE cterm=NONE gui=NONE hi Visual ctermfg=247 ctermbg=230 guifg=#93a1a1 guibg=#fdf6e3 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi VisualNOS ctermfg=NONE ctermbg=254 guifg=NONE guibg=#eee8d5 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi WarningMsg ctermfg=166 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold @@ -871,7 +871,7 @@ if &background ==# 'dark' hi CommandMode ctermfg=0 ctermbg=5 guifg=#073642 guibg=#d33682 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse hi! link StatusLineTerm StatusLine hi! link StatusLineTermNC StatusLineNC - hi VertSplit ctermfg=0 ctermbg=0 guifg=#073642 guibg=#073642 guisp=NONE cterm=NONE gui=NONE + hi VertSplit ctermfg=10 ctermbg=0 guifg=#586e75 guibg=#073642 guisp=NONE cterm=NONE gui=NONE hi Visual ctermfg=10 ctermbg=8 guifg=#586e75 guibg=#002b36 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi VisualNOS ctermfg=NONE ctermbg=0 guifg=NONE guibg=#073642 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi WarningMsg ctermfg=9 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold @@ -1234,7 +1234,7 @@ hi VisualMode ctermfg=7 ctermbg=5 guifg=#eee8d5 guibg=#d33682 guisp=NONE cterm=N hi CommandMode ctermfg=7 ctermbg=5 guifg=#eee8d5 guibg=#d33682 guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse hi! link StatusLineTerm StatusLine hi! link StatusLineTermNC StatusLineNC -hi VertSplit ctermfg=7 ctermbg=7 guifg=#eee8d5 guibg=#eee8d5 guisp=NONE cterm=NONE gui=NONE +hi VertSplit ctermfg=14 ctermbg=7 guifg=#93a1a1 guibg=#eee8d5 guisp=NONE cterm=NONE gui=NONE hi Visual ctermfg=14 ctermbg=15 guifg=#93a1a1 guibg=#fdf6e3 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi VisualNOS ctermfg=NONE ctermbg=7 guifg=NONE guibg=#eee8d5 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi WarningMsg ctermfg=9 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold @@ -1585,7 +1585,7 @@ finish " CommandMode base02 magenta bold,reverse " StatusLineTerm -> StatusLine " StatusLineTermNC -> StatusLineNC -" VertSplit base02 base02 +" VertSplit base01 base02 " Visual base01 base03 reverse " VisualNOS none base02 reverse " WarningMsg orange none bold @@ -1909,7 +1909,7 @@ finish " CommandMode base02 magenta bold,reverse " StatusLineTerm -> StatusLine " StatusLineTermNC -> StatusLineNC -" VertSplit base02 base02 +" VertSplit base01 base02 " Visual base01 base03 reverse " VisualNOS none base02 reverse " WarningMsg orange none bold diff --git a/colors/solarized8_high.vim b/colors/solarized8_high.vim index 255c4ef..df824fe 100644 --- a/colors/solarized8_high.vim +++ b/colors/solarized8_high.vim @@ -4,7 +4,7 @@ " Maintainer: Lifepillar " Website: https://github.com/lifepillar/vim-solarized8 " License: OSI approved MIT license -" Last Updated: Wed Nov 29 19:34:21 2017 +" Last Updated: Sun Mar 25 12:43:37 2018 if !(has('termguicolors') && &termguicolors) && !has('gui_running') \ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', 0) ? 16 : 256)) @@ -138,7 +138,7 @@ if !get(g:, 'solarized_use16', 0) endif hi! link StatusLineTerm StatusLine hi! link StatusLineTermNC StatusLineNC - hi VertSplit ctermfg=243 ctermbg=243 guifg=#657b83 guibg=#657b83 guisp=NONE cterm=NONE gui=NONE + hi VertSplit ctermfg=236 ctermbg=243 guifg=#073642 guibg=#657b83 guisp=NONE cterm=NONE gui=NONE hi Visual ctermfg=243 ctermbg=235 guifg=#657b83 guibg=#002b36 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi VisualNOS ctermfg=NONE ctermbg=236 guifg=NONE guibg=#073642 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi WarningMsg ctermfg=166 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold @@ -525,7 +525,7 @@ if !get(g:, 'solarized_use16', 0) endif hi! link StatusLineTerm StatusLine hi! link StatusLineTermNC StatusLineNC - hi VertSplit ctermfg=247 ctermbg=247 guifg=#93a1a1 guibg=#93a1a1 guisp=NONE cterm=NONE gui=NONE + hi VertSplit ctermfg=236 ctermbg=247 guifg=#073642 guibg=#93a1a1 guisp=NONE cterm=NONE gui=NONE hi Visual ctermfg=247 ctermbg=230 guifg=#93a1a1 guibg=#fdf6e3 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi VisualNOS ctermfg=NONE ctermbg=254 guifg=NONE guibg=#eee8d5 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi WarningMsg ctermfg=166 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold @@ -884,7 +884,7 @@ if &background ==# 'dark' endif hi! link StatusLineTerm StatusLine hi! link StatusLineTermNC StatusLineNC - hi VertSplit ctermfg=11 ctermbg=11 guifg=#657b83 guibg=#657b83 guisp=NONE cterm=NONE gui=NONE + hi VertSplit ctermfg=0 ctermbg=11 guifg=#073642 guibg=#657b83 guisp=NONE cterm=NONE gui=NONE hi Visual ctermfg=11 ctermbg=8 guifg=#657b83 guibg=#002b36 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi VisualNOS ctermfg=NONE ctermbg=0 guifg=NONE guibg=#073642 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi WarningMsg ctermfg=9 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold @@ -1253,7 +1253,7 @@ else endif hi! link StatusLineTerm StatusLine hi! link StatusLineTermNC StatusLineNC -hi VertSplit ctermfg=14 ctermbg=14 guifg=#93a1a1 guibg=#93a1a1 guisp=NONE cterm=NONE gui=NONE +hi VertSplit ctermfg=0 ctermbg=14 guifg=#073642 guibg=#93a1a1 guisp=NONE cterm=NONE gui=NONE hi Visual ctermfg=14 ctermbg=15 guifg=#93a1a1 guibg=#fdf6e3 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi VisualNOS ctermfg=NONE ctermbg=7 guifg=NONE guibg=#eee8d5 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi WarningMsg ctermfg=9 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold @@ -1605,7 +1605,7 @@ finish " TabLineSel base0 base02 reverse " StatusLineTerm -> StatusLine " StatusLineTermNC -> StatusLineNC -" VertSplit base01 base01 +" VertSplit base02 base01 " Visual base01 base03 reverse " VisualNOS none base02 reverse " WarningMsg orange none bold @@ -1930,7 +1930,7 @@ finish " TabLineSel base1 base02 reverse " StatusLineTerm -> StatusLine " StatusLineTermNC -> StatusLineNC -" VertSplit base01 base01 +" VertSplit base1 base01 " Visual base01 base03 reverse " VisualNOS none base02 reverse " WarningMsg orange none bold diff --git a/colors/solarized8_low.vim b/colors/solarized8_low.vim index 8af3b92..c3ce218 100644 --- a/colors/solarized8_low.vim +++ b/colors/solarized8_low.vim @@ -4,7 +4,7 @@ " Maintainer: Lifepillar " Website: https://github.com/lifepillar/vim-solarized8 " License: OSI approved MIT license -" Last Updated: Wed Nov 29 19:34:24 2017 +" Last Updated: Sun Mar 25 12:43:41 2018 if !(has('termguicolors') && &termguicolors) && !has('gui_running') \ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', 0) ? 16 : 256)) @@ -138,7 +138,7 @@ if !get(g:, 'solarized_use16', 0) endif hi! link StatusLineTerm StatusLine hi! link StatusLineTermNC StatusLineNC - hi VertSplit ctermfg=242 ctermbg=242 guifg=#586e75 guibg=#586e75 guisp=NONE cterm=NONE gui=NONE + hi VertSplit ctermfg=247 ctermbg=242 guifg=#93a1a1 guibg=#586e75 guisp=NONE cterm=NONE gui=NONE hi Visual ctermfg=242 ctermbg=235 guifg=#586e75 guibg=#002b36 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi VisualNOS ctermfg=NONE ctermbg=236 guifg=NONE guibg=#073642 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi WarningMsg ctermfg=166 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold @@ -525,7 +525,7 @@ if !get(g:, 'solarized_use16', 0) endif hi! link StatusLineTerm StatusLine hi! link StatusLineTermNC StatusLineNC - hi VertSplit ctermfg=247 ctermbg=247 guifg=#93a1a1 guibg=#93a1a1 guisp=NONE cterm=NONE gui=NONE + hi VertSplit ctermfg=242 ctermbg=247 guifg=#586e75 guibg=#93a1a1 guisp=NONE cterm=NONE gui=NONE hi Visual ctermfg=247 ctermbg=230 guifg=#93a1a1 guibg=#fdf6e3 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi VisualNOS ctermfg=NONE ctermbg=254 guifg=NONE guibg=#eee8d5 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi WarningMsg ctermfg=166 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold @@ -884,7 +884,7 @@ if &background ==# 'dark' endif hi! link StatusLineTerm StatusLine hi! link StatusLineTermNC StatusLineNC - hi VertSplit ctermfg=10 ctermbg=10 guifg=#586e75 guibg=#586e75 guisp=NONE cterm=NONE gui=NONE + hi VertSplit ctermfg=14 ctermbg=10 guifg=#93a1a1 guibg=#586e75 guisp=NONE cterm=NONE gui=NONE hi Visual ctermfg=10 ctermbg=8 guifg=#586e75 guibg=#002b36 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi VisualNOS ctermfg=NONE ctermbg=0 guifg=NONE guibg=#073642 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi WarningMsg ctermfg=9 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold @@ -1253,7 +1253,7 @@ else endif hi! link StatusLineTerm StatusLine hi! link StatusLineTermNC StatusLineNC -hi VertSplit ctermfg=14 ctermbg=14 guifg=#93a1a1 guibg=#93a1a1 guisp=NONE cterm=NONE gui=NONE +hi VertSplit ctermfg=10 ctermbg=14 guifg=#586e75 guibg=#93a1a1 guisp=NONE cterm=NONE gui=NONE hi Visual ctermfg=14 ctermbg=15 guifg=#93a1a1 guibg=#fdf6e3 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi VisualNOS ctermfg=NONE ctermbg=7 guifg=NONE guibg=#eee8d5 guisp=NONE cterm=NONE,reverse gui=NONE,reverse hi WarningMsg ctermfg=9 ctermbg=NONE guifg=#cb4b16 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold @@ -1605,7 +1605,7 @@ finish " TabLineSel base0 base02 reverse " StatusLineTerm -> StatusLine " StatusLineTermNC -> StatusLineNC -" VertSplit base01 base01 +" VertSplit base1 base01 " Visual base01 base03 reverse " VisualNOS none base02 reverse " WarningMsg orange none bold @@ -1930,7 +1930,7 @@ finish " TabLineSel base1 base02 reverse " StatusLineTerm -> StatusLine " StatusLineTermNC -> StatusLineNC -" VertSplit base01 base01 +" VertSplit base1 base01 " Visual base01 base03 reverse " VisualNOS none base02 reverse " WarningMsg orange none bold diff --git a/templates/solarized8.colortemplate b/templates/solarized8.colortemplate index 52d866d..7ff0762 100644 --- a/templates/solarized8.colortemplate +++ b/templates/solarized8.colortemplate @@ -193,7 +193,7 @@ endif endverbatim StatusLineTerm -> StatusLine StatusLineTermNC -> StatusLineNC -VertSplit base01 base01 +VertSplit base02 base01 Visual base01 base03 reverse VisualNOS none base02 reverse WarningMsg orange none bold @@ -445,7 +445,7 @@ endif endverbatim StatusLineTerm -> StatusLine StatusLineTermNC -> StatusLineNC -VertSplit base01 base01 +VertSplit base1 base01 Visual base01 base03 reverse VisualNOS none base02 reverse WarningMsg orange none bold diff --git a/templates/solarized8_flat.colortemplate b/templates/solarized8_flat.colortemplate index 9fc7c8e..1e8059a 100644 --- a/templates/solarized8_flat.colortemplate +++ b/templates/solarized8_flat.colortemplate @@ -188,7 +188,7 @@ VisualMode base02 magenta bold,reverse CommandMode base02 magenta bold,reverse StatusLineTerm -> StatusLine StatusLineTermNC -> StatusLineNC -VertSplit base02 base02 +VertSplit base01 base02 Visual base01 base03 reverse VisualNOS none base02 reverse WarningMsg orange none bold @@ -430,7 +430,7 @@ CommandMode base02 magenta bold,reverse StatusLineTerm -> StatusLine StatusLineTermNC -> StatusLineNC -VertSplit base02 base02 +VertSplit base01 base02 Visual base01 base03 reverse VisualNOS none base02 reverse WarningMsg orange none bold diff --git a/templates/solarized8_high.colortemplate b/templates/solarized8_high.colortemplate index f642eb6..fa4fca6 100644 --- a/templates/solarized8_high.colortemplate +++ b/templates/solarized8_high.colortemplate @@ -189,7 +189,7 @@ endif endverbatim StatusLineTerm -> StatusLine StatusLineTermNC -> StatusLineNC -VertSplit base01 base01 +VertSplit base02 base01 Visual base01 base03 reverse VisualNOS none base02 reverse WarningMsg orange none bold @@ -441,7 +441,7 @@ endif endverbatim StatusLineTerm -> StatusLine StatusLineTermNC -> StatusLineNC -VertSplit base01 base01 +VertSplit base1 base01 Visual base01 base03 reverse VisualNOS none base02 reverse WarningMsg orange none bold diff --git a/templates/solarized8_low.colortemplate b/templates/solarized8_low.colortemplate index 296f917..8e56805 100644 --- a/templates/solarized8_low.colortemplate +++ b/templates/solarized8_low.colortemplate @@ -189,7 +189,7 @@ endif endverbatim StatusLineTerm -> StatusLine StatusLineTermNC -> StatusLineNC -VertSplit base01 base01 +VertSplit base1 base01 Visual base01 base03 reverse VisualNOS none base02 reverse WarningMsg orange none bold @@ -440,7 +440,7 @@ endif endverbatim StatusLineTerm -> StatusLine StatusLineTermNC -> StatusLineNC -VertSplit base01 base01 +VertSplit base1 base01 Visual base01 base03 reverse VisualNOS none base02 reverse WarningMsg orange none bold