We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
synchronize-panes
@dracula-synchronize-panes-refresh-rate
@dracula-refresh-rate
1 parent 1b69e8a commit bdecfc6Copy full SHA for bdecfc6
scripts/synchronize_panes.sh
@@ -17,6 +17,12 @@ main()
17
# storing the refresh rate in the variable RATE, default is 5
18
RATE=$(get_tmux_option "@dracula-refresh-rate" 5)
19
20
+ # Use the @dracula-synchronize-panes-refresh-rate plugin variable to override it.
21
+ RATE_OVERRIDE=$(get_tmux_option "@dracula-synchronize-panes-refresh-rate" "")
22
+ if [[ -n "$RATE_OVERRIDE" ]]; then
23
+ RATE="$RATE_OVERRIDE"
24
+ fi
25
+
26
synchronize_panes_auto_hide=$(get_tmux_option "@dracula-synchronize-panes-auto-hide" "false")
27
synchronize_panes_status=$(get_synchronize_panes_status)
28
synchronize_panes_label=$label
0 commit comments