Skip to content

Commit

Permalink
Fix the issue where italic doesn't work in tmux session
Browse files Browse the repository at this point in the history
  • Loading branch information
t4ku committed Dec 9, 2021
1 parent 141c775 commit e5e6b4f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion vim/colors/onehalfdark.vim
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ call s:h("WildMenu", s:fg, "", "")
" See :help hl-Whitespace and :help hl-SpecialKey
call s:h("Whitespace", s:non_text, "", "")
call s:h("NonText", s:non_text, "", "")
call s:h("Comment", s:comment_fg, "", "italic")
" https://github.com/sonph/onehalf/pull/101
"call s:h("Comment", s:comment_fg, "", "italic")
call s:h("Comment", s:comment_fg, "", "")
call s:h("Constant", s:cyan, "", "")
call s:h("String", s:green, "", "")
call s:h("Character", s:green, "", "")
Expand Down
4 changes: 3 additions & 1 deletion vim/colors/onehalflight.vim
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ call s:h("WildMenu", s:fg, "", "")
" See :help hl-Whitespace and :help hl-SpecialKey
call s:h("Whitespace", s:non_text, "", "")
call s:h("NonText", s:non_text, "", "")
call s:h("Comment", s:comment_fg, "", "italic")
" https://github.com/sonph/onehalf/pull/101
"call s:h("Comment", s:comment_fg, "", "italic")
call s:h("Comment", s:comment_fg, "", "")
call s:h("Constant", s:cyan, "", "")
call s:h("String", s:green, "", "")
call s:h("Character", s:green, "", "")
Expand Down

0 comments on commit e5e6b4f

Please sign in to comment.