From c60ebcc3131ce2042c49e0b94e95303e622362ba Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Mon, 29 May 2017 21:11:42 +0200 Subject: [PATCH] g:startify_relative_path: :.:~ -> :~:. References #284. --- autoload/startify.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index aafba91..caca368 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -14,7 +14,7 @@ let s:nowait = v:version >= 704 || (v:version == 703 && has('patch1261') let s:padding_left = repeat(' ', get(g:, 'startify_padding_left', 3)) let s:numfiles = get(g:, 'startify_files_number', 10) let s:show_special = get(g:, 'startify_enable_special', 1) -let s:relative_path = get(g:, 'startify_relative_path') ? ':.:~' : ':p:~' +let s:relative_path = get(g:, 'startify_relative_path') ? ':~:.' : ':p:~' let s:session_dir = resolve(expand(get(g:, 'startify_session_dir', \ has('win32') ? '$HOME\vimfiles\session' : '~/.vim/session'))) let s:tf = exists('g:startify_transformations')