branch: master commit 5751119ec2a4610389bd01507dbe7d2beaeefc9a Author: Oleh Krehel <ohwoeo...@gmail.com> Commit: Oleh Krehel <ohwoeo...@gmail.com>
README.md: Add more bindings --- README.md | 19 +++++++++++++------ 1 files changed, 13 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d70eeaf..0d80f8d 100644 --- a/README.md +++ b/README.md @@ -34,11 +34,18 @@ Here is some typical configuration: (ivy-mode 1) (setq ivy-use-virtual-buffers t) (global-set-key "\C-s" 'swiper) -(global-set-key "\C-r" 'swiper) (global-set-key (kbd "C-c C-r") 'ivy-resume) -(global-set-key [f6] 'ivy-resume) +(global-set-key (kbd "<f6>") 'ivy-resume) +(global-set-key (kbd "M-x") 'counsel-M-x) +(global-set-key (kbd "C-x C-f") 'counsel-find-file) +(global-set-key (kbd "<f1> f") 'counsel-describe-function) +(global-set-key (kbd "<f1> v") 'counsel-describe-variable) +(global-set-key (kbd "<f1> l") 'counsel-load-library) +(global-set-key (kbd "<f2> i") 'counsel-info-lookup-symbol) +(global-set-key (kbd "<f2> u") 'counsel-unicode-char) +(global-set-key (kbd "C-c g") 'counsel-git) +(global-set-key (kbd "C-c j") 'counsel-git-grep) +(global-set-key (kbd "C-c k") 'counsel-ag) +(global-set-key (kbd "C-x l") 'counsel-locate) +(global-set-key (kbd "C-S-o") 'counsel-rhythmbox) ``` - -## Issues - -Recently, the `ivy` package that provided `ivy.el` was removed from MELPA. Now, the `swiper` package provides `ivy.el`. You should remove the outdated `ivy` package from your system.