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

  1. ;;; ol-dired.el --- Support for links to dired
  2. ;;; Commentary:
  3. ;;; Code:
  4. (require 'ol)
  5. (defcustom org-dired-command 'dired
  6. "The Emacs command to be used to display a dired buffer."
  7. :group 'org-link
  8. :type '(dired))
  9. (org-link-set-parameters "dired"
  10. :follow org-dired-command)
  11. (provide 'ol-dired)
  12. ;;; ol-dired.el ends here