1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/micro.md
Lena 0fddee2272
pages/*: reword descriptions to comply with the style guide (#11507)
* pages/*: reword descriptions to comply with the style guide

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-15 09:55:25 +05:30

616 B

micro

A modern and intuitive terminal-based text editor. You can use your keyboard, but also your mouse to navigate and/or select text. More information: https://micro-editor.github.io.

  • Open a file:

micro {{path/to/file}}

  • Save a file:

Ctrl + S

  • Cut the entire line:

Ctrl + K

  • Search for a pattern in the file (press Ctrl + N/Ctrl + P to go to next/previous match):

Ctrl + F "{{pattern}}" <Enter>

  • Execute a command:

Ctrl + E {{command}} <Enter>

  • Perform a substitution in the whole file:

Ctrl + E replaceall "{{pattern}}" "{{replacement}}" <Enter>

  • Quit:

Ctrl + Q