1

world <space> hello您可以通过输入helm-grep来搜索单词列表('hello'、'world')

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

是否有一种缓冲区切换模式,它通过仅由 a 分隔的单词提供过滤space

4

1 回答 1

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)
于 2014-04-11T12:55:09.850 回答