Skip to content

Commit e5e6b4f

Browse files
committed
Fix the issue where italic doesn't work in tmux session
- sonph#101
1 parent 141c775 commit e5e6b4f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

vim/colors/onehalfdark.vim

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ call s:h("WildMenu", s:fg, "", "")
123123
" See :help hl-Whitespace and :help hl-SpecialKey
124124
call s:h("Whitespace", s:non_text, "", "")
125125
call s:h("NonText", s:non_text, "", "")
126-
call s:h("Comment", s:comment_fg, "", "italic")
126+
" https://github.com/sonph/onehalf/pull/101
127+
"call s:h("Comment", s:comment_fg, "", "italic")
128+
call s:h("Comment", s:comment_fg, "", "")
127129
call s:h("Constant", s:cyan, "", "")
128130
call s:h("String", s:green, "", "")
129131
call s:h("Character", s:green, "", "")

vim/colors/onehalflight.vim

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ call s:h("WildMenu", s:fg, "", "")
123123
" See :help hl-Whitespace and :help hl-SpecialKey
124124
call s:h("Whitespace", s:non_text, "", "")
125125
call s:h("NonText", s:non_text, "", "")
126-
call s:h("Comment", s:comment_fg, "", "italic")
126+
" https://github.com/sonph/onehalf/pull/101
127+
"call s:h("Comment", s:comment_fg, "", "italic")
128+
call s:h("Comment", s:comment_fg, "", "")
127129
call s:h("Constant", s:cyan, "", "")
128130
call s:h("String", s:green, "", "")
129131
call s:h("Character", s:green, "", "")

0 commit comments

Comments
 (0)