From f2fc11844b234479d37bef37faa7ceb2aade788b Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Wed, 7 Oct 2020 16:13:53 +0200 Subject: [PATCH] Use ternary operator --- autoload/startify.vim | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index c0d0026..eca0eef 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -559,11 +559,7 @@ function! s:display_by_path(path_prefix, path_format, use_env) abort \ [a:path_prefix, a:path_format, a:use_env]) let entry_format = "s:leftpad .'['. index .']'. repeat(' ', (3 - strlen(index))) ." - if exists('*StartifyEntryFormat') - let entry_format .= StartifyEntryFormat() - else - let entry_format .= 'entry_path' - endif + let entry_format .= exists('*StartifyEntryFormat') ? StartifyEntryFormat() : 'entry_path' if !empty(oldfiles) if exists('s:last_message') @@ -741,13 +737,9 @@ function! s:show_bookmarks() abort if exists('s:last_message') call s:print_section_header() endif - + let entry_format = "s:leftpad .'['. index .']'. repeat(' ', (3 - strlen(index))) ." - if exists('*StartifyEntryFormat') - let entry_format .= StartifyEntryFormat() - else - let entry_format .= 'entry_path' - endif + let entry_format .= exists('*StartifyEntryFormat') ? StartifyEntryFormat() : 'entry_path' for bookmark in g:startify_bookmarks if type(bookmark) == type({}) @@ -757,7 +749,7 @@ function! s:show_bookmarks() abort endif let absolute_path = path - + let entry_path = '' if !empty(g:startify_transformations) let entry_path = s:transform(fnamemodify(resolve(expand(path)), ':p'))