diff options
| author | typebrook <typebrook@gmail.com> | 2020-02-21 12:02:54 +0800 |
|---|---|---|
| committer | typebrook <typebrook@gmail.com> | 2020-02-21 12:02:54 +0800 |
| commit | 4f1e657d6ca91ae55ed11f534d0938a8050e9c32 (patch) | |
| tree | 4203273e0260232ce6452817f94eede53cf7f64a | |
| parent | 66f565bc228dcb6734651219d219ceb856106aa9 (diff) | |
update
| -rw-r--r-- | alias | 5 | ||||
| -rw-r--r-- | tigrc | 2 |
2 files changed, 5 insertions, 2 deletions
| @@ -221,7 +221,10 @@ alias xc='xsel -ob | gcc -xc -' | |||
| 221 | 221 | ||
| 222 | # image | 222 | # image |
| 223 | image_vertical() { | 223 | image_vertical() { |
| 224 | convert $@ -append output.png | 224 | convert "$@" -append output.png |
| 225 | } | ||
| 226 | image_horizontal() { | ||
| 227 | convert "$@" +append output.png | ||
| 225 | } | 228 | } |
| 226 | 229 | ||
| 227 | # mail mutt | 230 | # mail mutt |
| @@ -95,7 +95,7 @@ bind main 1 +sh -c "git rev-list --all --children | \ | |||
| 95 | bind main b none | 95 | bind main b none |
| 96 | bind main bn @git branch "%(prompt Enter branch name: )" %(commit) | 96 | bind main bn @git branch "%(prompt Enter branch name: )" %(commit) |
| 97 | bind main bN @git branch %(branch) --track %(remote)/%(branch) | 97 | bind main bN @git branch %(branch) --track %(remote)/%(branch) |
| 98 | bind main bu @git branch --set-upstream-to="%(prompt Set remote: )"/%(branch) %(branch) | 98 | bind main bu @git branch --set-upstream-to="%(prompt Set remote/branch: )"/%(branch) %(branch) |
| 99 | bind main bc @git checkout -b "%(prompt Checkout at new branch: )" %(commit) | 99 | bind main bc @git checkout -b "%(prompt Checkout at new branch: )" %(commit) |
| 100 | bind generic bd @git branch -d "%(prompt Delete branch: )" | 100 | bind generic bd @git branch -d "%(prompt Delete branch: )" |
| 101 | bind main bbd @git branch -d %(branch) | 101 | bind main bbd @git branch -d %(branch) |