tmux shortcuts
This commit is contained in:
parent
253fa601fa
commit
aef5b0a6be
50
content/posts/2023/tmux-shortcuts.md
Normal file
50
content/posts/2023/tmux-shortcuts.md
Normal 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
|
||||
```
|
Loading…
Reference in New Issue
Block a user