From a0343f009025c0457edc92ab83b5a8ee5626d114 Mon Sep 17 00:00:00 2001 From: Dexter Gaon-Shatford <93449583+dexgs@users.noreply.github.com> Date: Sun, 6 Feb 2022 02:18:01 -0500 Subject: [PATCH] Use tagbar_iconchars not present in emoji (#807) --- plugin/tagbar.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/tagbar.vim b/plugin/tagbar.vim index 7243965..35c657c 100644 --- a/plugin/tagbar.vim +++ b/plugin/tagbar.vim @@ -135,7 +135,7 @@ call s:setup_options() if !exists('g:tagbar_iconchars') if has('multi_byte') && has('unix') && &encoding ==# 'utf-8' && \ (!exists('+termencoding') || empty(&termencoding) || &termencoding ==# 'utf-8') - let g:tagbar_iconchars = ['▶', '▼'] + let g:tagbar_iconchars = ['▸', '▾'] else let g:tagbar_iconchars = ['+', '-'] endif