From 685cd52e58ec46eb4ccf457f3ff1374d613e169a Mon Sep 17 00:00:00 2001 From: Nathan Reiner Date: Wed, 8 Dec 2021 15:41:02 +0100 Subject: Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e2f4bfc..2fde412 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ The `TODO` tag has the following structur: * @category some_bug * * @description - * Some weared bug lol + * Some weird bug lol * what is this??? */ ``` -- cgit v1.2.3-70-g09d2 From 71c558c3740f7ece3f25791bea81b231744f1aad Mon Sep 17 00:00:00 2001 From: Nathan Reiner Date: Wed, 8 Dec 2021 15:44:59 +0100 Subject: Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2fde412..7682579 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # SCRUBS - Let's Prepare The Operation -Scrubs is a little documentation tool written in POSIX-Shell. It should make easier to work in teams in a suckless way. +Scrubs is a little documentation tool written in POSIX-Shell. It should make easier to work in teams in a suckless way, without having to it without any documentation. ## Features @@ -46,6 +46,7 @@ There is a *Makefile* so you are able to install `scrubs` with: ``` bash sudo make install ``` +Note that if you want to use the `search` functionality you have to install `fzf`. To uninstall -- cgit v1.2.3-70-g09d2 From 099edde49d98f990665a5c4a9585e621cd5e8ab2 Mon Sep 17 00:00:00 2001 From: Nathan Reiner Date: Wed, 8 Dec 2021 15:45:19 +0100 Subject: Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7682579..5eb1e09 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ There is a *Makefile* so you are able to install `scrubs` with: ``` bash sudo make install ``` -Note that if you want to use the `search` functionality you have to install `fzf`. +Note that if you want to use the `search` functionality of `scrubs` you have to install `fzf`. To uninstall -- cgit v1.2.3-70-g09d2 From b2b7284c755d6a950ad3282e922272fa561b9e34 Mon Sep 17 00:00:00 2001 From: Nathan Reiner Date: Mon, 13 Dec 2021 23:33:32 +0100 Subject: Update scrubs --- scrubs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrubs b/scrubs index a1d4e7a..7132c0f 100755 --- a/scrubs +++ b/scrubs @@ -1,6 +1,6 @@ #!/bin/sh -files=$(find . -name "*.cpp") +files=$(find . -name "*.(cpp|c)") get_todos() { if [ -z "$1" ]; then -- cgit v1.2.3-70-g09d2