all repos — nixfiles @ 46fcf6ca390af119f649a942cba4fe3721928f96

System and user configuration, managed by nix and home-manager

Emacs: Better project buffer switching with ivy
Alan Pearce alan@alanpearce.co.uk
Fri, 14 Aug 2015 21:43:53 +0200
commit

46fcf6ca390af119f649a942cba4fe3721928f96

parent

4fa45cd1054b526056a0118d324b818eeac7d80e

1 files changed, 10 insertions(+), 1 deletions(-)

jump to
M tag-emacs/emacs.d/init.orgtag-emacs/emacs.d/init.org
@@ -1198,7 +1198,16 @@ :bind (("M-x" . counsel-M-x)            ("<apps>" . counsel-M-x)
            ("<menu>" . counsel-M-x)
            ("C-c M-x" . execute-extended-command)
-           ("C-x C-f" . counsel-find-file)))
+           ("C-x C-f" . counsel-find-file)
+           ("C-x b" . counsel-switch-to-projectile-buffer))
+    :config (progn
+              (defun counsel-switch-to-projectile-buffer (arg)
+                "Forward to `projectile-switch-to-buffer'."
+                (ivy-read (format "Switch to buffer [%s]: " (projectile-project-name))
+                          (projectile-project-buffer-names)
+                          :preselect (buffer-name (other-buffer (current-buffer)))
+                          :action #'ivy--switch-buffer-action
+                          :keymap ivy-switch-buffer-map))))
 #+END_SRC