Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ function gimp() {
gcap "👌 IMPROVE: $@"
}

Alternative function for Linux users who use the graphical program GIMP**:
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Alternative function for Linux users who use the graphical program GIMP**:
# Alternative for Linux users of GIMP app:

function gim() {
gcap "👌 IMPROVE: $@"
}

# FIX.
function gfix() {
gcap "🐛 FIX: $@"
Expand All @@ -125,7 +130,6 @@ function gtst() {
gcap "✅ TEST: $@"
}
```

To install these functions for the fish shell, run the following commands:

```sh
Expand All @@ -139,12 +143,13 @@ function gtst; gcap "✅ TEST: $argv"; end;
funcsave gcap
funcsave gnew
funcsave gimp
Alternative function for Linux users for IMPROVE in fish shell:
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Alternative function for Linux users for IMPROVE in fish shell:
# Alternative for Linux users of GIMP app:

funcsave gim; gcap "👌 IMPROVE: $argv"; end;
funcsave gfix
funcsave grlz
funcsave gdoc
funcsave gtst
```

If you prefer, you can paste these aliases directly in your `~/.gitconfig` file:

```sh
Expand Down