g:startify_relative_path: :.:~ -> :~:.

References #284.
This commit is contained in:
Marco Hinz 2017-05-29 21:11:42 +02:00
parent 1b128ab685
commit c60ebcc313
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -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')