ido-recentf-open.el 291 B

12345678910
  1. (require 'recentf)
  2. (defun ido-recentf-open ()
  3. "Use `ido-completing-read' to \\[find-file] a recent file"
  4. (interactive)
  5. (if (find-file (ido-completing-read "Find recent file: " recentf-list))
  6. (message "Opening file...")
  7. (message "Aborting")))
  8. (provide 'ido-recentf-open)