Skip to content
Snippets Groups Projects
Unverified Commit 5c2b96bd authored by Junegunn Choi's avatar Junegunn Choi
Browse files

[vim] Fix error with multi-line $FZF_DEFAULT_COMMAND

Close #620
parent c36413fd
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,9 @@ try
endtry
if !has_key(dict, 'source') && !empty($FZF_DEFAULT_COMMAND)
let dict.source = $FZF_DEFAULT_COMMAND
let temps.source = tempname()
call writefile(split($FZF_DEFAULT_COMMAND, "\n"), temps.source)
let dict.source = (empty($SHELL) ? 'sh' : $SHELL) . ' ' . s:shellesc(temps.source)
endif
if has_key(dict, 'source')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment