https://github.com/aki2o/direx-grep.git
git clone 'git://github.com/aki2o/direx-grep.git'
This is a extension of Emacs that provides incremental search like anything.el/helm.el to the node of .
2014/04/11 It's available by using melpa.
2014/04/11 It's available. But, master branch only.
(auto-install-from-url "https://raw.github.com/aki2o/direx-grep/master/direx-grep.el")
Download direx-grep.el and put it on your load-path.
- In this case, you need to install each of the following dependency.
(require 'direx-grep)
(define-key direx:direx-mode-map (kbd "s") 'direx-grep:grep-item)
(define-key direx:direx-mode-map (kbd "S") 'direx-grep:grep-item-from-root)
(define-key direx:direx-mode-map (kbd "a") 'direx-grep:show-all-item-at-point)
(define-key direx:direx-mode-map (kbd "A") 'direx-grep:show-all-item)
Push direx-grep:grep-item
/ direx-grep:grep-item-from-root
key in direx.el buffer.
The target of direx-grep:grep-item
is the shown node under the pointed node.
The target of direx-grep:grep-item-from-root
is the root node of the pointed node.
If you want to search all node, which includes the hidden node, do the one of the following.
direx-grep:ensure-greped-tree
(in default)direx:expand-item-recursively
before grep.Push direx-grep:toggle-use-migemo-key
in mini-buffer.
direx-grep:use-migemo
detects whether to use migemo.el at the start of direx-grep:grep-item
.
The state of grep don't turn back automatically.
For that, push direx-grep:show-all-item-at-point
/ direx-grep:show-all-item
key in direx.el buffer.
Enjoy!!!