From 0e9fb1934e4850a49bee0b5346bd212856c7abb5 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 25 Mar 2021 09:24:19 +0000 Subject: (Emacs)~move Amx to core packages Now I can use amx in any completion package of my choice. --- Emacs/.config/emacs/config.org | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) (limited to 'Emacs/.config') diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 11a5b28..96a61e8 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -434,6 +434,20 @@ config, any 'completing-read' function leverages the completions-list when Though I believe Ido is a better completion system than the completions-list, it still has it's place and can be used in tandem with ido. +*** Amx +Amx is a fork of Smex that works to enhance the +execute-extended-command interface. It also provides support for ido +or ivy (though I'm likely to use ido here) and allows you to switch +between them. + +It provides a lot of niceties such as presenting the keybind when +looking for a command. + +#+begin_src emacs-lisp +(use-package amx + :config + (amx-mode)) +#+end_src *** Ido Ido is a very old completion package that still works great to this day. Though it is limited in its scope (and may thus be called a @@ -474,21 +488,6 @@ with more text based functions. :config (ido-ubiquitous-mode +1)) #+end_src -**** Amx -Amx is a fork of Smex that works to enhance the -execute-extended-command interface. It also provides support for ido -or ivy (though I'm likely to use ido here) and allows you to switch -between them. - -It provides a lot of niceties such as presenting the keybind when -looking for a command. - -#+begin_src emacs-lisp -(use-package amx - :after ido - :config - (amx-mode)) -#+end_src *** Completions-list #+begin_src emacs-lisp (use-package simple -- cgit v1.2.3-13-gbd6f