creichert / ido-vertical-mode.el

makes ido-mode display vertically
211 stars 22 forks source link

Left arrow positioning #52

Closed grolongo closed 4 years ago

grolongo commented 4 years ago

Hello,

Is there an option so when I do C-n or C-p to select a candidate the arrow (->) on the left goes down or up instead of staying static on the first line? Somehow this gets me uncomfortable not being able to see what was the previous candidate after I hit C-n.

grolongo commented 4 years ago

Figured it out by using ido-grid-mode instead with this snippet of code taken from their readme:

(setq ido-grid-mode-max-columns 1
      ido-grid-mode-max-rows 8
      ido-grid-mode-prefix-scrolls t
      ido-grid-mode-scroll-down #'ido-grid-mode-next-row
      ido-grid-mode-scroll-up #'ido-grid-mode-previous-row
      ido-grid-mode-order nil)