ruby-on-rails: move `SPC m r r :` to `SPC m r :`

So `SPC m r r` prefix becomes available for RuboCop
This commit is contained in:
syl20bnr 2015-11-26 23:56:21 -05:00
parent 5b99a60617
commit 7d281f2671
2 changed files with 2 additions and 2 deletions

View File

@ -73,10 +73,10 @@ To use this contribution add it to your =~/.spacemacs=
| Key binding | Description |
|---------------+----------------------|
| ~SPC m r :~ | run rake task |
| ~SPC m r c c~ | run rails generator |
| ~SPC m r i~ | start rails console |
| ~SPC m r s r~ | reload Rails project |
| ~SPC m r r :~ | run rake task |
| ~SPC m r x s~ | start rails server |
** Ex-commands

View File

@ -66,9 +66,9 @@
"rgz" 'projectile-rails-goto-spec-helper
"rg." 'projectile-rails-goto-file-at-point
;; Rails external commands
"r:" 'projectile-rails-rake
"rcc" 'projectile-rails-generate
"ri" 'projectile-rails-console
"rr:" 'projectile-rails-rake
"rxs" 'projectile-rails-server
;; Refactoring 'projectile-rails-mode
"rRx" 'projectile-rails-extract-region))