Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r--helix-term/src/keymap.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs
index 2385d460..d8227b50 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -601,11 +601,7 @@ mod tests {
MappableCommand::select_all,
MappableCommand::Typable {
name: "pipe".to_string(),
- args: vec!{
- "sed".to_string(),
- "-E".to_string(),
- "'s/\\s+$//g'".to_string()
- },
+ args: "sed -E 's/\\s+$//g'".to_string(),
doc: "".to_string(),
},
})