selectrum

🔔 Better solution for incremental narrowing in Emacs. (by radian-software)

Selectrum Alternatives

Similar projects and alternatives to selectrum

  1. doom-emacs

    271 selectrum VS doom-emacs

    Discontinued An Emacs framework for the stubborn martian hacker [Moved to: https://github.com/doomemacs/doomemacs]

  2. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  3. magit

    125 selectrum VS magit

    It's Magit! A Git Porcelain inside Emacs.

  4. consult

    93 selectrum VS consult

    :mag: consult.el - Consulting completing-read

  5. exwm

    85 selectrum VS exwm

    Emacs X Window Manager

  6. straight.el

    71 selectrum VS straight.el

    🍀 Next-generation, purely functional package manager for the Emacs hacker.

  7. vertico

    61 selectrum VS vertico

    :dizzy: vertico.el - VERTical Interactive COmpletion

  8. use-package

    68 selectrum VS use-package

    A use-package declaration for simplifying your .emacs

  9. SaaSHub

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

    SaaSHub logo
  10. embark

    66 selectrum VS embark

    Emacs Mini-Buffer Actions Rooted in Keymaps

  11. helm

    48 selectrum VS helm

    Emacs incremental completion and selection narrowing framework (by emacs-helm)

  12. swiper

    37 selectrum VS swiper

    Ivy - a generic completion frontend for Emacs, Swiper - isearch with an overview, and more. Oh, man! (by abo-abo)

  13. emacs-libvterm

    38 selectrum VS emacs-libvterm

    Emacs libvterm integration

  14. orderless

    33 selectrum VS orderless

    Emacs completion style that matches multiple regexps in any order

  15. marginalia

    27 selectrum VS marginalia

    :scroll: marginalia.el - Marginalia in the minibuffer (by minad)

  16. elfeed

    24 selectrum VS elfeed

    An Emacs web feeds client

  17. emacs4cl

    22 selectrum VS emacs4cl

    A tiny DIY kit to set up vanilla Emacs for Common Lisp programming

  18. prescient.el

    13 selectrum VS prescient.el

    ☄️ Simple but effective sorting and filtering for Emacs.

  19. ggtags

    14 selectrum VS ggtags

    Emacs frontend to GNU Global source code tagging system.

  20. ctrlf

    11 selectrum VS ctrlf

    ⌨️ Emacs finally learns how to ctrl+F.

  21. haskell-mode

    9 selectrum VS haskell-mode

    Emacs mode for Haskell

  22. icomplete-vertical

    Global Emacs minor mode to display icomplete candidates vertically

  23. SaaSHub

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

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better selectrum alternative or higher similarity.

selectrum discussion

Log in or Post with

selectrum reviews and mentions

Posts with mentions or reviews of selectrum. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-09.
  • Common "ivy-read"
    1 project | /r/emacs | 29 Apr 2023
    Selectrum's wiki has some basic info on completing-read: https://github.com/radian-software/selectrum/wiki/Tips-for-Creating-Commands
  • What packages do the cool kids use these days?
    4 projects | /r/emacs | 9 Apr 2023
    [1] https://github.com/radian-software/selectrum/issues/114
  • Selectrum now deprecated in favor of Vertico
    4 projects | /r/emacs | 28 Nov 2022
    I noticed over the weekend that the venerable Selectrum package made by Radon Rosborough has been deprecated in favor of Daniel Mendler's Vertico package.
  • How to make TRAMP faster?
    2 projects | /r/emacs | 3 Oct 2022
  • Sidekick is a Emacs package that provides information about a symbol inside a single window.
    4 projects | /r/emacs | 26 Jun 2022
    https://github.com/radian-software/selectrum is getting superceded by https://github.com/minad/vertico within just a year or two.
  • Straight.el: next-gen, purely functional package manager for the Emacs hacker
    5 projects | news.ycombinator.com | 22 Jun 2022
    I have been using straight for a while now and I think it is great! The ability to lazy load everything by default does a lot to make Emacs snappier (or at the very least, faster to boot). Being able to pull packages directly from git (be it local or a forge) makes package development a lot easier. raxod has a lot of really sleek, modern emacs packages that I would encourage everyone to check out, spectrum[0] and ctrf[1] in particular are really great as well.

    [0] https://github.com/radian-software/selectrum

  • Use Portage instead of package.el for managing Emacs packages
    9 projects | /r/Gentoo | 21 Mar 2022
    selectrum
  • Question: Error in post-command-hook
    2 projects | /r/emacs | 2 Dec 2021
    ;;https://github.com/raxod502/selectrum (defun force-debug (func &rest args) (condition-case e (apply func args) ((debug error) (signal (car e) (cdr e))))) (advice-add #'selectrum--minibuffer-post-command-hook :around #'force-debug) (selectrum-mode +1) ;; to make sorting and filtering more intelligent (selectrum-prescient-mode +1) ;; to save your command history on disk, so the sorting gets more ;; intelligent over time (prescient-persist-mode +1) (setq completion-styles '(orderless)) ;; Persist history over Emacs restarts (savehist-mode) ;; Optional performance optimization ;; by highlighting only the visible candidates. (setq orderless-skip-highlighting (lambda () selectrum-is-active)) (setq selectrum-highlight-candidates-function #'orderless-highlight-matches) (setq selectrum-prescient-enable-filtering nil) (selectrum-prescient-mode +1) (prescient-persist-mode +1) (use-package marginalia :ensure t :config (marginalia-mode)) (use-package embark :ensure t :bind (("C-." . embark-act) ;; pick some comfortable binding ("C-;" . embark-dwim) ;; good alternative: M-. ("C-h B" . embark-bindings)) ;; alternative for \describe-bindings' :init ;; Optionally replace the key help with a completing-read interface (setq prefix-help-command #'embark-prefix-help-command) :config ;; Hide the mode line of the Embark live/completions buffers (add-to-list 'display-buffer-alist '("\`\Embark Collect \(Live\|Completions\)\" nil (window-parameters (mode-line-format . none))))) ;; Consult users will also want the embark-consult package. (use-package embark-consult :ensure t :after (embark consult) :demand t ; only necessary if you have the hook below ;; if you want to have consult previews as you move around an ;; auto-updating embark collect buffer :hook (embark-collect-mode . consult-preview-at-point-mode))`
  • Keybinding autocompletion / helper. Like in doom emacs.
    3 projects | /r/emacs | 4 Nov 2021
  • Requests for packages to add to NonGNU ELPA?
    6 projects | /r/emacs | 6 Oct 2021
    Selectrum and Prescient would be nice.
  • A note from our sponsor - SaaSHub
    www.saashub.com | 11 Feb 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic selectrum repo stats
33
738
0.0
about 2 years ago

radian-software/selectrum is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of selectrum is Emacs Lisp.


Sponsored
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai