AutoYADM commit: 2025-03-15 02:00:06

This commit is contained in:
Daniel Fichtinger 2025-03-15 02:00:06 -04:00
parent 6b99c84a29
commit 8ce2157c2b
5 changed files with 62 additions and 9 deletions

View file

@ -81,12 +81,14 @@ run = "plugin open-with-cmd"
desc = "Open with command"
[[manager.prepend_keymap]]
on = ["'", ";"]
run = 'plugin custom-shell -- auto --interactive'
on = [";"]
# on = ["'", ";"]
run = 'plugin custom-shell -- auto --interactive --block=false'
desc = "custom-shell as default, interactive"
[[manager.prepend_keymap]]
on = ["'", ":"]
on = [":"]
# on = ["'", ":"]
run = 'plugin custom-shell -- auto --interactive --block'
desc = "custom-shell as default, interactive, block"
@ -125,7 +127,7 @@ run = "plugin chmod"
desc = "Chmod on selected files"
[[manager.prepend_keymap]]
on = "F"
on = ["g", "f"]
run = "plugin jump-to-char"
desc = "Jump to char"
@ -230,6 +232,34 @@ on = ["R", "D"]
run = "plugin sudo -- remove --permanently"
desc = "sudo delete"
[[manager.prepend_keymap]]
on = "F"
run = "plugin smart-filter"
desc = "Smart filter"
[[manager.prepend_keymap]]
on = [ "I" ]
run = "plugin bypass"
desc = "Recursively enter child directory, skipping children with only a single subdirectory"
[[manager.prepend_keymap]]
on = [ "M" ]
run = "plugin bypass --args=reverse"
desc = "Recursively enter parent directory, skipping parents with only a single subdirectory"
[[manager.prepend_keymap]]
on = [ "k", "g" ]
run = "plugin vcs-files"
desc = "Show Git file changes"
# INPUT
[[input.prepend_keymap]]
on = "<Esc>"
run = "close"
desc = "Cancel input"
[[input.prepend_keymap]]
on = "l"
run = "forward --end-of-word"