Closed bruno- closed 10 years ago
This core of the issue falls back how tmux send-keys
command works.
It can be reproduced like this:
tmux send-keys foo bar
# output (bad): "foobar"
When arguments are quoted:
tmux send-keys 'foo bar'
# output (good): "foo bar"
In short, arguments need to be quoted.
Thanks to David Melech for reporting this issue.
Here are the steps to reproduce the issue:
prefix + Ctrl-o
vim -- ~/somefile
(notice the space in~/some file
is gone