This commit is contained in:
2025-09-13 14:48:54 +03:00
parent 779321ab16
commit 964db24d10
8 changed files with 72 additions and 62 deletions
+12 -7
View File
@@ -2,12 +2,17 @@
[mgr]
prepend_keymap = [
{ on = "<C-y>", run = "plugin wl-clipboard", desc = "Yank to clipboard" },
{ on = "R", run = "rename --empty=stem --cursor=start", desc = "Rename file full" },
{ on = [
"g",
"d",
], run = "cd ~/documents", desc = "Goto ~/documents" },
# { on = "<C-y>", run = "plugin wl-clipboard", desc = "Yank to clipboard" },
{ on = "<C-y>", run = [
'shell -- for path in "$@"; do echo "file://$path"; done | wl-copy -t text/uri-list',
"yank",
] },
{ on = "<A-s>", run = "search --via=rga", desc = "Search files by content via ripgrep-all" },
{ on = "R", run = "rename --empty=stem --cursor=start", desc = "Rename file full" },
{ on = [
"g",
"d",
], run = "cd ~/documents", desc = "Goto ~/documents" },
{ on = "<A-s>", run = "search --via=rga", desc = "Search files by content via ripgrep-all" },
]
+2 -4
View File
@@ -1,7 +1,5 @@
[[plugin.deps]]
use = "grappas/wl-clipboard"
rev = "c4edc4f"
hash = "51ff959c3c26cb3889589a0f8d394f14"
[plugin]
deps = []
[[flavor.deps]]
use = "yazi-rs/flavors:dracula"