diff options
author | bd <bdunahu@operationnull.com> | 2025-03-03 23:32:21 -0500 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-03 23:32:21 -0500 |
commit | 42de6d457f9c47b76e26a53055d0dfe026f94bd6 (patch) | |
tree | 1a6d3c873e7e97b39025cac4efbcabc4889f9e63 /.config/emacs/modules/bd--files.el | |
parent | 606b02f3c659fc00470beb3c526e646a38ecf55d (diff) |
Selector functions for displaying a directory of web documentation
Diffstat (limited to '.config/emacs/modules/bd--files.el')
-rw-r--r-- | .config/emacs/modules/bd--files.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/emacs/modules/bd--files.el b/.config/emacs/modules/bd--files.el index 5cf4e86..06a113a 100644 --- a/.config/emacs/modules/bd--files.el +++ b/.config/emacs/modules/bd--files.el @@ -34,6 +34,7 @@ (cdr (assoc (file-name-extension file) '(("gba" . "mgba") ("z64" . "mupen64plus") + ("iso" . "dolphin-emu") ("n64" . "mupen64plus") ("sfc" . "bsnes")))))) (start-process command nil command (expand-file-name file)))) @@ -57,7 +58,7 @@ (bd/open-with-function #'bd/nsxiv)) ((string-match (regexp-opt '("qcow2")) ext) (bd/open-with-function #'bd/qemu)) - ((string-match (regexp-opt '("gba" "z64" "n64" "sfc")) ext) + ((string-match (regexp-opt '("gba" "z64" "n64" "sfc" "iso")) ext) (bd/open-with-function #'bd/rom)) (t (apply f args))))) (advice-add #'find-file :around #'bd/external-find-file-wrapper) |