Update submodules and fix bug
This commit is contained in:
4
init.zsh
4
init.zsh
@ -99,7 +99,7 @@ gcm() {
|
||||
for arg; do
|
||||
args="${args} ${arg}"
|
||||
done
|
||||
git commit -m "${args}"
|
||||
git commit -m "${args:1}" # remove the leading space
|
||||
}
|
||||
alias gca="git commit -a"
|
||||
gcam() {
|
||||
@ -107,7 +107,7 @@ gcam() {
|
||||
for arg; do
|
||||
args="${args} ${arg}"
|
||||
done
|
||||
git commit -am "${args}"
|
||||
git commit -am "${args:1}" # remove the leading space
|
||||
}
|
||||
alias gp="git push"
|
||||
alias gu="git pull"
|
||||
|
Submodule plugins/zsh-completions updated: 4de5a8cc6a...98ea8e685c
Reference in New Issue
Block a user