1

You can search for word list ('hello', 'world') by typing world <space> hello in helm-grep

I currently use ido for buffer switching, and I have to type world C-<space> hello to filter by two words.

Is there a buffer switch mode which offer the filtering by words separated by just a space?

Community
  • 1
  • 1
eugene
  • 39,839
  • 68
  • 255
  • 489

1 Answers1

0

Try this:

(defun my-ido-setup-hook ()
  (define-key
      ido-buffer-completion-map
      " "
    'ido-restrict-to-matches))

(add-hook 'ido-setup-hook 'my-ido-setup-hook)
abo-abo
  • 20,038
  • 3
  • 50
  • 71
  • christ.. Should have asked this earlier! Thanks abo-abo. They should have made this default.. – eugene Apr 11 '14 at 12:59