git-tools.kak: use a single git command with subcommands
This commit is contained in:
parent
6df60f5d2f
commit
c844f6f5cf
|
@ -1,12 +1,77 @@
|
||||||
decl line-flag-list git_diff_flags
|
|
||||||
decl str docsclient
|
decl str docsclient
|
||||||
|
|
||||||
def git-diff-update-buffer %{ %sh{
|
hook global WinSetOption filetype=git-log %{
|
||||||
added_lines=""
|
addhl group git-log-highlight
|
||||||
removed_lines=""
|
addhl -group git-log-highlight regex '^(commit) ([0-9a-f]+)$' 1:yellow 2:red
|
||||||
|
addhl -group git-log-highlight regex '^([a-zA-Z_-]+:) (.*?)$' 1:green 2:magenta
|
||||||
|
}
|
||||||
|
|
||||||
|
hook global WinSetOption filetype=(?!git-log).* %{
|
||||||
|
rmhl git-log-highlight
|
||||||
|
}
|
||||||
|
|
||||||
|
decl line-flag-list git_blame_flags
|
||||||
|
decl line-flag-list git_diff_flags
|
||||||
|
|
||||||
|
def -shell-params git %{ %sh{
|
||||||
|
show_git_cmd_output() {
|
||||||
|
local filetype
|
||||||
|
case "$1" in
|
||||||
|
show) filetype=diff ;;
|
||||||
|
log) filetype=git-log ;;
|
||||||
|
esac
|
||||||
|
tmpfile=$(mktemp /tmp/kak-git-XXXXXX)
|
||||||
|
if git "$@" > ${tmpfile}; then
|
||||||
|
[[ -n "$kak_opt_docsclient" ]] && echo "eval -client '$kak_opt_docsclient' %{"
|
||||||
|
|
||||||
|
echo "edit! -scratch *git*
|
||||||
|
exec |cat<space>${tmpfile}<ret>gk
|
||||||
|
nop %sh{rm ${tmpfile}}
|
||||||
|
setb filetype '${filetype}'"
|
||||||
|
|
||||||
|
[[ -n "$kak_opt_docsclient" ]] && echo "}"
|
||||||
|
else
|
||||||
|
echo "echo %{git $@ failed, see *debug* buffer}"
|
||||||
|
rm ${tmpfile}
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
run_git_blame() {
|
||||||
|
(
|
||||||
|
echo "eval -client '$kak_client' %{
|
||||||
|
try %{ addhl flag_lines magenta git_blame_flags } catch %{}
|
||||||
|
setb -buffer '$kak_bufname' git_blame_flags ''
|
||||||
|
}" | socat -u stdin UNIX-CONNECT:${kak_socket}
|
||||||
|
declare -A authors
|
||||||
|
declare -A dates
|
||||||
|
send_flags() {
|
||||||
|
if [[ -z "$line" ]]; then return; fi
|
||||||
|
text="${sha:0:8} ${dates[$sha]} ${authors[$sha]}"
|
||||||
|
flag="$line|black|$text"
|
||||||
|
for (( i=1; $i < $count; i++ )); do
|
||||||
|
flag="$flag;$(($line+$i))|black|$text"
|
||||||
|
done
|
||||||
|
echo "setb -add -buffer '$kak_bufname' git_blame_flags %{${flag}}" | socat -u stdin UNIX-CONNECT:${kak_socket}
|
||||||
|
}
|
||||||
|
git blame --incremental $kak_bufname | ( while read blame_line; do
|
||||||
|
if [[ $blame_line =~ ([0-9a-f]{40}).([0-9]+).([0-9]+).([0-9]+) ]]; then
|
||||||
|
send_flags
|
||||||
|
sha=${BASH_REMATCH[1]}
|
||||||
|
line=${BASH_REMATCH[3]}
|
||||||
|
count=${BASH_REMATCH[4]}
|
||||||
|
elif [[ $blame_line =~ author[^-](.*) ]]; then
|
||||||
|
authors[$sha]=${BASH_REMATCH[1]}
|
||||||
|
elif [[ $blame_line =~ author-time.([0-9]*) ]]; then
|
||||||
|
dates[$sha]="$(date -d @${BASH_REMATCH[1]} +'%F %T')"
|
||||||
|
fi
|
||||||
|
done; send_flags )
|
||||||
|
) >& /dev/null < /dev/null &
|
||||||
|
}
|
||||||
|
|
||||||
|
update_diff() {
|
||||||
git diff -U0 $kak_bufname | {
|
git diff -U0 $kak_bufname | {
|
||||||
line=0
|
local line=0
|
||||||
flags="0|red|."
|
local flags="0|red|."
|
||||||
while read; do
|
while read; do
|
||||||
if [[ $REPLY =~ ^---.* ]]; then
|
if [[ $REPLY =~ ^---.* ]]; then
|
||||||
continue
|
continue
|
||||||
|
@ -21,55 +86,17 @@ def git-diff-update-buffer %{ %sh{
|
||||||
done
|
done
|
||||||
echo "setb git_diff_flags '$flags'"
|
echo "setb git_diff_flags '$flags'"
|
||||||
}
|
}
|
||||||
}}
|
|
||||||
|
|
||||||
def git-diff-show %{ addhl flag_lines black git_diff_flags; git-diff-update-buffer }
|
|
||||||
|
|
||||||
decl line-flag-list git_blame_flags
|
|
||||||
|
|
||||||
def git-blame %{
|
|
||||||
try %{ addhl flag_lines magenta git_blame_flags } catch %{}
|
|
||||||
setb git_blame_flags ''
|
|
||||||
%sh{ (
|
|
||||||
declare -A authors
|
|
||||||
declare -A dates
|
|
||||||
send_flags() {
|
|
||||||
if [[ -z "$line" ]]; then return; fi
|
|
||||||
text="${sha:0:8} ${dates[$sha]} ${authors[$sha]}"
|
|
||||||
flag="$line|black|$text"
|
|
||||||
for (( i=1; $i < $count; i++ )); do
|
|
||||||
flag="$flag;$(($line+$i))|black|$text"
|
|
||||||
done
|
|
||||||
echo "setb -add -buffer $kak_bufname git_blame_flags %{${flag}}" | socat -u stdin UNIX-CONNECT:${kak_socket}
|
|
||||||
}
|
}
|
||||||
git blame --incremental $kak_bufname | ( while read blame_line; do
|
|
||||||
if [[ $blame_line =~ ([0-9a-f]{40}).([0-9]+).([0-9]+).([0-9]+) ]]; then
|
|
||||||
send_flags
|
|
||||||
sha=${BASH_REMATCH[1]}
|
|
||||||
line=${BASH_REMATCH[3]}
|
|
||||||
count=${BASH_REMATCH[4]}
|
|
||||||
elif [[ $blame_line =~ author[^-](.*) ]]; then
|
|
||||||
authors[$sha]=${BASH_REMATCH[1]}
|
|
||||||
elif [[ $blame_line =~ author-time.([0-9]*) ]]; then
|
|
||||||
dates[$sha]="$(date -d @${BASH_REMATCH[1]} +'%F %T')"
|
|
||||||
fi
|
|
||||||
done; send_flags )
|
|
||||||
) >& /dev/null < /dev/null & }
|
|
||||||
}
|
|
||||||
|
|
||||||
def -shell-params git-show %{ %sh{
|
case "$1" in
|
||||||
tmpfile=$(mktemp /tmp/kak-git-show-XXXXXX)
|
show|log) show_git_cmd_output "$@" ;;
|
||||||
if git show "$@" > ${tmpfile}; then
|
blame) run_git_blame ;;
|
||||||
[[ -n "$kak_opt_docsclient" ]] && echo "eval -client '$kak_opt_docsclient' %{"
|
show-diff)
|
||||||
|
echo "try %{ addhl flag_lines black git_diff_flags } catch %{}"
|
||||||
|
update_diff
|
||||||
|
;;
|
||||||
|
update-diff) update_diff ;;
|
||||||
|
*) echo "echo %{unknown git command '$1'}"; exit ;;
|
||||||
|
esac
|
||||||
|
|
||||||
echo "edit! -scratch *git-show*
|
|
||||||
exec |cat<space>${tmpfile}<ret>gk
|
|
||||||
nop %sh{rm ${tmpfile}}
|
|
||||||
setb filetype diff"
|
|
||||||
|
|
||||||
[[ -n "$kak_opt_docsclient" ]] && echo "}"
|
|
||||||
else
|
|
||||||
echo "echo %{git show '$@' failed, see *debug* buffer}"
|
|
||||||
rm ${tmpfile}
|
|
||||||
fi
|
|
||||||
}}
|
}}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user