2018-01-26 08:59:25 +00:00
|
|
|
# micro
|
|
|
|
|
2023-11-15 04:25:25 +00:00
|
|
|
> A modern and intuitive terminal-based text editor.
|
2018-01-26 08:59:25 +00:00
|
|
|
> You can use your keyboard, but also your mouse to navigate and/or select text.
|
2019-06-04 10:25:09 +01:00
|
|
|
> More information: <https://micro-editor.github.io>.
|
2018-01-26 08:59:25 +00:00
|
|
|
|
|
|
|
- Open a file:
|
|
|
|
|
2022-12-04 09:12:49 +00:00
|
|
|
`micro {{path/to/file}}`
|
2018-01-26 08:59:25 +00:00
|
|
|
|
2021-11-17 14:46:04 +00:00
|
|
|
- Save a file:
|
|
|
|
|
2023-12-29 16:02:08 +00:00
|
|
|
`<Ctrl> + S`
|
2021-11-17 14:46:04 +00:00
|
|
|
|
2018-01-26 08:59:25 +00:00
|
|
|
- Cut the entire line:
|
|
|
|
|
2023-12-29 16:02:08 +00:00
|
|
|
`<Ctrl> + K`
|
2018-01-26 08:59:25 +00:00
|
|
|
|
|
|
|
- Search for a pattern in the file (press `Ctrl + N`/`Ctrl + P` to go to next/previous match):
|
|
|
|
|
2023-12-29 16:02:08 +00:00
|
|
|
`<Ctrl> + F "{{pattern}}" <Enter>`
|
2018-01-26 08:59:25 +00:00
|
|
|
|
|
|
|
- Execute a command:
|
|
|
|
|
2023-12-29 16:02:08 +00:00
|
|
|
`<Ctrl> + E {{command}} <Enter>`
|
2018-01-26 08:59:25 +00:00
|
|
|
|
|
|
|
- Perform a substitution in the whole file:
|
|
|
|
|
2023-12-29 16:02:08 +00:00
|
|
|
`<Ctrl> + E replaceall "{{pattern}}" "{{replacement}}" <Enter>`
|
2018-01-26 08:59:25 +00:00
|
|
|
|
|
|
|
- Quit:
|
|
|
|
|
2023-12-29 16:02:08 +00:00
|
|
|
`<Ctrl> + Q`
|