1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 10:40:03 +08:00

Fix leader (#2347)

This commit is contained in:
Wang Shidong 2018-12-15 20:33:43 +08:00 committed by GitHub
parent d70ad4c0b7
commit c2569c36e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -625,7 +625,7 @@ if get(g:, 'mapleader', '\') == ' '
call SpaceVim#mapping#guide#register_prefix_descriptions(' ',
\ 'g:_spacevim_mappings')
else
call SpaceVim#mapping#guide#register_prefix_descriptions('\',
call SpaceVim#mapping#guide#register_prefix_descriptions(get(g:, 'mapleader', '\'),
\ 'g:_spacevim_mappings')
call SpaceVim#plugins#help#regist_root({'<leader>' : g:_spacevim_mappings})
call SpaceVim#mapping#guide#register_prefix_descriptions(' ',

View File

@ -8,7 +8,7 @@
if exists('g:GuiLoaded')
if empty(g:spacevim_guifont)
exe 'Guifont! DejaVu Sans Mono for Powerline:h11:cANSI:qDRAFT'
exe 'Guifont! SauceCodePro Nerd Font Mono:h11:cANSI:qDRAFT'
else
exe 'Guifont! ' . g:spacevim_guifont
endif