aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorGokul Soumya2021-06-22 05:06:29 +0000
committerBlaž Hrastnik2021-06-22 05:27:51 +0000
commit753ed4cbc518774bb0331ed032a833a01f952ad1 (patch)
tree9e395f75ac6f7af68247f00d21891eef65dc6784 /helix-term
parent892c80771a4cbad79fcec89c0af8735c81c336e8 (diff)
Add documentation for surround
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/commands.rs2
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);