summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJohn Hawthorn <john.hawthorn@gmail.com>2016-05-02 15:26:44 -0700
committerJohn Hawthorn <john.hawthorn@gmail.com>2016-05-02 15:26:44 -0700
commitdba5471867a3bdfb2de2d7527994fd7f78c60392 (patch)
tree21496f704b503780c64054a0bad8540d1f4c3751 /README.md
parent80f29ee9e94cb66da255540c16820aec772b83a9 (diff)
ag --no-color is no more
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index c743312..fb3a69e 100644
--- a/README.md
+++ b/README.md
@@ -87,9 +87,9 @@ nnoremap <leader>s :call FzyCommand("find -type f", ":sp")<cr>
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`.
``` vim
-nnoremap <leader>e :call FzyCommand("ag . --no-color -l -g ''", ":e")<cr>
-nnoremap <leader>v :call FzyCommand("ag . --no-color -l -g ''", ":vs")<cr>
-nnoremap <leader>s :call FzyCommand("ag . --no-color -l -g ''", ":sp")<cr>
+nnoremap <leader>e :call FzyCommand("ag . -l -g ''", ":e")<cr>
+nnoremap <leader>v :call FzyCommand("ag . -l -g ''", ":vs")<cr>
+nnoremap <leader>s :call FzyCommand("ag . -l -g ''", ":sp")<cr>
```
## Sorting