mirror of https://github.com/helix-editor/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1.6 KiB
Plaintext
22 lines
1.6 KiB
Plaintext
3 years ago
|
`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. │
|
||
|
└──────────────────────────────────┘ └──────────────────────────────────┘
|