diff options
author | Case Duckworth | 2021-04-24 23:23:43 -0500 |
---|---|---|
committer | Case Duckworth | 2021-04-24 23:23:43 -0500 |
commit | c193fccb3c4c5db1a714281df2d26e74d4633fe8 (patch) | |
tree | e8a49d3442e8682915757caf750b88cb29cf4325 | |
parent | Switch to pdf-tools fork (diff) | |
download | emacs-c193fccb3c4c5db1a714281df2d26e74d4633fe8.tar.gz emacs-c193fccb3c4c5db1a714281df2d26e74d4633fe8.zip |
Fix dired-open
-rw-r--r-- | init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/init.el b/init.el index dd2da2c..c65a3ea 100644 --- a/init.el +++ b/init.el | |||
@@ -518,8 +518,9 @@ | |||
518 | (autoload 'dired-w32-browser "w32-browser") | 518 | (autoload 'dired-w32-browser "w32-browser") |
519 | (:bind "RET" dired-w32-browser)) | 519 | (:bind "RET" dired-w32-browser)) |
520 | (:home (:straight dired-open) | 520 | (:home (:straight dired-open) |
521 | (require 'dired-open) | ||
521 | (:bind "RET" dired-find-alternate-file) | 522 | (:bind "RET" dired-find-alternate-file) |
522 | (:option (prepend dired-open-functions) dired-open-xdg))) | 523 | (:option (prepend dired-open-functions) #'dired-open-xdg))) |
523 | 524 | ||
524 | (:straight dired-subtree) | 525 | (:straight dired-subtree) |
525 | (:bind "i" dired-subtree-toggle | 526 | (:bind "i" dired-subtree-toggle |