fix custom projetile binds

This commit is contained in:
Ivan Malison 2016-05-14 16:34:52 -04:00
parent cb51da13e5
commit 24286ef2ef

View File

@ -1916,9 +1916,6 @@ window is active in the perspective."
(use-package projectile (use-package projectile
:demand t :demand t
:bind (("C-x f" . projectile-find-file-in-known-projects) :bind (("C-x f" . projectile-find-file-in-known-projects)
("C-c p f" . imalison:projectile-find-file)
:map projectile-command-map
("C-c p s" . imalison:do-ag)
("C-c p f" . imalison:projectile-find-file)) ("C-c p f" . imalison:projectile-find-file))
:preface :preface
(progn (progn
@ -1951,12 +1948,8 @@ window is active in the perspective."
(add-to-list 'projectile-globally-ignored-files "thrift-binaries") (add-to-list 'projectile-globally-ignored-files "thrift-binaries")
(helm-projectile-on) (helm-projectile-on)
(diminish 'projectile-mode) (diminish 'projectile-mode)
(unbind-key "C-c p S" projectile-command-map) (bind-key* "C-c p s" 'imalison:do-ag)
(unbind-key "C-c p s a" projectile-command-map) (bind-key* "C-c p f" 'imalison:projectile-find-file)))
(unbind-key "C-c p s g" projectile-command-map)
(unbind-key "C-c p s s" projectile-command-map)
(unbind-key "C-c p s" projectile-command-map)
(unbind-key "C-c p f" projectile-command-map)))
(use-package smex (use-package smex
;; Using helm-M-x instead ;; Using helm-M-x instead