像helm grep一样搜索emacs缓冲区?

时间:2014-04-11 12:50:32

标签: emacs buffer emacs-helm

您可以在helm-grep

中键入world <space> hello来搜索单词列表('hello','world')

我目前使用ido进行缓冲区切换,我必须输入world C-<space> hello来过滤两个单词。

是否存在缓冲切换模式,该模式通过仅由space

分隔的单词进行过滤

1 个答案:

答案 0 :(得分:0)

试试这个:

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

(add-hook 'ido-setup-hook 'my-ido-setup-hook)