像helm grep一样搜索emacs缓冲区



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

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

是否有一种缓冲切换模式,可以通过仅用space分隔的单词进行过滤?

试试这个:

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

相关内容

  • 没有找到相关文章

最新更新