Giter Club home page Giter Club logo

Comments (2)

eschulte avatar eschulte commented on May 23, 2024

jrhorn424
[email protected]
writes:

Somewhere, I got used to functionality similar to that provided by this function on emacs wiki:

  (defun recentf-ido-find-file ()
    "Find a recent file using Ido."
    (interactive)
    (let* ((file-assoc-list
        (mapcar (lambda (x)
              (cons (file-name-nondirectory x)
                x))
            recentf-list))
       (filename-list
        (remove-duplicates (mapcar #'car file-assoc-list)
                   :test #'string=))
       (filename (ido-completing-read "Choose recent file: "
                      filename-list
                      nil
                      t)))
      (when filename
        (find-file (cdr (assoc filename
                   file-assoc-list))))))

I think this (or something similar) was defined in an earlier version of the starter kit. I haven't been able to find it in related core libraries, and it isn't in any of my customization files. It's very handy, especially since it's bound to C-x f in starter-kit-bindings.org.

I see, would you mind submitting a patch (or pull request) which adds
this function to starter-kit-defuns.org?

Thanks -- Eric

Eric Schulte
http://cs.unm.edu/~eschulte/

from emacs24-starter-kit.

jrhorn424 avatar jrhorn424 commented on May 23, 2024

I see. Will do soon.

from emacs24-starter-kit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.