Use ternary operator

This commit is contained in:
Marco Hinz 2020-10-07 16:13:53 +02:00
parent 3724615f4a
commit f2fc11844b
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -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')
@ -743,11 +739,7 @@ function! s:show_bookmarks() abort
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({})