Added keybinding for ivy history, enabled wrapping.
This commit is contained in:
parent
69f1ceb6b1
commit
ffa951b0b8
5
init.el
5
init.el
|
@ -560,10 +560,15 @@ With argument, do this that many times."
|
||||||
:custom
|
:custom
|
||||||
(ivy-use-virtual-buffers t)
|
(ivy-use-virtual-buffers t)
|
||||||
(ivy-count-format "[%d/%d] ")
|
(ivy-count-format "[%d/%d] ")
|
||||||
|
(ivy-wrap t)
|
||||||
:config
|
:config
|
||||||
(ivy-mode 1)
|
(ivy-mode 1)
|
||||||
:bind
|
:bind
|
||||||
("C-c C-r" . 'ivy-resume)
|
("C-c C-r" . 'ivy-resume)
|
||||||
|
(:map ivy-minibuffer-map
|
||||||
|
("M-<up>" . ivy-previous-history-element)
|
||||||
|
("M-<down>" . ivy-next-history-element)
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
;; Extensions for ivy
|
;; Extensions for ivy
|
||||||
|
|
Loading…
Reference in New Issue
Block a user