From 5c2616953bc0de86e4753cb92dafa29fce8e1589 Mon Sep 17 00:00:00 2001 From: Kashish Sharma Date: Sat, 15 Sep 2018 18:07:52 +0530 Subject: [PATCH] Add toggle for flx-ido-mode, new recentf TODO --- contrapunctus/cp-ido.el | 4 ++-- init.el | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/contrapunctus/cp-ido.el b/contrapunctus/cp-ido.el index 28e6dd3..6c3714b 100644 --- a/contrapunctus/cp-ido.el +++ b/contrapunctus/cp-ido.el @@ -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 diff --git a/init.el b/init.el index 44348fe..04b60d5 100644 --- a/init.el +++ b/init.el @@ -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/")