From b35bf399f6aeab546ae791e791a2995bb2e6b962 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98ystein=20Walle?= Date: Sat, 27 Apr 2013 13:53:13 +0200 Subject: [PATCH] change working directory when opening a file It was discussed whether this should be optional or not and it was agreed to just make this default behaviour for now. --- plugin/startify.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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