summaryrefslogtreecommitdiffstats
path: root/src/verb_conf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/verb_conf.rs')
-rw-r--r--src/verb_conf.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/verb_conf.rs b/src/verb_conf.rs
index 41fe733..5cc97e2 100644
--- a/src/verb_conf.rs
+++ b/src/verb_conf.rs
@@ -62,8 +62,7 @@ pub fn parse_key(raw: &str) -> Result<KeyEvent, ConfError> {
("ctrl", Some(minor)) | ("^", Some(minor)) => KeyEvent::Ctrl(
minor.as_str().chars().next().unwrap().to_ascii_lowercase()
),
- // other possible mappings are disabled as they would break
- // basic behaviors of broot
+ // other possible mappings are disabled as they would break basic behaviors of broot
_ => bad_key(raw)?
}),
None => bad_key(raw)