My attempt to optimize my emacs load time <1 second
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
356 B

;;; ol-dired.el --- Support for links to dired
;;; Commentary:
;;; Code:
(require 'ol)
(defcustom org-dired-command 'dired
"The Emacs command to be used to display a dired buffer."
:group 'org-link
:type '(dired))
(org-link-set-parameters "dired"
:follow org-dired-command)
(provide 'ol-dired)
;;; ol-dired.el ends here