Skip to content
New issue

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

Not working with TMUX 3.0a #3

Open
alejandroclaro opened this issue Jan 17, 2024 · 2 comments
Open

Not working with TMUX 3.0a #3

alejandroclaro opened this issue Jan 17, 2024 · 2 comments
Labels
bug Something isn't working

Comments

@alejandroclaro
Copy link

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:

        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.

@alexwforsythe alexwforsythe added the bug Something isn't working label Jan 17, 2024
@patrick-motard
Copy link

I am on Tmux 3.4 and this plugin works for me.

Tested on OSX Sonoma 14.4

@alejandroclaro
Copy link
Author

alejandroclaro commented Apr 15, 2024

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants