diff options
author | Marc Cornellà <marc.cornella@live.com> | 2016-08-24 21:28:54 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2016-08-24 21:28:54 +0200 |
commit | 051a2ee2b8ddc9823b416a4a58b5c02625bc7246 (patch) | |
tree | 9f9a987535bfbc96d8a919abb771f15ceb2518cb | |
parent | 6e33095a7d61bc16fafec6952c531f6cc1e138fc (diff) | |
parent | 04dd97783e251c795314c6fca70b14062274ff9b (diff) | |
download | zsh-051a2ee2b8ddc9823b416a4a58b5c02625bc7246.tar.gz zsh-051a2ee2b8ddc9823b416a4a58b5c02625bc7246.tar.bz2 zsh-051a2ee2b8ddc9823b416a4a58b5c02625bc7246.zip |
Merge branch 'add-tig-plugin'
-rw-r--r-- | plugins/tig/README.md | 16 | ||||
-rw-r--r-- | plugins/tig/tig.plugin.zsh | 3 |
2 files changed, 19 insertions, 0 deletions
diff --git a/plugins/tig/README.md b/plugins/tig/README.md new file mode 100644 index 000000000..bb24cd147 --- /dev/null +++ b/plugins/tig/README.md @@ -0,0 +1,16 @@ +# `tig` plugin + +This plugin adds some aliases for people who work with `tig` in +a regular basis. To use it, add `tig` to your plugins array: + +```zsh +plugins=(... tig) +``` + +## Features + +| Alias | Command | Description | +|-------|----------------|-------------------------------------------------| +| `tis` | `tig status` | Show git status | +| `til` | `tig log` | Show git log | +| `tib` | `tig blame -C` | `git-blame` a file detecting copies and renames | diff --git a/plugins/tig/tig.plugin.zsh b/plugins/tig/tig.plugin.zsh new file mode 100644 index 000000000..7e0c530ac --- /dev/null +++ b/plugins/tig/tig.plugin.zsh @@ -0,0 +1,3 @@ +alias tis='tig status' +alias til='tig log' +alias tib='tig blame -C' |