summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorJeff Zhao <jeff.no.zhao@gmail.com>2023-03-30 22:43:19 -0400
committerJeff Zhao <jeff.no.zhao@gmail.com>2023-03-30 22:43:19 -0400
commit6e968f8aab4cff7f001c10c3fcbe59030dda6ed0 (patch)
tree59d78bc5d767200f7a41fdfe4fdc78c1cb83977b /config
parent3119d70fc85a454bec265ef0c8bf715f1092f9b3 (diff)
fix --foreground error message
Diffstat (limited to 'config')
-rw-r--r--config/keymap.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/keymap.toml b/config/keymap.toml
index eb4a894..4a9763d 100644
--- a/config/keymap.toml
+++ b/config/keymap.toml
@@ -72,8 +72,8 @@ keymap = [
{ keys = [ "p", "l" ], command = "symlink_files --relative=false" },
{ keys = [ "p", "L" ], command = "symlink_files --relative=true" },
- { keys = [ "delete" ], command = "delete_files --foreground=true" },
- { keys = [ "d", "D" ], command = "delete_files --foreground=true" },
+ { keys = [ "delete" ], command = "delete_files" },
+ { keys = [ "d", "D" ], command = "delete_files" },
{ keys = [ "p", "p" ], command = "paste_files" },
{ keys = [ "p", "o" ], command = "paste_files --overwrite=true" },