diff options
author | Gokul Soumya | 2021-06-22 05:06:29 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-22 05:27:51 +0000 |
commit | 753ed4cbc518774bb0331ed032a833a01f952ad1 (patch) | |
tree | 9e395f75ac6f7af68247f00d21891eef65dc6784 /helix-term/src | |
parent | 892c80771a4cbad79fcec89c0af8735c81c336e8 (diff) |
Add documentation for surround
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/commands.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 6cf99927..59aa25ee 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -3324,7 +3324,7 @@ fn surround(cx: &mut Context) { cx.count = count; match ch { 'm' => match_brackets(cx), - 'a' => surround_add(cx), + 's' => surround_add(cx), 'r' => surround_replace(cx), 'd' => { surround_delete(cx); |