diff --git a/autoload/startify.vim b/autoload/startify.vim index dc2078b..d6f3c44 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -100,7 +100,7 @@ function! startify#insane_in_the_membrane() abort nnoremap t :call set_mark('T') nnoremap v :call set_mark('V') nnoremap :call open_buffers(expand('')) - nnoremap <2-LeftMouse> :execute 'normal!' matchstr(getline('.'), '\w\+') + nnoremap <2-LeftMouse> :execute 'normal' matchstr(getline('.'), '\w\+') nnoremap q :call close() if exists('g:startify_empty_buffer_key') @@ -450,7 +450,7 @@ function! s:open_buffers(cword) abort endif " no markers found; open a single buffer else - execute 'normal!' a:cword + execute 'normal' a:cword endif endfunction