vertico VS cape

Compare vertico vs cape and see what are their differences.

vertico

:dizzy: vertico.el - VERTical Interactive COmpletion (by minad)

cape

🦸cape.el - Completion At Point Extensions (by minad)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
vertico cape
61 17
1,361 543
- -
8.7 8.8
11 days ago 24 days ago
Emacs Lisp Emacs Lisp
GNU General Public License v3.0 only GNU General Public License v3.0 only
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.

vertico

Posts with mentions or reviews of vertico. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-30.
  • Minibuffer faces for highlighting file names in a project while de-emphasizing long directory paths?
    2 projects | /r/emacs | 30 Jun 2023
    It would be great if you add your snippet to the Vertico wiki. Such tweaks can be quite instructive for others who want to achieve the same or similar effects for other completion commands.
  • Magit-branch-checkout list order
    1 project | /r/emacs | 20 Jun 2023
    If you want completion to be sorted by your "most recent" I suggest you have a look at completion libraries. One example is vertico; when you enable savehist mode, the variable magit-revision-history, containing the branches you visited is persisted between sessions and vertico use that offer completions by most-recently-used, by default.
  • Input completion in emacs
    1 project | /r/emacs | 27 May 2023
    I think vertico is best alternative recently, really fast on Linux, macOS and Windows.
  • [Emacs Git] Add :vc keyword to use-package
    4 projects | /r/emacs | 16 May 2023
    (use-package modus-themes :vc (:url "https://gitlab.com/protesilaos/modus-themes" :branch "main")) (use-package vertico :vc (:url "https://github.com/minad/vertico" :rev :newest :lisp-dir "extensions/"))
  • Returning emacs user - what packages are common now?
    9 projects | /r/emacs | 9 May 2023
    An example relevant to your list would be some changes many people are taking with their completion framework - using package that leverage core emacs functionality rather than replacing it with a complete package that 'overrides' it. Consult, vertico, orderless and associate packages come to mind here. If you do a bit of a search you'll find plenty of info. Here is a video from Prot on the subject, but there are many others as well. I think Prot actually went on to write his own completion system to overlay native emacs functionality as well.
  • Best emacs configs for Javascript and/or users who don't like to memorize keybindings?
    5 projects | /r/emacs | 24 Apr 2023
    Next you "only" have to remember (elisp) function names. "Completion UIs" like ivy/counsel, icomplete, helm or vertico/consult, give you a nice auto completion list on M-x (choose the one of them, you like the most). Some of those Completion UIs will display existing keybindings and a short documentation for commands, near the auto complete candidates. So you will start to remember more keybindings without "learning sessions", just because invoking functions via keybindings is much faster (more convenient).
  • Why does elpaca make emacs startup so much faster?
    9 projects | /r/emacs | 23 Apr 2023
    Wow, interesting that my response is getting down voted. It seems not enough that I give away my work for free. Nevertheless I appreciate support from the community, as other Emacs package developers. The support is actually helpful. To clarify, publishing my configuration would translate into quite a bit of work, requiring separation of private and public bits.
  • How to combine rtags and vertico
    4 projects | /r/emacs | 7 Apr 2023
    I thought that lsp and rtags were different tools to do different things. Regarding lsp, I configured lsp-mode in my init file indeed! Currently I'm using Vertico (plus recommended sub-packages at github repository) and lsp-mode.
  • Call for new package volunteers
    1 project | /r/emacs | 1 Apr 2023
    Hey! There has already been a horizontico.el. ;)
  • How to Make Emacs Look Cooler with Simple Customization
    7 projects | /r/emacs | 10 Mar 2023
    FYI, selectrum is getting deprecated in favor of vertico. https://github.com/minad/vertico/issues/237

cape

Posts with mentions or reviews of cape. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-23.
  • Why does elpaca make emacs startup so much faster?
    9 projects | /r/emacs | 23 Apr 2023
    Wow, interesting that my response is getting down voted. It seems not enough that I give away my work for free. Nevertheless I appreciate support from the community, as other Emacs package developers. The support is actually helpful. To clarify, publishing my configuration would translate into quite a bit of work, requiring separation of private and public bits.
  • Is there a package or something for code completion in org mode files for src blocks?
    3 projects | /r/emacs | 20 Apr 2023
    At least for Elisp source block one can use font locking to create a custom Capf. Add cape-elisp-block from my Cape package to completion-at-point-functions. Even if you don't want to use Cape you could just copy it to your config. It is a short function.
  • Corfu + Consult History?
    1 project | /r/emacs | 19 Apr 2023
    You can use cape-history from my Cape package. This is similar to consult-history only utilizing completion-in-region instead of completing-read.
  • How to configure corfu for arbitrary orderless matching?
    2 projects | /r/emacs | 31 Mar 2023
    Haven't tried configuring it accordingly, but here's the docs: https://github.com/minad/cape
  • Emacs lags when making the auto completion pop-up with corfu
    2 projects | /r/emacs | 17 Mar 2023
    corfu is blazingly fast. Orderless is as well. What is not always blazingly fast is your completion providing backend. You didn't mention where your slow completions are coming from. An LSP server? Dabbrev? Maybe a remote machine? Have you combined results from various backends (e.g. using cape?). Some completions backends are unavoidably slow, others are just not well optimized.
  • Replacing strings with Unicode symbols.
    9 projects | /r/emacs | 14 Mar 2023
    The most straight forward solution is probably the package company-math. (that's what I use but with corfu and cape)
  • Emacs bankruptcy
    17 projects | /r/emacs | 3 Mar 2023
    Some time I'll add a mixin for Cape which would make the completion stuff really nice.
  • Simplest way to add strings to be used for autocompletion?
    1 project | /r/emacs | 30 Jan 2023
    If you're set on using the completion system (M-TAB) for this, you could install Cape and use the cape-abbrev command to complete your abbrevs.
  • Like company-org-block, but for completion-at-point, corfu, and friends…
    6 projects | /r/emacs | 22 Jan 2023
    Oh, of course your efforts are valuable. I didn't mean to sound discouraging in any way. The point made by /u/xenodium is good - if you have a special candidate source with special behavior, it makes sense to provide a separate lightweight Capf. In contrast, using Tempel for this purpose doesn't make much use of the actual template functionality. Tempel is only a good fit for Org blocks if you use it already anyway, as I do. There is also value in having reference Capfs around, which will be helpful when developers create their own new completion functions. This was also the intention when I created my Cape package, which comes with many simple Capfs. It is always interesting to see what other Emacs users come up with. I am thankful for such efforts - it is inspiring!
  • Sane company completion setup?
    1 project | /r/emacs | 12 Jan 2023

What are some alternatives?

When comparing vertico and cape you can also consider the following projects:

helm - Emacs incremental completion and selection narrowing framework

consult-yasnippet

selectrum - 🔔 Better solution for incremental narrowing in Emacs.

lsp-mode - Emacs client/library for the Language Server Protocol

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

emacs-bedrock - [Mirror] Stepping stones to a better Emacs experience

icomplete-vertical - Global Emacs minor mode to display icomplete candidates vertically

corfu - :desert_island: corfu.el - COmpletion in Region FUnction

tempel - :classical_building: TempEl - Simple templates for Emacs

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

lean4-mode - Emacs major mode for Lean 4