Added keybinding for ivy history, enabled wrapping.

This commit is contained in:
tastytea 2019-08-01 20:48:24 +02:00
parent 69f1ceb6b1
commit ffa951b0b8

View File

@ -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