Commit 7f7efccdaf66

Vincent Demeester <vincent@sbr.pm>
2017-02-01 18:06:53
Bind counsel-recentf (and regenerate `emacs.el`)
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 07d1677
Changed files (2)
.emacs.d/emacs.el
@@ -1,4 +1,3 @@
-
 (defun my/edit-emacs-configuration ()
   (interactive)
   (find-file "~/.emacs.d/emacs.org"))
@@ -378,10 +377,12 @@
 (use-package counsel
   :ensure t
   :bind (("C-x C-f" . counsel-find-file)
+     ("C-x r C-f" . counsel-recentf)
          ("C-h f" . counsel-describe-function)
          ("C-h v" . counsel-describe-variable)
          ("C-h i" . counsel-info-lookup-symbol)
          ("C-c C-u" . counsel-unicode-char)
+         ("C-x g C-f" . counsel-git)
          ("C-c s g" . counsel-git-grep)
          ("C-c s s" . counsel-pt)
          ("M-y" . counsel-yank-pop)
.emacs.d/emacs.org
@@ -923,12 +923,13 @@
       (use-package counsel
         :ensure t
         :bind (("C-x C-f" . counsel-find-file)
+    	   ("C-x r C-f" . counsel-recentf)
                ("C-h f" . counsel-describe-function)
                ("C-h v" . counsel-describe-variable)
                ("C-h i" . counsel-info-lookup-symbol)
                ("C-c C-u" . counsel-unicode-char)
-               ("C-c s g" . counsel-git-grep)
                ("C-x g C-f" . counsel-git)
+               ("C-c s g" . counsel-git-grep)
                ("C-c s s" . counsel-pt)
                ("M-y" . counsel-yank-pop)
                ("M-x" . counsel-M-x)))