feat(custom-commands): add ccb to copy current branch, make ccd an alias

This commit is contained in:
Oliver
2026-01-04 12:09:35 +01:00
parent fd21e245c6
commit 5a4b83aaa1

View File

@@ -123,9 +123,8 @@ function cmple() {
./$result ./$result
} }
function ccd() { alias ccd="printf '%q' \"$(pwd)\" | pbcopy"
printf "%q" "$(pwd)" | pbcopy alias ccb="printf '%q' \"$(git rev-parse --abbrev-ref HEAD)\" | pbcopy"
}
alias t="tmux" alias t="tmux"