diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-04-12 11:30:05 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-04-12 11:30:05 -0400 |
commit | a0ba3ac25ed25f4ef3bac1c668fabae6174d2520 (patch) | |
tree | 3b039268487b8c418bcf674a0f86f7380284824a | |
parent | 1f685f48ea7ff781ccb76b6073422ea271002b10 (diff) | |
download | emacs.d-a0ba3ac25ed25f4ef3bac1c668fabae6174d2520.tar.gz |
Turn ido-vertical-mode back on
When I set up ace-link (809107e), I disabled ido-vertical-mode because I
was noticing that if it was activated, some of the links at the bottom
were being cut off. I can't reproduce this now (despite there not being
any changes in ido-vertical-mode, ace-jump, or ace-link to fix it). I'm
turning it back on and will see if the issue pops up again.
-rw-r--r-- | lisp/init-ido.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/init-ido.el b/lisp/init-ido.el index 8587162..d0da97b 100644 --- a/lisp/init-ido.el +++ b/lisp/init-ido.el @@ -1,5 +1,6 @@ (require-package 'flx) (require-package 'flx-ido) +(require-package 'ido-vertical-mode) (require-package 'ido-ubiquitous) (require-package 'ido-at-point) @@ -25,6 +26,7 @@ (setq ido-use-faces nil) (ido-mode 1) +(ido-vertical-mode 1) (ido-everywhere 1) (flx-ido-mode 1) (ido-ubiquitous-mode 1) |