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
The documentation states this should work with tmux >= 3.0. However, it does not work with tmux 3.0 because an unsupported argument in "setenv".
I was able to make it work by changing the line 135 in plugin/build.py from:
plugin/build.py
return -h 'setenv {} "{}"'.format(self.name, self.value)
to
return 'setenv {} "{}"'.format(self.name, self.value)
The option -hwas added to tmux in version 3.2. So, I suggest updating the documentation or removing the use of this option.
-h
The text was updated successfully, but these errors were encountered:
I am on Tmux 3.4 and this plugin works for me.
Tested on OSX Sonoma 14.4
Sorry, something went wrong.
I am on Tmux 3.4 and this plugin works for me. Tested on OSX Sonoma 14.4
The issue is not with versions greater than 3.0. the issue is as a simple as an error in the documentation stating an incorrect minimum version.
I consider better option to keep compatibility with version 3.0, since LTS versions of major distro are shipped with this version.
No branches or pull requests
The documentation states this should work with tmux >= 3.0. However, it does not work with tmux 3.0 because an unsupported argument in "setenv".
I was able to make it work by changing the line 135 in
plugin/build.py
from:to
The option
-h
was added to tmux in version 3.2. So, I suggest updating the documentation or removing the use of this option.The text was updated successfully, but these errors were encountered: