Files
personal_website/content/notes/Tmux.md

38 lines
915 B
Markdown

---
tags:
- General
title : Tmux
description : Notes
date : 2025-01-01
author : Nikola Petrov
draft : true
---
https://www.geeksforgeeks.org/tmux-in-linux/
|Key|Description|
|---|---|
|Ctrl+B D|It will detach from the current session.|
|Ctrl+B %|It will split the window into two panes horizontally.|
|Ctrl+B "|It will split the window into two panes vertically.|
|Ctrl+B Arrow Key (Left, Right, Up, Down)|It helps in moving between panes.|
|Ctrl+B N or P|It helps in switching the next or previous window.|
|Ctrl+B C|It will create a new window.|
|Ctrl+B X|It will close the pane|
|Ctrl+B 0 (1,2...)|It will move to the particular window by number.|
|Ctrl+B :|Enter the command line to type commands.|
|Ctrl+B ?|It will display all key bindings.|
|Ctrl+B W|It opens a panel to navigate across windows in multiple sessions.|
```
tmux ls
->
0: 1 windows (created Wed Mar 5 23:03:01 2025)
```
```
tmux a
```