tmux shortcuts

This commit is contained in:
Alexander Popov 2023-02-06 22:22:32 +03:00
parent 253fa601fa
commit aef5b0a6be
1 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,50 @@
---
title: "🪟 Горячие клавиши tmux"
date: 2023-02-06T22:19:36+03:00
draft: false
tags: [tips, linux]
---
**Создать сесссию**
```sh
tmux new -s session_name
```
**Показать список сессий**
```sh
tmux list-sessions
tmux ls
```
**Присоединиться к сессии**
```sh
tmux attach-session -t number
```
**Разделить панель**
```text
Ctrl + b " # по вертикали
Ctrl + b % # по горизонтали
```
**Перемещение по панелям**
```text
Ctrl + b [СТРЕЛКИ]
```
**Переименовать сессию**
```text
Ctrl + b $
```
**Закрыть сессию**
```text
Ctrl + b d
```