mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
chore(completion): Replace ivy with ido in the few places it was used
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user