mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 05:59:46 +08:00
Compare commits
2 Commits
f4423ebd09
...
00b9b62385
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
00b9b62385 | ||
|
|
dae5a41159 |
16
lib/bzr.zsh
16
lib/bzr.zsh
@ -1,10 +1,14 @@
|
|||||||
## Bazaar integration
|
## Bazaar integration
|
||||||
## Just works with the GIT integration just add $(bzr_prompt_info) to the PROMPT
|
## Just works with the GIT integration. Add $(bzr_prompt_info) to the PROMPT
|
||||||
function bzr_prompt_info() {
|
function bzr_prompt_info() {
|
||||||
BZR_CB=`bzr nick 2> /dev/null | grep -v "ERROR" | cut -d ":" -f2 | awk -F / '{print "bzr::"$1}'`
|
local bzr_branch
|
||||||
if [ -n "$BZR_CB" ]; then
|
bzr_branch=$(bzr nick 2>/dev/null) || return
|
||||||
BZR_DIRTY=""
|
|
||||||
[[ -n `bzr status` ]] && BZR_DIRTY=" %{$fg[red]%} * %{$fg[green]%}"
|
if [[ -n "$bzr_branch" ]]; then
|
||||||
echo "$ZSH_THEME_SCM_PROMPT_PREFIX$BZR_CB$BZR_DIRTY$ZSH_THEME_GIT_PROMPT_SUFFIX"
|
local bzr_dirty=""
|
||||||
|
if [[ -n $(bzr status 2>/dev/null) ]]; then
|
||||||
|
bzr_dirty=" %{$fg[red]%}*%{$reset_color%}"
|
||||||
|
fi
|
||||||
|
printf "%s%s%s%s" "$ZSH_THEME_SCM_PROMPT_PREFIX" "bzr::${bzr_branch##*:}" "$bzr_dirty" "$ZSH_THEME_GIT_PROMPT_SUFFIX"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -16,9 +16,10 @@ plugins=(... opentofu)
|
|||||||
## Aliases
|
## Aliases
|
||||||
|
|
||||||
| Alias | Command |
|
| Alias | Command |
|
||||||
|--------|-----------------------|
|
|--------|------------------------------|
|
||||||
| `tt` | `tofu` |
|
| `tt` | `tofu` |
|
||||||
| `tta` | `tofu apply` |
|
| `tta` | `tofu apply` |
|
||||||
|
| `ttaa` | `tofu apply -auto-approve` |
|
||||||
| `ttc` | `tofu console` |
|
| `ttc` | `tofu console` |
|
||||||
| `ttd` | `tofu destroy` |
|
| `ttd` | `tofu destroy` |
|
||||||
| `ttf` | `tofu fmt` |
|
| `ttf` | `tofu fmt` |
|
||||||
|
|||||||
@ -29,6 +29,7 @@ function tofu_version_prompt_info() {
|
|||||||
|
|
||||||
alias tt='tofu'
|
alias tt='tofu'
|
||||||
alias tta='tofu apply'
|
alias tta='tofu apply'
|
||||||
|
alias ttaa='tofu apply -auto-approve'
|
||||||
alias ttc='tofu console'
|
alias ttc='tofu console'
|
||||||
alias ttd='tofu destroy'
|
alias ttd='tofu destroy'
|
||||||
alias ttf='tofu fmt'
|
alias ttf='tofu fmt'
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user