altercation / solarized

precision color scheme for multiple applications (terminal, vim, etc.) with both dark/light modes
http://ethanschoonover.com/solarized
MIT License
15.82k stars 3.52k forks source link

MacVim snapshot 66 CursorLineNr #237

Open beaumartinez opened 11 years ago

beaumartinez commented 11 years ago

In MacVim snapshot 66, CursorLineNr is "bright".

I've made a pull request against the MacVim repo fixing it, but as its only a mirror, I'll attach its patch as an issue here as well—

From 25ac872484293fed399439968ac224b57e22e5ad Mon Sep 17 00:00:00 2001
From: Beau <beau@beaumartinez.com>
Date: Tue, 8 Jan 2013 12:41:33 +0000
Subject: [PATCH] Make CursorLineNr like LineNr

In MacVim snapshot 66, CursorLineNr is "bright". This makes it like
LineNr, much more pale

---
 colors/solarized.vim | 1 +
 1 file changed, 1 insertion(+)

diff --git a/colors/solarized.vim b/colors/solarized.vim
index 70f5223..c78bd21 100644
--- a/colors/solarized.vim
+++ b/colors/solarized.vim
@@ -669,6 +669,7 @@ exe "hi! TabLineFill"    .s:fmt_undr   .s:fg_base0  .s:bg_base02  .s:sp_base0
 exe "hi! TabLineSel"     .s:fmt_undr   .s:fg_base01 .s:bg_base2   .s:sp_base0  .s:fmt_revbbu
 exe "hi! CursorColumn"   .s:fmt_none   .s:fg_none   .s:bg_base02
 exe "hi! CursorLine"     .s:fmt_uopt   .s:fg_none   .s:bg_base02  .s:sp_base1
+hi! link CursorLineNr LineNr
 exe "hi! ColorColumn"    .s:fmt_none   .s:fg_none   .s:bg_base02
 exe "hi! Cursor"         .s:fmt_none   .s:fg_base03 .s:bg_base0
 hi! link lCursor Cursor
-- 
1.8.0