We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
When I do this: :TxSetRunCmd
:TxSetRunCmd
and then set the command to the following: echo debug_1: $(date '+%b %d'); echo debug_2: $(date '+%b %d')
echo debug_1: $(date '+%b %d'); echo debug_2: $(date '+%b %d')
Then I execute the command through: :TxRun
:TxRun
I get the following output in my tmux session:
tmux
debug_1: /home/xenohawk/dev/c_studies/src/study_01.cb 27 debug_2: Jan 27
It seems like %b is not escaped properly on the first encounter? My g:tmuxify_run looks like this:
%b
g:tmuxify_run
{ 'c': 'echo debug_1: $(date ''+%b %d''); echo debug_2: $(date ''+%b %d'')', 'sh': 'echo "{sh} default hook is: %"', 'cpp': 'echo "{cpp} default hook is: %"', 'python': 'echo "{python} default hook is: %"' }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
When I do this:
:TxSetRunCmd
and then set the command to the following:
echo debug_1: $(date '+%b %d'); echo debug_2: $(date '+%b %d')
Then I execute the command through:
:TxRun
I get the following output in my
tmux
session:It seems like
%b
is not escaped properly on the first encounter? Myg:tmuxify_run
looks like this:The text was updated successfully, but these errors were encountered: