Change key binding for projectile switch buffer to `<SPC> p s`

This commit is contained in:
syl20bnr 2014-10-12 10:23:53 -04:00
parent 08763b466a
commit 0f2e5495cd
2 changed files with 4 additions and 4 deletions

View File

@ -785,7 +785,6 @@ Projects management commands (start with `p`):
Key Binding | Description
------------------|------------------------------------------------------------
`<SPC> p b` | switch to a buffer of the project
`<SPC> p C` | invalidate the cache of `projectile`
`<SPC> p d` | open a `dired` buffer at the root of the project
`<SPC> p f` | open a file of the project using `helm`
@ -793,6 +792,7 @@ Projects management commands (start with `p`):
`<SPC> p k` | kill all the buffers of the project
`<SPC> p g` | grep search in the project
`<SPC> p r` | replace a string in the files of the project
`<SPC> p s` | switch to a buffer of the project
### Working with Git

View File

@ -1169,13 +1169,13 @@ inserted in the buffer (if it is not read-only)."
projectile-replace)
:init
(evil-leader/set-key
"pb" 'projectile-switch-to-buffer
"pC" 'projectile-invalidate-cache
"pd" 'projectile-dired
"pF" 'projectile-find-file
"pk" 'projectile-kill-buffers
"pg" 'projectile-grep
"pr" 'projectile-replace)
"pk" 'projectile-kill-buffers
"pr" 'projectile-replace
"ps" 'projectile-switch-to-buffer)
:config
(spacemacs//diminish projectile-mode "")))