diff --git a/README.md b/README.md index 0d103d7..07ca926 100644 --- a/README.md +++ b/README.md @@ -75,10 +75,10 @@ Who is who in **bin** directory: - `b` create an indented C-like block `{ ... }` - `c SYMBOL`/`uc SYMBOL` comment/uncomment selection - `commit MESSAGE` commit and push to master +- `f TEXT` find TEXT using The Silver Searcher - `hd SYMBOL` draw a pretty heading - `i`/`ui` indent/unindent selection - `lstrip` remove leading whitespace -- `s` search with The Silver Searcher - `t2s N_SPACES`/`s2t N_SPACES` tabs <=> spaces - `upper`/`lower` convert selection to uppercase/lowercase diff --git a/bin/s b/bin/f similarity index 95% rename from bin/s rename to bin/f index 8a0aa06..542f529 100755 --- a/bin/s +++ b/bin/f @@ -12,5 +12,5 @@ fi ag --nocolor --noheading "$@" if [ $? -ne 0 ]; then - echo 'No results.' + echo 'Not found' fi