1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-02 22:58:01 +00:00

Add Toggle Between Two Common Sessions as a tmux til

This commit is contained in:
jbranchaud
2020-12-23 22:06:05 -06:00
parent c52a6e4d68
commit 2d0bdf871d
2 changed files with 19 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ pairing with smart people at Hashrocket.
For a steady stream of TILs, [sign up for my newsletter](https://tinyletter.com/jbranchaud).
_981 TILs and counting..._
_982 TILs and counting..._
---
@@ -886,6 +886,7 @@ _981 TILs and counting..._
- [Swap Split Panes](tmux/swap-split-panes.md)
- [Switch To A Specific Session And Window](tmux/switch-to-a-specific-session-and-window.md)
- [tmux in your tmux](tmux/tmux-in-your-tmux.md)
- [Toggle Between Two Common Sessions](tmux/toggle-between-two-common-sessions.md)
### Unix

View File

@@ -0,0 +1,17 @@
# Toggle Between Two Common Sessions
With certain projects, such as projects that involve separate frontend and
backend codebases, I use a separate tmux session for each. This means that for
certain tasks and features I find myself flipping back and forth between them
constantly.
This can get tedious with an approach like `<prefix> s` where you then have to
find and select the other session from the list.
A more efficient alternative is `<prefix> L` -- this takes you to the last
session. So, if you are in the `backend` session and had previously been in the
`frontend` session, then hitting `<prefix> L` will immediately place you in
`frontend`. Hitting that exact same binding a second time will take you right
back to `backend`.
See `man tmux` for more details.