Change recompile-elpa to a more emacs file specific keybinding

This commit is contained in:
Maximilian Wolff 2019-11-24 20:48:25 +00:00
parent 5d1cf35e48
commit f6fd88f40b
No known key found for this signature in database
GPG Key ID: 2DD07025BFDBD89A
2 changed files with 2 additions and 2 deletions

View File

@ -2539,6 +2539,7 @@ navigate between =Emacs= and Spacemacs specific files.
| ~SPC f e R~ | resync the dotfile with spacemacs |
| ~SPC f e U~ | update packages |
| ~SPC f e v~ | display and copy the spacemacs version |
| ~SPC f e c~ | recompile all elpa packages |
**** Browsing files in completion buffer
In =vim= style and =hybrid= style with the variable
@ -3499,7 +3500,6 @@ Spacemacs binds a few commands to support compiling a project.
|-------------+--------------------------------|
| ~SPC c c~ | use =helm-make= via projectile |
| ~SPC c C~ | compile |
| ~SPC c C-c~ | compile all emacs packages |
| ~SPC c d~ | close compilation window |
| ~SPC c k~ | kill compilation |
| ~SPC c m~ | =helm-make= |

View File

@ -228,6 +228,7 @@
"fA" 'spacemacs/find-file-and-replace-buffer
"fc" 'spacemacs/copy-file
"fD" 'spacemacs/delete-current-buffer-file
"fec" 'spacemacs/recompile-elpa
"fei" 'spacemacs/find-user-init-file
"fed" 'spacemacs/find-dotfile
"feD" 'spacemacs/ediff-dotfile-and-template
@ -312,7 +313,6 @@
;; Compilation ----------------------------------------------------------------
(spacemacs/set-leader-keys
"cC" 'compile
"c C-c" 'spacemacs/recompile-elpa
"ck" 'kill-compilation
"cr" 'recompile
"cd" 'spacemacs/close-compilation-window)