diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-03-25 09:24:19 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-03-25 09:24:19 +0000 |
commit | 0e9fb1934e4850a49bee0b5346bd212856c7abb5 (patch) | |
tree | c91083a12fca6d8cbbab722321b66ab29274e674 | |
parent | bb04d7d25fea3e6b5973de20cf837db9cb9543ff (diff) | |
download | dotfiles-0e9fb1934e4850a49bee0b5346bd212856c7abb5.tar.gz dotfiles-0e9fb1934e4850a49bee0b5346bd212856c7abb5.tar.bz2 dotfiles-0e9fb1934e4850a49bee0b5346bd212856c7abb5.zip |
(Emacs)~move Amx to core packages
Now I can use amx in any completion package of my choice.
-rw-r--r-- | Emacs/.config/emacs/config.org | 29 |
1 files changed, 14 insertions, 15 deletions
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 |