ido-at-point

ido-at-point (by katspaugh)

Ido-at-point Alternatives

Similar projects and alternatives to ido-at-point

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better ido-at-point alternative or higher similarity.

ido-at-point reviews and mentions

Posts with mentions or reviews of ido-at-point. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-05-09.
  • What have you recently *removed* from your Emacs configuration?
    7 projects | /r/emacs | 9 May 2022
    (defun completing-read-at-point (start end col &optional pred) "Inspired by https://github.com/katspaugh/ido-at-point" (if (minibufferp) (completion--in-region start end col pred) (let* ((init (buffer-substring-no-properties start end)) (all (completion-all-completions init col pred (length init))) (completion (cond ((atom all) nil) ((and (consp all) (atom (cdr all))) (car all)) (t (completing-read "Completions: " col pred t init))))) (if completion (progn (delete-region start end) (insert completion) t) (message "No completions") nil)))) (setq completion-category-defaults nil) (setq completion-in-region-function #'completing-read-at-point)

Stats

Basic ido-at-point repo stats
1
50
10.0
almost 8 years ago

The primary programming language of ido-at-point is Emacs Lisp.

SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com