deadgrep VS ido-at-point

Compare deadgrep vs ido-at-point and see what are their differences.

deadgrep

fast, friendly searching with ripgrep and Emacs (by Wilfred)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
deadgrep ido-at-point
11 1
699 50
- -
4.4 10.0
16 days ago almost 8 years ago
Emacs Lisp Emacs Lisp
- -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

deadgrep

Posts with mentions or reviews of deadgrep. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-30.

ido-at-point

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)

What are some alternatives?

When comparing deadgrep and ido-at-point you can also consider the following projects:

rg.el - Emacs search tool based on ripgrep

flymake-collection - Collection of checkers for flymake

consult - :mag: consult.el - Consulting completing-read

vundo - Visualize the undo tree.

emacs-find-file-rg - Find file in current project using rg --files command

dumb-jump - an Emacs "jump to definition" package for 50+ languages

Emacs-wgrep - Writable grep buffer and apply the changes to files

json-diff - Structural diff for JSON files

urgrep - Universal recursive grep for Emacs

wordle - Wordle TUI in Rust

ydiff - View colored, incremental diff in workspace or from stdin with side by side and auto pager support

json-ordered-tidy - A fancy JSON tidier that can arbitrarily order object keys