10 lines
297 B
EmacsLisp
Raw Normal View History

2025-02-15 23:44:40 +06:00
(defun a/nsxiv ()
(interactive)
(let ((current (dired-current-directory)))
(async-shell-command (concat "nsxiv " current) "*Messages*")))
(defun a/pcmanfm ()
(interactive)
(let ((current (dired-current-directory)))
(async-shell-command (concat "pcmanfm " current) "*Messages*")))