Micro Cheat Sheet: Unterschied zwischen den Versionen
Aus Matts Wiki
Matt (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Matt (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
This article holds my cheat notes for the [https://micro-editor.github.io/ Micro] terminal based text editor. | This article holds my cheat notes for the [https://micro-editor.github.io/ Micro] terminal based text editor. | ||
=== | Every shortcut starting with <code>></code> symbolizes, that command bar was opened first with <code>Ctrl + e</code> which leads to the command bar showing up in the bottom line of the editor represented by <code>></code> . | ||
Ctrl + | |||
== Navigation == | |||
{| class="wikitable" | |||
!Shortcut | |||
!Action | |||
|- | |||
|Ctrl + e | |||
|Open command bar | |||
|- | |||
|Ctrl + w | |||
|Switch between splits | |||
|} | |||
== Tabs == | |||
{| class="wikitable" | |||
!Shortcut | |||
!Action | |||
|- | |||
|Ctrl + t | |||
|Open new tab | |||
|- | |||
|Alt + , | |||
|Previous tab | |||
|- | |||
|Alt + . | |||
|Next tab | |||
|} | |||
== Handling Windows == | |||
{| class="wikitable" | |||
!Shortcut | |||
!Action | |||
|- | |||
|> vsplit | |||
|Split | |||
|} | |||
== Run Terminal Commands == | |||
Ctrl + b and type terminal command for single commands. | Ctrl + b and type terminal command for single commands. | ||
<code>> term</code> for a full terminal window. Do a hsplit or vsplit first to have them both side by side | |||
== Configuration == | |||
=== Soft Word Wrap === | |||
<code>> set softwrap on</code> | |||
=== Cliboard === | === Cliboard === | ||
<code>> set clipboard terminal</code> - I don't know what this does nor what the default value is | |||
[[Kategorie:Linux]] | [[Kategorie:Linux]] | ||
[[Kategorie:Terminal]] | [[Kategorie:Terminal]] | ||
Version vom 29. September 2025, 19:20 Uhr
This article holds my cheat notes for the Micro terminal based text editor.
Every shortcut starting with > symbolizes, that command bar was opened first with Ctrl + e which leads to the command bar showing up in the bottom line of the editor represented by > .
| Shortcut | Action |
|---|---|
| Ctrl + e | Open command bar |
| Ctrl + w | Switch between splits |
Tabs
| Shortcut | Action |
|---|---|
| Ctrl + t | Open new tab |
| Alt + , | Previous tab |
| Alt + . | Next tab |
Handling Windows
| Shortcut | Action |
|---|---|
| > vsplit | Split |
Run Terminal Commands
Ctrl + b and type terminal command for single commands.
> term for a full terminal window. Do a hsplit or vsplit first to have them both side by side
Configuration
Soft Word Wrap
> set softwrap on
Cliboard
> set clipboard terminal - I don't know what this does nor what the default value is
