Fixed gpla and Vim mappings

- gpla: Pop stashed changes before clearing them.
- Vim mappings: Remove spacing at end because Vim already adds a space
  after mappings.
This commit is contained in:
2018-02-09 22:36:16 -05:00
parent 768baa4f33
commit 1338b0ece4
4 changed files with 21 additions and 21 deletions

View File

@@ -39,7 +39,7 @@ gunc() { git update-index --assume-unchanged $1 ; }
gpla() {
cmds="lc snp 9r sch"
for cmd in $cmds; do
eval $cmd && gst && gpl && gclear
eval $cmd && gst && gpl && gstp && gclear
done
}
# Functions }}}