1
0
mirror of https://github.com/gryf/tagbar.git synced 2026-02-01 21:45:49 +01:00

Allow using other arrows on windows

This commit is contained in:
Jan Larres
2011-03-28 23:02:29 +13:00
parent 4b7aca60a7
commit 276fa842dc
2 changed files with 33 additions and 12 deletions

View File

@@ -81,10 +81,20 @@ if !exists('g:tagbar_foldlevel')
let g:tagbar_foldlevel = 99
endif
if has('multi_byte') && &encoding == 'utf-8' &&
\ (empty(&termencoding) || &termencoding == 'utf-8')
let s:icon_closed = '▶'
let s:icon_open = '▼'
if !exists('g:tagbar_usearrows')
let g:tagbar_usearrows = 0
endif
if has('multi_byte')
if has('unix') && &encoding == 'utf-8' &&
\ (empty(&termencoding) || &termencoding == 'utf-8')
let s:icon_closed = '▶'
let s:icon_open = '▼'
elseif (has('win32') || has('win64')) && g:tagbar_usearrows
let s:icon_closed = '▷'
let s:icon_open = '◢'
endif
else
let s:icon_closed = '+'
let s:icon_open = '-'