From 97d78f68298aee75fbf94f0c3c44a661561cd0f5 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Wed, 5 Feb 2014 20:29:09 -0500 Subject: [PATCH] Allow quotes in :Piggieback argument Closes #134. --- plugin/fireplace.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/fireplace.vim b/plugin/fireplace.vim index 10daa69..9527c9f 100644 --- a/plugin/fireplace.vim +++ b/plugin/fireplace.vim @@ -325,7 +325,7 @@ endfunction augroup fireplace_connect autocmd! autocmd FileType clojure command! -bar -complete=customlist,s:connect_complete -nargs=* Connect :FireplaceConnect - autocmd FileType clojure command! -bar -complete=customlist,fireplace#eval_complete -bang -nargs=* Piggieback :call s:piggieback(, 0) + autocmd FileType clojure command! -complete=customlist,fireplace#eval_complete -bang -nargs=* Piggieback :call s:piggieback(, 0) augroup END " }}}1