Skip to content

Commit a3ac616

Browse files
codekilnclaude
andcommitted
πŸ“ docs: add TIL on LangSmith Fleet rebranding and tmux Q page
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent ba5047d commit a3ac616

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

β€Žjournals/2026_06_16.mdβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@
33
- [[tmux/Keyshort/Session/Rename Current Session]]
44
- [[tmux/Session/Q/What is the shortcut to choose a session from a list?]]
55
- [[tmux/Session/Q/What is the shortcut to rename the current session?]]
6+
- [[tmux/Session/Q/What is the idiomatic way to create a new tmux session from inside an existing session?]]
7+
- [[TIL]]
8+
- [[LangSmith]] Agent Builder has been rebranded to [[LangSmith/Fleet]] - https://docs.langchain.com/langsmith/fleet/index
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
logseq-entity:: [[Logseq/Entity/Question]]
2+
3+
- # What is the idiomatic way to create a new [[tmux]] session from inside an existing session?
4+
- ## [[AI Answer]]
5+
- [[AI/Response]]
6+
- **Short answer:** Use the tmux command prompt: `Prefix + :`, type `new-session` (or the alias `new`), press Enter.
7+
- [[Answer/Official]] from [tmux manual β€” new-session](https://man7.org/linux/man-pages/man1/tmux.1.html)
8+
- The two idiomatic paths:
9+
- 1. **Command prompt (in-tmux):** `Prefix :new-session` β€” opens a new session and switches to it. Optionally append `-s <name>` to give it a name: `Prefix :new-session -s work`.
10+
- 2. **Shell (from any pane):** `tmux new-session -d -s <name>` creates a detached session without switching; omit `-d` to switch immediately.
11+
- The command prompt form is idiomatic because it stays inside tmux and avoids spawning a new terminal. The `:new` short form works identically.
12+
- To stay in the current session while creating the new one (and switch later with `Prefix s`), add `-d`: `Prefix :new-session -d -s <name>`.

0 commit comments

Comments
Β (0)