Use tagbar_iconchars not present in emoji (#807)

This commit is contained in:
Dexter Gaon-Shatford 2022-02-06 02:18:01 -05:00 committed by GitHub
parent 88242397b4
commit a0343f0090
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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