diff --git a/plugin/startify.vim b/plugin/startify.vim index 8bec79b..e563b25 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -52,7 +52,7 @@ function! s:insane_in_the_membrane() abort continue endif call append('$', ' ['. cnt .']'. repeat(' ', 3 - strlen(string(cnt))) . fname) - execute 'nnoremap '. cnt .' :edit '. startify#escape(fname) .'' + execute 'nnoremap '. cnt .' :edit '. startify#escape(fname) .' lcd %:h' let cnt += 1 if cnt == numfiles break @@ -80,7 +80,7 @@ function! s:insane_in_the_membrane() abort endif let cnt += 1 call append('$', ' ['. cnt .']'. repeat(' ', 3 - strlen(string(cnt))) . fname) - execute 'nnoremap '. cnt .' :edit '. startify#escape(fname) .'' + execute 'nnoremap '. cnt .' :edit '. startify#escape(fname) .' lcd %:h' endfor endif