Fix LanguageClient with fzf

ada
blallo 2022-09-27 18:05:47 +02:00
parent a7b2eb2d40
commit 5129092c6f
Signed by: blallo
GPG Key ID: 0CBE577C9B72DC3F
1 changed files with 9 additions and 1 deletions

View File

@ -1 +1,9 @@
let g:LanguageClient_fzfOptions = fzf#vim#with_preview().options
let g:fzf_action = {
\ 'ctrl-t': 'tab split',
\ 'ctrl-x': 'split',
\ 'ctrl-v': 'vsplit',
\ }
let opts = fzf#vim#with_preview().options + [
\ '--expect='.join(keys(fzf_action), ','),
\ ]
let g:LanguageClient_fzfOptions = opts