summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-06-21 00:04:41 +0300
committerPaul Buetow <paul@buetow.org>2024-06-21 00:04:41 +0300
commitb2358deb00ed9c3ff2ec498ad8ec2e937bc8f5c9 (patch)
treeed91d62c3d2992eb28c82a1edfa788a9700437bf
parent2bebd33343132fcd99853a528d864e2c2877fce2 (diff)
fix
-rw-r--r--gemfeed/DRAFT-terminal-multiplexing-with-tmux.gmi4
1 files changed, 3 insertions, 1 deletions
diff --git a/gemfeed/DRAFT-terminal-multiplexing-with-tmux.gmi b/gemfeed/DRAFT-terminal-multiplexing-with-tmux.gmi
index 3052056b..1bb2efef 100644
--- a/gemfeed/DRAFT-terminal-multiplexing-with-tmux.gmi
+++ b/gemfeed/DRAFT-terminal-multiplexing-with-tmux.gmi
@@ -304,7 +304,9 @@ The last remaining lines in my configuration file are:
```
bind-key p setw synchronize-panes off
bind-key P setw synchronize-panes on
-bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded"
+bind-key r source-file ~/.config/tmux/tmux.conf \; display-message "tmux.conf reloaded"
```
We discussed `synchronized-panes` earlier. I use it all the time in clustered SSH sessions. When enabled, all panes (all remote SSH sessions) receive the same keystrokes. It is very useful when you want to run the same commands on many servers at once, such as navigating to a common directory, restarting a couple of services at once, or running tools like `htop` to quickly monitor system resources.
+
+The last one simply reloads my Tmux configuratin on the fly.