From e52768a3d7bc286a668329a0020448e26357ec22 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Fri, 9 Aug 2013 15:08:56 +0200 Subject: [PATCH] Change into dir also for bookmarked dirs References #32. --- autoload/startify.vim | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 8dc9131..ca07da5 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -9,13 +9,15 @@ endif let g:autoloaded_startify = 1 " Init: values {{{1 -let s:cmd = (get(g:, 'startify_change_to_dir', 1) ? ' lcd %:h' : '') . '' let s:numfiles = get(g:, 'startify_files_number', 10) let s:show_special = get(g:, 'startify_enable_special', 1) let s:restore_position = get(g:, 'startify_restore_position') -let s:session_dir = resolve(expand(get(g:, 'startify_session_dir', + +let s:session_dir = resolve(expand(get(g:, 'startify_session_dir', \ has('win32') ? '$HOME\vimfiles\session' : '~/.vim/session'))) +let s:chdir = (get(g:, 'startify_change_to_dir', 1) ? ' if isdirectory(expand("%")) lcd % else lcd %:h endif' : '') .'' + " Function: #insane_in_the_membrane {{{1 function! startify#insane_in_the_membrane() abort if !empty(v:servername) && exists('g:startify_skiplist_server') @@ -244,7 +246,7 @@ function! s:show_files(cnt) abort let index = s:get_index_as_string(cnt) call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname) - execute 'nnoremap ' index ':edit' fnameescape(fname) s:cmd + execute 'nnoremap ' index ':edit' fnameescape(fname) s:chdir let cnt += 1 let num -= 1 @@ -289,7 +291,7 @@ function! s:show_bookmarks(cnt) abort let index = s:get_index_as_string(cnt) call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname) - execute 'nnoremap '. index .' :edit '. fnameescape(fname) . s:cmd + execute 'nnoremap '. index .' :edit '. fnameescape(fname) . s:chdir endfor endif @@ -393,6 +395,7 @@ function! s:open_buffers(cword) abort else execute 'edit' path endif + call s:chdir() endfor " remove markers for next instance of :Startify @@ -405,6 +408,17 @@ function! s:open_buffers(cword) abort endif endfunction +" Function: s:chdir {{{1 +function! s:chdir() abort + if get(g:, 'startify_change_to_dir', 1) + if isdirectory(expand('%')) + lcd % + else + lcd %:h + endif + endif +endfunction + " Function: s:close {{{1 function! s:close() abort if len(filter(range(0, bufnr('$')), 'buflisted(v:val)'))