2020-07-22 10:11:22 +02:00
|
|
|
scriptencoding utf-8
|
|
|
|
|
|
|
|
function! airline#formatter#short_path#format(val) abort
|
|
|
|
if get(g:, 'airline_stl_path_style', 'default') ==# 'short'
|
2020-11-05 15:44:29 +01:00
|
|
|
return '%{pathshorten(expand("'.a:val.'"))}'
|
2020-07-22 10:11:22 +02:00
|
|
|
endif
|
|
|
|
return a:val
|
|
|
|
endfunction
|