From 6d23db05c2d2f26e6bccc7cdce24baf8e9659154 Mon Sep 17 00:00:00 2001 From: Ev Bogdanov Date: Fri, 19 Jan 2018 01:44:50 +0300 Subject: [PATCH] Rename S -> F --- README.md | 2 +- bin/{s => f} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename bin/{s => f} (95%) 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