Make all mappings silent

Closes #123.
This commit is contained in:
Daniel Hahler 2014-11-22 09:39:16 +01:00 committed by Marco Hinz
parent 590755234b
commit 697d008f1b

View file

@ -143,8 +143,8 @@ function! startify#insane_in_the_membrane() abort
nnoremap <buffer><silent> s :call <sid>set_mark('S')<cr>
nnoremap <buffer><silent> t :call <sid>set_mark('T')<cr>
nnoremap <buffer><silent> v :call <sid>set_mark('V')<cr>
nnoremap <buffer> <cr> :call <sid>open_buffers(expand('<cword>'))<cr>
nnoremap <buffer> <2-LeftMouse> :execute 'normal' matchstr(getline('.'), '\w\+')<cr>
nnoremap <buffer><silent> <cr> :call <sid>open_buffers(expand('<cword>'))<cr>
nnoremap <buffer><silent> <2-LeftMouse> :execute 'normal' matchstr(getline('.'), '\w\+')<cr>
nnoremap <buffer><silent> q :call <sid>close()<cr>
call cursor(s:firstline + (s:show_special ? 2 : 0), 5)