2017-11-03 08:34:41 +01:00
|
|
|
declare-option -docstring "name of the client in which documentation is to be displayed" \
|
2017-05-16 13:35:43 +02:00
|
|
|
str docsclient
|
2013-03-29 19:37:35 +01:00
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook -group git-log-highlight global WinSetOption filetype=git-log %{
|
2018-08-08 19:11:55 +02:00
|
|
|
add-highlighter window/git-log group
|
2019-05-23 04:41:55 +02:00
|
|
|
add-highlighter window/git-log/ regex '^(commit) ([0-9a-f]+)( [^\n]+)?$' 1:keyword 2:meta 3:comment
|
2018-08-09 11:27:40 +02:00
|
|
|
add-highlighter window/git-log/ regex '^([a-zA-Z_-]+:) (.*?)$' 1:variable 2:value
|
2018-07-07 01:51:18 +02:00
|
|
|
add-highlighter window/git-log/ ref diff # highlight potential diffs from the -p option
|
2018-11-28 10:39:18 +01:00
|
|
|
|
2018-12-11 00:11:35 +01:00
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/git-log }
|
2013-04-22 19:35:22 +02:00
|
|
|
}
|
2013-03-29 19:37:35 +01:00
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook -group git-status-highlight global WinSetOption filetype=git-status %{
|
2018-08-08 19:11:55 +02:00
|
|
|
add-highlighter window/git-status group
|
2018-07-07 01:51:18 +02:00
|
|
|
add-highlighter window/git-status/ regex '^\h+(?:((?:both )?modified:)|(added:|new file:)|(deleted(?: by \w+)?:)|(renamed:)|(copied:))(?:.*?)$' 1:yellow 2:green 3:red 4:cyan 5:blue 6:magenta
|
2018-11-28 10:39:18 +01:00
|
|
|
|
2018-12-11 00:11:35 +01:00
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/git-status }
|
2014-04-23 23:21:40 +02:00
|
|
|
}
|
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
declare-option -hidden line-specs git_blame_flags
|
|
|
|
declare-option -hidden line-specs git_diff_flags
|
2013-04-22 19:35:22 +02:00
|
|
|
|
2017-11-03 08:34:41 +01:00
|
|
|
define-command -params 1.. \
|
2018-05-06 23:29:52 +02:00
|
|
|
-docstring %sh{printf 'git [<arguments>]: git wrapping helper
|
2016-10-11 09:03:41 +02:00
|
|
|
All the optional arguments are forwarded to the git utility
|
2019-07-01 14:56:51 +02:00
|
|
|
Available commands:\n add\n rm\n blame\n commit\n checkout\n diff\n hide-blame\n hide-diff\n init\n log\n show\n show-diff\n status\n update-diff'} \
|
2018-09-26 23:42:01 +02:00
|
|
|
-shell-script-candidates %{
|
2018-04-21 04:43:59 +02:00
|
|
|
if [ $kak_token_to_complete -eq 0 ]; then
|
2019-04-20 10:30:33 +02:00
|
|
|
printf "add\nrm\nblame\ncommit\ncheckout\ndiff\nhide-blame\nhide-diff\nlog\nshow\nshow-diff\ninit\nstatus\nupdate-diff\n"
|
2018-04-21 04:43:59 +02:00
|
|
|
else
|
|
|
|
case "$1" in
|
|
|
|
commit) printf -- "--amend\n--no-edit\n--all\n--reset-author\n--fixup\n--squash\n"; git ls-files -m ;;
|
|
|
|
add) git ls-files -dmo --exclude-standard ;;
|
|
|
|
rm) git ls-files -c ;;
|
|
|
|
esac
|
|
|
|
fi
|
2014-08-14 20:42:24 +02:00
|
|
|
} \
|
2018-05-06 23:29:52 +02:00
|
|
|
git %{ evaluate-commands %sh{
|
2018-08-12 08:41:45 +02:00
|
|
|
cd_bufdir() {
|
|
|
|
dirname_buffer="${kak_buffile%/*}"
|
|
|
|
cd "${dirname_buffer}" 2>/dev/null || {
|
|
|
|
printf 'echo -markup {Error}Unable to change the current working directory to: %s' "${dirname_buffer}"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-22 19:35:22 +02:00
|
|
|
show_git_cmd_output() {
|
|
|
|
local filetype
|
|
|
|
case "$1" in
|
2013-04-25 18:52:06 +02:00
|
|
|
show|diff) filetype=diff ;;
|
2013-04-22 19:35:22 +02:00
|
|
|
log) filetype=git-log ;;
|
2014-04-23 23:21:40 +02:00
|
|
|
status) filetype=git-status ;;
|
2013-04-22 19:35:22 +02:00
|
|
|
esac
|
2017-06-09 13:05:31 +02:00
|
|
|
output=$(mktemp -d "${TMPDIR:-/tmp}"/kak-git.XXXXXXXX)/fifo
|
2014-05-06 20:39:24 +02:00
|
|
|
mkfifo ${output}
|
2019-06-10 18:00:11 +02:00
|
|
|
( git "$@" > ${output} 2>&1 & ) > /dev/null 2>&1 < /dev/null
|
2014-05-06 20:39:24 +02:00
|
|
|
|
2018-04-27 11:44:21 +02:00
|
|
|
printf %s "evaluate-commands -try-client '$kak_opt_docsclient' %{
|
2014-05-06 20:39:24 +02:00
|
|
|
edit! -fifo ${output} *git*
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype '${filetype}'
|
2018-08-19 00:04:31 +02:00
|
|
|
hook -always -once buffer BufCloseFifo .* %{ nop %sh{ rm -r $(dirname ${output}) } }
|
2014-05-06 20:39:24 +02:00
|
|
|
}"
|
2013-04-22 19:35:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
run_git_blame() {
|
|
|
|
(
|
2019-09-22 01:29:19 +02:00
|
|
|
cd_bufdir
|
2017-11-03 09:09:45 +01:00
|
|
|
printf %s "evaluate-commands -client '$kak_client' %{
|
2018-08-09 11:27:40 +02:00
|
|
|
try %{ add-highlighter window/git-blame flag-lines Information git_blame_flags }
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer=$kak_bufname git_blame_flags '$kak_timestamp'
|
2014-03-02 03:05:38 +01:00
|
|
|
}" | kak -p ${kak_session}
|
2016-06-21 20:00:41 +02:00
|
|
|
git blame "$@" --incremental ${kak_buffile} | awk '
|
2014-03-25 10:25:37 +01:00
|
|
|
function send_flags(text, flag, i) {
|
|
|
|
if (line == "") { return; }
|
|
|
|
text=substr(sha,1,8) " " dates[sha] " " authors[sha]
|
2015-08-23 13:13:14 +02:00
|
|
|
# gsub("|", "\\|", text)
|
2018-05-30 15:28:50 +02:00
|
|
|
gsub("~", "~~", text)
|
|
|
|
flag="%~" line "|" text "~"
|
2014-03-25 10:25:37 +01:00
|
|
|
for ( i=1; i < count; i++ ) {
|
2018-05-30 15:28:50 +02:00
|
|
|
flag=flag " %~" line+i "|" text "~"
|
2014-03-25 10:25:37 +01:00
|
|
|
}
|
|
|
|
cmd = "kak -p " ENVIRON["kak_session"]
|
2018-05-30 15:28:50 +02:00
|
|
|
print "set-option -add buffer=" ENVIRON["kak_bufname"] " git_blame_flags " flag | cmd
|
2014-03-25 10:25:37 +01:00
|
|
|
close(cmd)
|
|
|
|
}
|
2019-05-02 21:27:25 +02:00
|
|
|
/^([0-9a-f]+) ([0-9]+) ([0-9]+) ([0-9]+)/ {
|
2014-03-25 10:25:37 +01:00
|
|
|
send_flags()
|
|
|
|
sha=$1
|
|
|
|
line=$3
|
|
|
|
count=$4
|
|
|
|
}
|
|
|
|
/^author / { authors[sha]=substr($0,8) }
|
|
|
|
/^author-time ([0-9]*)/ {
|
|
|
|
cmd = "date -d @" $2 " +\"%F %T\""
|
|
|
|
cmd | getline dates[sha]
|
2018-06-18 23:43:13 +02:00
|
|
|
close(cmd)
|
2014-03-25 10:25:37 +01:00
|
|
|
}
|
|
|
|
END { send_flags(); }'
|
|
|
|
) > /dev/null 2>&1 < /dev/null &
|
2013-04-22 19:35:22 +02:00
|
|
|
}
|
2013-04-11 23:09:42 +02:00
|
|
|
|
2019-10-09 08:39:58 +02:00
|
|
|
run_git_cmd() {
|
|
|
|
if git "${@}" > /dev/null 2>&1; then
|
|
|
|
printf %s "echo -markup '{Information}git $1 succeeded'"
|
|
|
|
else
|
|
|
|
printf %s "echo -markup '{Error}git $1 failed'"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2013-04-22 19:35:22 +02:00
|
|
|
update_diff() {
|
2019-09-22 01:29:19 +02:00
|
|
|
(
|
|
|
|
cd_bufdir
|
|
|
|
git --no-pager diff -U0 "$kak_buffile" | perl -e '
|
2018-07-01 02:06:47 +02:00
|
|
|
$flags = $ENV{"kak_timestamp"};
|
|
|
|
foreach $line (<STDIN>) {
|
|
|
|
if ($line =~ /@@ -(\d+)(?:,(\d+))? \+(\d+)(?:,(\d+))?/) {
|
|
|
|
$from_line = $1;
|
|
|
|
$from_count = ($2 eq "" ? 1 : $2);
|
|
|
|
$to_line = $3;
|
|
|
|
$to_count = ($4 eq "" ? 1 : $4);
|
|
|
|
|
|
|
|
if ($from_count == 0 and $to_count > 0) {
|
|
|
|
for $i (0..$to_count - 1) {
|
|
|
|
$line = $to_line + $i;
|
2018-05-30 15:28:50 +02:00
|
|
|
$flags .= " $line|\{green\}+";
|
2018-07-01 02:06:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif ($from_count > 0 and $to_count == 0) {
|
|
|
|
if ($to_line == 0) {
|
2018-05-30 15:28:50 +02:00
|
|
|
$flags .= " 1|\{red\}‾";
|
2018-07-01 02:06:47 +02:00
|
|
|
} else {
|
2018-05-30 15:28:50 +02:00
|
|
|
$flags .= " $to_line|\{red\}_";
|
2018-07-01 02:06:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif ($from_count > 0 and $from_count == $to_count) {
|
|
|
|
for $i (0..$to_count - 1) {
|
|
|
|
$line = $to_line + $i;
|
2018-05-30 15:28:50 +02:00
|
|
|
$flags .= " $line|\{blue\}~";
|
2018-07-01 02:06:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif ($from_count > 0 and $from_count < $to_count) {
|
|
|
|
for $i (0..$from_count - 1) {
|
|
|
|
$line = $to_line + $i;
|
2018-05-30 15:28:50 +02:00
|
|
|
$flags .= " $line|\{blue\}~";
|
2018-07-01 02:06:47 +02:00
|
|
|
}
|
|
|
|
for $i ($from_count..$to_count - 1) {
|
|
|
|
$line = $to_line + $i;
|
2018-05-30 15:28:50 +02:00
|
|
|
$flags .= " $line|\{green\}+";
|
2018-07-01 02:06:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif ($to_count > 0 and $from_count > $to_count) {
|
|
|
|
for $i (0..$to_count - 2) {
|
|
|
|
$line = $to_line + $i;
|
2018-05-30 15:28:50 +02:00
|
|
|
$flags .= " $line|\{blue\}~";
|
2018-07-01 02:06:47 +02:00
|
|
|
}
|
|
|
|
$last = $to_line + $to_count - 1;
|
2018-05-30 15:28:50 +02:00
|
|
|
$flags .= " $last|\{blue+u\}~";
|
2018-07-01 02:06:47 +02:00
|
|
|
}
|
|
|
|
}
|
2014-03-25 10:25:37 +01:00
|
|
|
}
|
2018-07-01 02:06:47 +02:00
|
|
|
print "set-option buffer git_diff_flags $flags"
|
2019-09-15 21:29:33 +02:00
|
|
|
' )
|
2013-04-22 19:35:22 +02:00
|
|
|
}
|
2013-04-17 19:15:15 +02:00
|
|
|
|
2015-01-15 20:58:43 +01:00
|
|
|
commit() {
|
2015-01-21 14:43:00 +01:00
|
|
|
# Handle case where message needs not to be edited
|
2018-04-21 04:43:59 +02:00
|
|
|
if grep -E -q -e "-m|-F|-C|--message=.*|--file=.*|--reuse-message=.*|--no-edit|--fixup.*|--squash.*"; then
|
2015-01-21 14:43:00 +01:00
|
|
|
if git commit "$@" > /dev/null 2>&1; then
|
2017-07-19 17:18:52 +02:00
|
|
|
echo 'echo -markup "{Information}Commit succeeded"'
|
2015-01-21 14:43:00 +01:00
|
|
|
else
|
2017-07-19 17:18:52 +02:00
|
|
|
echo 'echo -markup "{Error}Commit failed"'
|
2015-01-21 14:43:00 +01:00
|
|
|
fi
|
|
|
|
exit
|
|
|
|
fi <<-EOF
|
|
|
|
$@
|
|
|
|
EOF
|
|
|
|
|
2015-01-15 20:58:43 +01:00
|
|
|
# fails, and generate COMMIT_EDITMSG
|
2016-10-24 21:45:57 +02:00
|
|
|
GIT_EDITOR='' EDITOR='' git commit "$@" > /dev/null 2>&1
|
2015-01-15 20:58:43 +01:00
|
|
|
msgfile="$(git rev-parse --git-dir)/COMMIT_EDITMSG"
|
2016-05-09 14:52:54 +02:00
|
|
|
printf %s "edit '$msgfile'
|
2018-05-06 23:29:52 +02:00
|
|
|
hook buffer BufWritePost '.*\Q$msgfile\E' %{ evaluate-commands %sh{
|
2018-07-04 11:42:03 +02:00
|
|
|
if git commit -F '$msgfile' --cleanup=strip $* > /dev/null; then
|
2017-11-03 09:09:45 +01:00
|
|
|
printf %s 'evaluate-commands -client $kak_client echo -markup %{{Information}Commit succeeded}; delete-buffer'
|
2015-01-15 20:58:43 +01:00
|
|
|
else
|
2017-11-03 09:09:45 +01:00
|
|
|
printf %s 'evaluate-commands -client $kak_client echo -markup %{{Error}Commit failed}'
|
2015-01-15 20:58:43 +01:00
|
|
|
fi
|
|
|
|
} }"
|
|
|
|
}
|
|
|
|
|
2013-04-22 19:35:22 +02:00
|
|
|
case "$1" in
|
2019-10-09 08:39:58 +02:00
|
|
|
show|log|diff|status)
|
|
|
|
show_git_cmd_output "$@"
|
|
|
|
;;
|
|
|
|
blame)
|
|
|
|
shift
|
|
|
|
run_git_blame "$@"
|
|
|
|
;;
|
|
|
|
hide-blame)
|
2016-05-09 14:52:54 +02:00
|
|
|
printf %s "try %{
|
2018-08-08 19:11:55 +02:00
|
|
|
set-option buffer=$kak_bufname git_blame_flags $kak_timestamp
|
2018-07-07 01:51:18 +02:00
|
|
|
remove-highlighter window/git-blame
|
2015-05-10 18:20:42 +02:00
|
|
|
}"
|
|
|
|
;;
|
2019-10-09 08:39:58 +02:00
|
|
|
show-diff)
|
|
|
|
echo 'try %{ add-highlighter window/git-diff flag-lines Default git_diff_flags }'
|
|
|
|
update_diff
|
|
|
|
;;
|
|
|
|
hide-diff)
|
|
|
|
echo 'try %{ remove-highlighter window/git-diff }'
|
|
|
|
;;
|
|
|
|
update-diff) update_diff ;;
|
|
|
|
commit)
|
|
|
|
shift
|
|
|
|
commit "$@"
|
|
|
|
;;
|
|
|
|
init)
|
|
|
|
shift
|
|
|
|
git init "$@" > /dev/null 2>&1
|
|
|
|
;;
|
|
|
|
add|rm)
|
|
|
|
cmd="$1"
|
|
|
|
shift
|
|
|
|
run_git_cmd $cmd "${@:-${kak_buffile}}"
|
|
|
|
;;
|
|
|
|
reset|checkout)
|
|
|
|
run_git_cmd "$@"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
printf %s "echo -markup %{{Error}unknown git command '$1'}"
|
|
|
|
exit
|
|
|
|
;;
|
2013-04-22 19:35:22 +02:00
|
|
|
esac
|
2013-04-11 23:09:42 +02:00
|
|
|
}}
|