From 770ff5227fd53648bd1af209afc6abdbcade463e Mon Sep 17 00:00:00 2001 From: Damien Rajon <145502+pyrho@users.noreply.github.com> Date: Fri, 16 Oct 2020 14:38:03 +0200 Subject: [PATCH] fix(italics): fix typo Fixes #26 --- colors/embark.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/embark.vim b/colors/embark.vim index b6469e7..74cc72e 100644 --- a/colors/embark.vim +++ b/colors/embark.vim @@ -94,7 +94,7 @@ function! s:maybe_italic(style) if g:embark_terminal_italics == 1 " if there are other styles than italics concat if empty(a:style) - return s:maybe_italic("") + return "italic" else return a:style . ",italic" endif