diff options
| author | 2026-05-19 15:16:09 +0100 | |
|---|---|---|
| committer | 2026-05-19 15:16:09 +0100 | |
| commit | 918c51d0d431a936b0d226a2709bba84001a4496 (patch) | |
| tree | be95d6f114f204c67ec6054ca1cc554fd0130f30 /dot_config | |
| parent | 027fa12fc3fbc138dc8bbbb50b066735943d8b27 (diff) | |
| download | dotfiles-918c51d0d431a936b0d226a2709bba84001a4496.tar.gz dotfiles-918c51d0d431a936b0d226a2709bba84001a4496.tar.bz2 dotfiles-918c51d0d431a936b0d226a2709bba84001a4496.zip | |
fix(yazi): rename opener rule key from `name` to `url`
Yazi tightened its config schema; `name` is no longer accepted for
glob-based opener rules, only `url` (or `mime`). Without this fix yazi
errors on startup and falls back to preset settings.
Diffstat (limited to 'dot_config')
| -rw-r--r-- | dot_config/yazi/yazi.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dot_config/yazi/yazi.toml b/dot_config/yazi/yazi.toml index 4cac20e..267740c 100644 --- a/dot_config/yazi/yazi.toml +++ b/dot_config/yazi/yazi.toml @@ -13,7 +13,7 @@ view-md = [{ run = 'okular "$@"', desc = "View with Okular", orphan = true }] # Open markdown with okular directly (bypasses xdg-open / mimeapps). [open] prepend_rules = [ - { name = "*.md", use = "view-md" }, - { name = "*.markdown", use = "view-md" }, + { url = "*.md", use = "view-md" }, + { url = "*.markdown", use = "view-md" }, { mime = "text/markdown", use = "view-md" }, ] |
