From bdeda97fb890baae9140d3bea38ae0594b54b029 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Fri, 6 Mar 2020 18:37:01 +0000 Subject: [PATCH] chore(editor): Switch amx from ivy to ido completion Ivy is very nicer and fancy, but it doesn't sort exact matches highest when using fuzzy matching, ido does. --- modules/editor/siren-amx.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/editor/siren-amx.el b/modules/editor/siren-amx.el index cd7e74c..522ce67 100644 --- a/modules/editor/siren-amx.el +++ b/modules/editor/siren-amx.el @@ -6,15 +6,13 @@ ;;; Code: -(require 'siren-ivy) - (use-package amx :bind ("M-x" . amx) ("C-x C-m" . amx) :custom - (amx-backend 'ivy) + (amx-backend 'ido) (amx-histroy-lenth 15) (amx-prompt-string "M-x ") (amx-save-file (expand-file-name "amx-items" siren-cache-dir))