summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJeff Zhao <jeff.no.zhao@gmail.com>2023-06-30 12:14:27 -0400
committerJeff Zhao <jeff.no.zhao@gmail.com>2023-06-30 12:14:27 -0400
commit63ea9d797c8aca7f7ed951105df84a3a03721441 (patch)
tree4aee60d6c3ed3702e542ea386d09dd6577bdf8a4 /src
parent6cb151ea4b58d006cfc52f54d52be05110bd5b90 (diff)
add file preview documentation
Diffstat (limited to 'src')
-rw-r--r--src/key_command/impl_from_str.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/key_command/impl_from_str.rs b/src/key_command/impl_from_str.rs
index b88af8c..d684bf9 100644
--- a/src/key_command/impl_from_str.rs
+++ b/src/key_command/impl_from_str.rs
@@ -248,7 +248,6 @@ impl std::str::FromStr for Command {
} else if command == CMD_DELETE_FILES {
let (mut permanently, mut background) = (false, false);
for arg in arg.split_whitespace() {
- eprintln!("arg: {:?}", arg);
match arg {
"--background=true" => background = true,
"--background=false" => background = false,