;;; 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