Add toggle for flx-ido-mode, new recentf TODO

This commit is contained in:
Kashish Sharma 2018-09-15 18:07:52 +05:30
parent f1d1b39c27
commit 5c2616953b
2 changed files with 4 additions and 2 deletions

View File

@ -19,8 +19,8 @@
(defun cp/ido-toggle-flex ()
"Toggle the value of `ido-enable-flex-matching'."
(interactive)
(setq ido-enable-flex-matching
(not ido-enable-flex-matching)))
(setq flx-ido-mode
(not flx-ido-mode)))
(defun cp/setup-ido-keys ()
(cp-set-keys

View File

@ -11,6 +11,8 @@
;; TODO - make a completing prompt for Info manuals instead of the
;; current approach of either opening info and searching for a manual
;; or binding calls to (info "(something)") to keys.
;;
;; TODO - add idle timer for recentf-cleanup
(eval-when-compile
(add-to-list 'load-path "~/.emacs.d/elisp-git/use-package/")