Skip to content

Instantly share code, notes, and snippets.

@krl
Created March 14, 2011 21:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krl/869875 to your computer and use it in GitHub Desktop.
Save krl/869875 to your computer and use it in GitHub Desktop.
;; just redefine this to use ido-completing-read
(defun eudc-select (choices beg end)
(let ((replacement
(ido-completing-read "Multiple matches found; choose one: "
(mapcar 'list choices))))
(delete-region beg end)
(insert replacement)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment