1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2026-01-11 21:13:11 +01:00

feat(jj): add alias for jj abandon (#13510)

This commit is contained in:
Match
2026-01-11 03:54:11 -08:00
committed by GitHub
parent 871d4b9816
commit 35068db837
2 changed files with 2 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ plugins=(... jj)
| Alias | Command |
| ------ | ----------------------------- |
| jja | `jj abandon` |
| jjb | `jj bookmark` |
| jjbc | `jj bookmark create` |
| jjbd | `jj bookmark delete` |

View File

@@ -34,6 +34,7 @@ function jj_prompt_template() {
}
# Aliases (sorted alphabetically)
alias jja='jj abandon'
alias jjb='jj bookmark'
alias jjbc='jj bookmark create'
alias jjbd='jj bookmark delete'