fix: remove extra double quotes for fzf prompt (#339)

This commit is contained in:
231tr0n 2024-01-14 23:02:39 +05:30 committed by GitHub
parent e2e3bc2df4
commit ce9f397d04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,7 @@ function! aerial#fzf() abort
call fzf#run(fzf#wrap({
\ 'source': l:labels,
\ 'sink': funcref('aerial#goto_symbol'),
\ 'options': ['--prompt="Document symbols: "', '--layout=reverse-list'],
\ 'options': ['--prompt=Document symbols: ', '--layout=reverse-list'],
\ }))
endfunction