Skip to content

Commit baba018

Browse files
committed
Relink img.
1 parent 3a900c6 commit baba018

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,50 +3,50 @@
33
[![MELPA Stable](https://stable.melpa.org/packages/isearch-project-badge.svg)](https://stable.melpa.org/#/isearch-project)
44
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
55

6-
76
# isearch-project
87
> Incremental search through the whole project.
98
109
<p align="center">
11-
<img src="./screenshot/isearch-project-demo.gif" width="450" height="513"/>
10+
<img src="./etc/isearch-project-demo.gif" width="450" height="513"/>
1211
</p>
1312

14-
This is an alternative package replacing `ag` searcher. The
15-
logic behinds this package is similar to
16-
[Visual Studio](https://visualstudio.microsoft.com/)
17-
`find and replace` functionalities, but using `isearch`.
18-
It simply searches `regexp` in each file accordingly to the
19-
project file tree.
13+
This is an alternative package replacing `ag` searcher. The logic behinds this
14+
package is similar to [Visual Studio](https://visualstudio.microsoft.com/)
15+
`find and replace` functionalities, but using `isearch`. It simply searches
16+
`regexp` in each file accordingly to the project file tree.
2017

21-
`isearch` gives a better visuality than `ag` does. `ag` is
22-
great but is verbose for me to use because it gives you a
23-
whole list that matches even the matching line are in the
24-
exact same line.
18+
`isearch` gives a better visuality than `ag` does. `ag` is great but is verbose
19+
for me to use because it gives you a whole list that matches even the matching line
20+
are in the exact same line.
2521

2622
*P.S. Inspired by [Visual Studio](https://visualstudio.microsoft.com/) `find and replace` preset behavior.*
2723

28-
2924
## Customization
25+
3026
Set the paths you usually want to ignore to search through.
27+
3128
```el
3229
(setq isearch-project-ignore-paths '(".vs/"
3330
".vscode/"
3431
"node_modules/"))
3532
```
3633

37-
3834
## Usage
35+
3936
Call it from `minibuffer` directly,
37+
4038
```
4139
M-x isearch-project-forward
4240
```
41+
4342
Or you can bind it globally to any key you want.
43+
4444
```el
4545
(global-set-key (kbd "any-key") #'isearch-project-forward)
4646
```
4747

48-
4948
## Contribution
49+
5050
If you would like to contribute to this project, you may either
5151
clone and make pull requests to this repository. Or you can
5252
clone the project and establish your own branch of this tool.

0 commit comments

Comments
 (0)