Update 2025-03-30

Update 2025-03-03

Update 2025-03-07

Update 2025-03-13

Update 2025-03-14

Update 2025-03-22

Update 2025-03-24

Update 2025-03-29
This commit is contained in:
2025-03-01 15:14:16 +02:00
parent 5f54bb78ad
commit f298468e99
20 changed files with 561 additions and 200 deletions

View File

@@ -159,13 +159,13 @@ prepend_keymap = [
# chmod
{on = [ "c", "m" ], run = "plugin chmod", desc = "Chmod on selected files"},
# Archive
{on = [ "c", "a" ], run = "plugin ouch --args=zip", desc = "Compress with ouch"},
{on = [ "c", "a" ], run = "plugin ouch -- zip", desc = "Compress with ouch"},
# Augment Command
{on = [ "l" ], run = "plugin augment-command --args='enter'", desc = "Enter a directory and skip directories with only a single subdirectory"},
{on = [ "k" ], run = "plugin augment-command --args='arrow -1'", desc = "Move cursor up"},
{on = [ "r" ], run = "plugin augment-command --args='rename --cursor=before_ext'", desc = "Rename a file or directory"},
{on = [ "R" ], run = "plugin augment-command --args='rename'", desc = "Rename a file or directory"},
{on = [ "D" ], run = "plugin augment-command --args='remove --permanently'", desc = "Permanently delete the files"},
{on = [ "l" ], run = "plugin augment-command -- enter", desc = "Enter a directory and skip directories with only a single subdirectory"},
{on = [ "k" ], run = "plugin augment-command -- arrow -1", desc = "Move cursor up"},
{on = [ "r" ], run = "plugin augment-command -- rename --cursor=before_ext", desc = "Rename a file or directory"},
{on = [ "R" ], run = "plugin augment-command -- rename", desc = "Rename a file or directory"},
{on = [ "D" ], run = "plugin augment-command -- remove --permanently", desc = "Permanently delete the files"},
# Dragon
{on = [ "m", "a" ], run = ''' shell 'ripdrag -atk "$@"' --confirm ''', desc = "Drag and drop all"},
{on = [ "m", "i" ], run = ''' shell 'ripdrag -tk "$@"' --confirm ''', desc = "Drag and drop individual"},
@@ -176,15 +176,15 @@ prepend_keymap = [
# Hide Preview
{on = "<C-t>", run = "plugin --sync hide-preview", desc = "Hide or show preview"},
# Relative motions
{on = [ "1" ], run = "plugin relative-motions --args=1", desc = "Move in relative steps"},
{on = [ "2" ], run = "plugin relative-motions --args=2", desc = "Move in relative steps"},
{on = [ "3" ], run = "plugin relative-motions --args=3", desc = "Move in relative steps"},
{on = [ "4" ], run = "plugin relative-motions --args=4", desc = "Move in relative steps"},
{on = [ "5" ], run = "plugin relative-motions --args=5", desc = "Move in relative steps"},
{on = [ "6" ], run = "plugin relative-motions --args=6", desc = "Move in relative steps"},
{on = [ "7" ], run = "plugin relative-motions --args=7", desc = "Move in relative steps"},
{on = [ "8" ], run = "plugin relative-motions --args=8", desc = "Move in relative steps"},
{on = [ "9" ], run = "plugin relative-motions --args=9", desc = "Move in relative steps"},
{on = [ "1" ], run = "plugin relative-motions -- 1", desc = "Move in relative steps"},
{on = [ "2" ], run = "plugin relative-motions -- 2", desc = "Move in relative steps"},
{on = [ "3" ], run = "plugin relative-motions -- 3", desc = "Move in relative steps"},
{on = [ "4" ], run = "plugin relative-motions -- 4", desc = "Move in relative steps"},
{on = [ "5" ], run = "plugin relative-motions -- 5", desc = "Move in relative steps"},
{on = [ "6" ], run = "plugin relative-motions -- 6", desc = "Move in relative steps"},
{on = [ "7" ], run = "plugin relative-motions -- 7", desc = "Move in relative steps"},
{on = [ "8" ], run = "plugin relative-motions -- 8", desc = "Move in relative steps"},
{on = [ "9" ], run = "plugin relative-motions -- 9", desc = "Move in relative steps"},
{on = [ "c", "s" ], run = "plugin what-size", desc = "Calc size of selection or cwd"},
]