Skip to content

Instantly share code, notes, and snippets.

@gempesaw
Last active December 12, 2015 12:09
Show Gist options
  • Select an option

  • Save gempesaw/4769881 to your computer and use it in GitHub Desktop.

Select an option

Save gempesaw/4769881 to your computer and use it in GitHub Desktop.
ido-vertical-results
;; Display ido results vertically, rather than horizontally
(setq ido-decorations '("\n-> " "" "\n " "\n ..."
"[" "]" " [No match]" " [Matched]"
" [Not readable]" " [Too big]" " [Confirm]"))
(defun ido-disable-line-trucation ()
(set (make-local-variable 'truncate-lines) nil))
(add-hook 'ido-minibuffer-setup-hook 'ido-disable-line-trucation)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment