diff --git a/autoload/startify.vim b/autoload/startify.vim index d23c561..77f41ef 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -134,20 +134,10 @@ function! startify#insane_in_the_membrane() abort setlocal nomodifiable nomodified - nnoremap e :enew - nnoremap i :enew startinsert - nnoremap :enew startinsert - nnoremap b :call set_mark('B') - nnoremap s :call set_mark('S') - nnoremap t :call set_mark('T') - nnoremap v :call set_mark('V') - nnoremap :call startify#open_buffers() - nnoremap <2-LeftMouse> :execute 'normal' matchstr(getline('.'), '\w\+') - nnoremap q :call close() - + call s:set_mappings() call cursor(s:firstline + (s:show_special ? 2 : 0), 5) - autocmd startify CursorMoved call s:set_cursor() + set filetype=startify silent! doautocmd User Startified endfunction @@ -556,6 +546,35 @@ function! s:set_cursor() abort call cursor(s:newline, 5) endfunction +" Function: s:set_mappings {{{1 +function! s:set_mappings() abort + nnoremap e :enew + nnoremap i :enew startinsert + nnoremap :enew startinsert + nnoremap b :call set_mark('B') + nnoremap s :call set_mark('S') + nnoremap t :call set_mark('T') + nnoremap v :call set_mark('V') + nnoremap :call startify#open_buffers() + nnoremap <2-LeftMouse> :execute 'normal' matchstr(getline('.'), '\w\+') + nnoremap q :call close() + + " Prevent 'nnoremap j gj' mappings, since they would break navigation. + " (One can't leave the [x].) + if !empty(mapcheck('h', 'n')) + nnoremap h h + endif + if !empty(mapcheck('j', 'n')) + nnoremap j j + endif + if !empty(mapcheck('k', 'n')) + nnoremap k k + endif + if !empty(mapcheck('l', 'n')) + nnoremap l l + endif +endfunction + " Function: s:set_mark {{{1 " " Markers are saved in the s:marked dict using the follow format: