|
...
|
...
|
@@ -87,9 +87,9 @@ nnoremap <leader>s :call FzyCommand("find -type f", ":sp")<cr>
|
|
87
|
87
|
Any program can be used to filter files presented through fzy. [ag (the silver searcher)](https://github.com/ggreer/the_silver_searcher) can be used to ignore files specified by `.gitignore`.
|
|
88
|
88
|
|
|
89
|
89
|
``` vim
|
|
90
|
|
-nnoremap <leader>e :call FzyCommand("ag . --no-color -l -g ''", ":e")<cr>
|
|
91
|
|
-nnoremap <leader>v :call FzyCommand("ag . --no-color -l -g ''", ":vs")<cr>
|
|
92
|
|
-nnoremap <leader>s :call FzyCommand("ag . --no-color -l -g ''", ":sp")<cr>
|
|
|
90
|
+nnoremap <leader>e :call FzyCommand("ag . -l -g ''", ":e")<cr>
|
|
|
91
|
+nnoremap <leader>v :call FzyCommand("ag . -l -g ''", ":vs")<cr>
|
|
|
92
|
+nnoremap <leader>s :call FzyCommand("ag . -l -g ''", ":sp")<cr>
|
|
93
|
93
|
```
|
|
94
|
94
|
|
|
95
|
95
|
## Sorting
|