[ivy] Add counsel colors and faces key bindings

SPC C e calls counsel-colors-emacs
SPC C f calls counsel-faces
SPC C w calls counsel-colors-web
This commit is contained in:
duianto 2019-10-05 23:28:52 +02:00 committed by smile13241324
parent 6472dfe3c2
commit 86c4ca2133
2 changed files with 7 additions and 0 deletions

View File

@ -1816,6 +1816,10 @@ Other:
- Bind =find-file-other-window= to ~j~ (thanks to James Wang)
- Added =counsel-mark-ring= to ~rm~ (thanks to bmag)
- Added =counsel-git= to ~SPC g f f~ (thanks to Hong Xu)
- Added counsel color and faces key bindings (thanks to duianto):
- ~SPC C e~ =counsel-colors-emacs=
- ~SPC C f~ =counsel-faces=
- ~SPC C w~ =counsel-colors-web=
- Limit =ripgrep= results to 150 columns (thanks to Aaron Jensen)
- Use new API to register additional transient state bindings
(thanks to Andriy Kmit')

View File

@ -192,6 +192,9 @@
;; Key bindings
(spacemacs/set-leader-keys
"a'" 'spacemacs/ivy-available-repls
"Ce" 'counsel-colors-emacs
"Cf" 'counsel-faces
"Cw" 'counsel-colors-web
"fr" 'counsel-recentf
"rl" 'ivy-resume
"bb" 'ivy-switch-buffer)