vim-tmux-runner icon indicating copy to clipboard operation
vim-tmux-runner copied to clipboard

VtrInitialCommand strips all whitespace

Open zmeadows opened this issue 9 years ago • 0 comments

I'm trying to add command line arguments to VtrInitialCommand like so:

autocmd Filetype julia let g:VtrInitialCommand = "julia -p 4"

but when I run VtrOpenRunner, I get the following:

-bash: julia-p4: command not found

I've tried the following and they produce the same result:

let g:VtrInitialCommand = "julia\ -p\ 4"
let g:VtrInitialCommand = "julia\<Space> -p\<Space> 4"

I assume this isn't intended, as the example listed in the doc (cd ..) exhibits the same problem.

zmeadows avatar Jun 07 '15 14:06 zmeadows