jj: fancy 's' command as default
new `util exec` is very nice 😀
This commit is contained in:
parent
eb06ace77d
commit
62246715bb
1 changed files with 15 additions and 15 deletions
|
@ -65,12 +65,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
ui = {
|
ui = {
|
||||||
"default-command" = [
|
"default-command" = [ "s" ];
|
||||||
"log"
|
|
||||||
"--limit=10"
|
|
||||||
"-T"
|
|
||||||
"builtin_log_comfortable"
|
|
||||||
];
|
|
||||||
pager = "delta";
|
pager = "delta";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -112,23 +107,28 @@ in
|
||||||
];
|
];
|
||||||
d = [
|
d = [
|
||||||
"diff"
|
"diff"
|
||||||
"--tool=difftu"
|
"--tool=difft"
|
||||||
];
|
];
|
||||||
dd = [
|
dd = [
|
||||||
"diff"
|
"diff"
|
||||||
"--git"
|
"--git"
|
||||||
];
|
];
|
||||||
ds = [
|
du = [
|
||||||
"diff"
|
"diff"
|
||||||
"--tool=difft"
|
|
||||||
];
|
|
||||||
s = [
|
|
||||||
"show"
|
|
||||||
"--tool=difftu"
|
"--tool=difftu"
|
||||||
];
|
];
|
||||||
ss = [
|
s = [
|
||||||
"show"
|
"util"
|
||||||
"--tool=difft"
|
"exec"
|
||||||
|
"--"
|
||||||
|
"bash"
|
||||||
|
"-c"
|
||||||
|
''
|
||||||
|
printf '\e[38;5;240m\u2504%.0s\e[0m' $(seq 1 $(tput cols)) '\n'
|
||||||
|
jj show --stat
|
||||||
|
printf '\e[38;5;240m\u2504%.0s\e[0m' $(seq 1 $(tput cols)) '\n'
|
||||||
|
jj log --limit=15 -T builtin_log_comfortable
|
||||||
|
''
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue