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

🐛 Remove <c-p> mapping in startify buffer

close #486
This commit is contained in:
wsdjeg 2017-05-06 19:38:25 +08:00
parent 8b7e85ab2d
commit 7f0eb46d9d

View File

@ -47,17 +47,11 @@ let g:startify_skiplist = [
\ escape(fnamemodify(resolve($VIMRUNTIME), ':p'), '\') .'doc',
\ 'bundle/.*/doc',
\ ]
fu! <SID>startify_mapping()
if getcwd() == $VIM || getcwd() == expand('~')
nnoremap <silent><buffer> <c-p> :<c-u>CtrlP ~\DotFiles<cr>
endif
call s:update_logo()
endf
augroup startify_map
au!
autocmd FileType startify nnoremap <buffer><F2> <Nop>
autocmd FileType startify nnoremap <buffer> <F2> <Nop>
if !exists('g:startify_custom_header')
autocmd FileType startify call <SID>startify_mapping()
autocmd FileType startify call <SID>update_logo()
endif
autocmd FileType startify setl scrolloff=0 nowrap
augroup END