We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3139fa8 commit 3357626Copy full SHA for 3357626
2 files changed
bin/proxy
@@ -1,5 +1,5 @@
1
#!/usr/bin/env bash
2
set -eo pipefail
3
# Use `tmux display` to ensure we see the latest environments.
4
-IFS=':' read -r _ caller < <(tmux display -p '#{__tmux_popup_caller}')
+IFS=':' read -r _ caller < <(tmux display-message -p '#{__tmux_popup_caller}')
5
TMUX=${caller:-$TMUX} exec tmux "$@"
src/toggle.sh
@@ -17,6 +17,10 @@ usage() {
17
18
toggle.sh [OPTIONS] [POPUP_OPTIONS] [SHELL_COMMAND]...
19
20
+ Note that every argument will be expanded as a tmux format string
21
+ before it is parsed. To avoid unexpected expansion of certain format
22
+ strings, escape them with `##{<format string>}`.
23
+
24
Options:
25
26
--name <name> Popup name [Default: "$DEFAULT_NAME"]
0 commit comments