chore(completion): Replace ivy with ido in the few places it was used

This commit is contained in:
2020-03-16 01:02:30 +00:00
parent c0993c8c54
commit c6f919dfe1
2 changed files with 6 additions and 4 deletions

View File

@@ -6,6 +6,8 @@
;;; Code:
(require 'siren-ido)
(use-package dumb-jump
:bind
("C-c C-j" . dumb-jump-go)
@@ -18,7 +20,7 @@
("M-g z" . dumb-jump-go-prefer-external-other-window)
:custom
(dumb-jump-selector 'ivy))
(dumb-jump-selector 'ido))
(provide 'siren-dumb-jump)
;;; siren-dumb-jump.el ends here

View File

@@ -6,7 +6,7 @@
;;; Code:
(require 'siren-ivy)
(require 'siren-ido)
(use-package flyspell
:straight (:type built-in)
@@ -27,10 +27,10 @@
;; Unbind keys used by siren-resize-window module.
(unbind-key "C-;" flyspell-mode-map))
(use-package flyspell-correct-ivy
(use-package flyspell-correct
:bind ("C-/" . flyspell-correct-wrapper)
:custom
(flyspell-correct-interface #'flyspell-correct-ivy))
(flyspell-correct-interface #'flyspell-correct-ido))
(provide 'siren-flyspell)
;;; siren-flyspell.el ends here