mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 04:17:43 +03:00
Use markdown instead of text for help files
This commit is contained in:
parent
0e037802c2
commit
233b10f7fc
62 changed files with 10 additions and 8 deletions
21
runtime/help/static-commands/replace.md
Normal file
21
runtime/help/static-commands/replace.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
`replace`
|
||||
|
||||
Waits for another keypress, then replaces all
|
||||
selected characters with the pressed key.
|
||||
|
||||
--- Examples ---
|
||||
|
||||
'a' is replaced with 'e'.
|
||||
┌──────────────────────────┐ e ┌──────────────────────────┐
|
||||
│ Do this, th[a]n do that. │ --> │ Do this, th[e]n do that. │
|
||||
└──────────────────────────┘ └──────────────────────────┘
|
||||
|
||||
All instances of ',' are replaced with '.'.
|
||||
┌──────────────────────────────┐ . ┌──────────────────────────────┐
|
||||
│ This sentence continues(,,,] │ --> │ This sentence continues(...] │
|
||||
└──────────────────────────────┘ └──────────────────────────────┘
|
||||
|
||||
All instances of 'a' are replaced with 'e'.
|
||||
┌──────────────────────────────────┐ e ┌──────────────────────────────────┐
|
||||
│ 1, th[a]n 2, th[a]n 3, th[a]n 4. │ --> │ 1, th[e]n 2, th[e]n 3, th[e]n 4. │
|
||||
└──────────────────────────────────┘ └──────────────────────────────────┘
|
Loading…
Add table
Add a link
Reference in a new issue