mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-03 21:43:35 +00:00
39 lines
560 B
Plaintext
39 lines
560 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# mtm
|
|
|
|
> Minimal terminal multiplexer.
|
|
> See also: `tmux`, `screen`.
|
|
> More information: <https://manned.org/mtm>.
|
|
|
|
- Start the program with default command chord (`<Ctrl g>`):
|
|
|
|
`mtm`
|
|
|
|
- Use `<Ctrl q>` as the command chord:
|
|
|
|
`mtm -c {{q}}`
|
|
|
|
- Split and stack horizontally:
|
|
|
|
`<Ctrl g><h>`
|
|
|
|
- Split and stack vertically:
|
|
|
|
`<Ctrl g><v>`
|
|
|
|
- View scrollback buffer:
|
|
|
|
`<Ctrl g><PageUp>`
|
|
|
|
- Switch terminals:
|
|
|
|
`<Ctrl g><ArrowKeys>`
|
|
|
|
- Close current terminal:
|
|
|
|
`<Ctrl g><w>`
|