diff --git a/dot_config/yazi/keymap.toml b/dot_config/yazi/keymap.toml index 753b01f..a6ec8e9 100644 --- a/dot_config/yazi/keymap.toml +++ b/dot_config/yazi/keymap.toml @@ -47,11 +47,11 @@ keymap = [ { on = "J", run = "seek 5", desc = "Seek down 5 units in the preview" }, # Selection - { on = "", run = [ "select --state=none", "arrow 1" ], desc = "Toggle the current selection state" }, + { on = "", run = [ "toggle --state=none", "arrow 1" ], desc = "Toggle the current selection state" }, { on = "v", run = "visual_mode", desc = "Enter visual mode (selection mode)" }, { on = "V", run = "visual_mode --unset", desc = "Enter visual mode (unset mode)" }, - { on = "", run = "select_all --state=true", desc = "Select all files" }, - { on = "", run = "select_all --state=none", desc = "Inverse selection of all files" }, + { on = "", run = "toggle_all --state=true", desc = "Select all files" }, + { on = "", run = "toggle_all --state=none", desc = "Inverse selection of all files" }, # Operation { on = "o", run = "open", desc = "Open selected files" }, diff --git a/dot_config/yazi/yazi.toml b/dot_config/yazi/yazi.toml index d21cfb0..bbd77a0 100644 --- a/dot_config/yazi/yazi.toml +++ b/dot_config/yazi/yazi.toml @@ -137,7 +137,7 @@ cd_origin = "top-center" cd_offset = [ 0, 2, 50, 3 ] # create -create_title = "Create:" +create_title = ["Create:", "Create (dir):"] create_origin = "top-center" create_offset = [ 0, 2, 50, 3 ]