-
Notifications
You must be signed in to change notification settings - Fork 435
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
Use set -ga @plugin
instead of manually parsing the conf?!
#77
Comments
Oh, that's possible with |
This also break my set up -- I don't have a |
https://github.com/tmux-plugins/tpm/blob/master/docs/tpm_not_working.md and #57. In summary: cos for when it works this syntax is nicer. And as for $ tmux set -g @plugin 'foo'; tmux show-option -g @plugin; tmux set -ga @plugin 'foo2'; tmux show-option -g @plugin;
@plugin "foo"
@plugin "foo2" |
As @ashb said, tmux does not accept the I've asked about this on a mailing list a while ago and tmux maintainers were not interested in adding this one 😞 |
Btw yes, if tmux had this feature, we would not have to custom-parse |
BTW tmux added this feature a long time ago tmux/tmux#533 and the command returns it correctly now:
Anyway we getting this behind a flag? maybe My tmux script is splitted and is really difficult to get plugins working in different files |
@augustobmoura See #85 for follow-up on this issue. |
I've wondered why
set -g @plugin
is used, which then needs to get parsed manually from the config (tpm/scripts/helpers/plugin_functions.sh
Lines 40 to 47 in 620f06c
set -ga @plugin
(orset -ga @plugins
) so that the@plugin
/@plugins
var could be used as-is then.(I am not using tpm myself, but came here via christoomey/vim-tmux-navigator#123).
The text was updated successfully, but these errors were encountered: