Merge remote-tracking branch 'phaazon/custom-diff-char'
This commit is contained in:
commit
a8a53cc003
|
@ -1,6 +1,18 @@
|
||||||
declare-option -docstring "name of the client in which documentation is to be displayed" \
|
declare-option -docstring "name of the client in which documentation is to be displayed" \
|
||||||
str docsclient
|
str docsclient
|
||||||
|
|
||||||
|
declare-option -docstring "git diff added character" \
|
||||||
|
str git_diff_add_char "▏"
|
||||||
|
|
||||||
|
declare-option -docstring "git diff modified character" \
|
||||||
|
str git_diff_mod_char "▏"
|
||||||
|
|
||||||
|
declare-option -docstring "git diff deleted character" \
|
||||||
|
str git_diff_del_char "_"
|
||||||
|
|
||||||
|
declare-option -docstring "git diff top deleted character" \
|
||||||
|
str git_diff_top_char "‾"
|
||||||
|
|
||||||
hook -group git-log-highlight global WinSetOption filetype=git-log %{
|
hook -group git-log-highlight global WinSetOption filetype=git-log %{
|
||||||
require-module diff
|
require-module diff
|
||||||
add-highlighter window/git-log group
|
add-highlighter window/git-log group
|
||||||
|
@ -168,7 +180,12 @@ define-command -params 1.. \
|
||||||
(
|
(
|
||||||
cd_bufdir
|
cd_bufdir
|
||||||
git --no-pager diff --no-ext-diff -U0 "$kak_buffile" | perl -e '
|
git --no-pager diff --no-ext-diff -U0 "$kak_buffile" | perl -e '
|
||||||
|
use utf8;
|
||||||
$flags = $ENV{"kak_timestamp"};
|
$flags = $ENV{"kak_timestamp"};
|
||||||
|
$add_char = $ENV{"kak_opt_git_diff_add_char"};
|
||||||
|
$del_char = $ENV{"kak_opt_git_diff_del_char"};
|
||||||
|
$top_char = $ENV{"kak_opt_git_diff_top_char"};
|
||||||
|
$mod_char = $ENV{"kak_opt_git_diff_mod_char"};
|
||||||
foreach $line (<STDIN>) {
|
foreach $line (<STDIN>) {
|
||||||
if ($line =~ /@@ -(\d+)(?:,(\d+))? \+(\d+)(?:,(\d+))?/) {
|
if ($line =~ /@@ -(\d+)(?:,(\d+))? \+(\d+)(?:,(\d+))?/) {
|
||||||
$from_line = $1;
|
$from_line = $1;
|
||||||
|
@ -179,39 +196,39 @@ define-command -params 1.. \
|
||||||
if ($from_count == 0 and $to_count > 0) {
|
if ($from_count == 0 and $to_count > 0) {
|
||||||
for $i (0..$to_count - 1) {
|
for $i (0..$to_count - 1) {
|
||||||
$line = $to_line + $i;
|
$line = $to_line + $i;
|
||||||
$flags .= " $line|\{green\}+";
|
$flags .= " $line|\{green\}$add_char";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elsif ($from_count > 0 and $to_count == 0) {
|
elsif ($from_count > 0 and $to_count == 0) {
|
||||||
if ($to_line == 0) {
|
if ($to_line == 0) {
|
||||||
$flags .= " 1|\{red\}‾";
|
$flags .= " 1|\{red\}$top_char";
|
||||||
} else {
|
} else {
|
||||||
$flags .= " $to_line|\{red\}_";
|
$flags .= " $to_line|\{red\}$del_char";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elsif ($from_count > 0 and $from_count == $to_count) {
|
elsif ($from_count > 0 and $from_count == $to_count) {
|
||||||
for $i (0..$to_count - 1) {
|
for $i (0..$to_count - 1) {
|
||||||
$line = $to_line + $i;
|
$line = $to_line + $i;
|
||||||
$flags .= " $line|\{blue\}~";
|
$flags .= " $line|\{blue\}$mod_char";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elsif ($from_count > 0 and $from_count < $to_count) {
|
elsif ($from_count > 0 and $from_count < $to_count) {
|
||||||
for $i (0..$from_count - 1) {
|
for $i (0..$from_count - 1) {
|
||||||
$line = $to_line + $i;
|
$line = $to_line + $i;
|
||||||
$flags .= " $line|\{blue\}~";
|
$flags .= " $line|\{blue\}$mod_char";
|
||||||
}
|
}
|
||||||
for $i ($from_count..$to_count - 1) {
|
for $i ($from_count..$to_count - 1) {
|
||||||
$line = $to_line + $i;
|
$line = $to_line + $i;
|
||||||
$flags .= " $line|\{green\}+";
|
$flags .= " $line|\{green\}$add_char";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elsif ($to_count > 0 and $from_count > $to_count) {
|
elsif ($to_count > 0 and $from_count > $to_count) {
|
||||||
for $i (0..$to_count - 2) {
|
for $i (0..$to_count - 2) {
|
||||||
$line = $to_line + $i;
|
$line = $to_line + $i;
|
||||||
$flags .= " $line|\{blue\}~";
|
$flags .= " $line|\{blue\}$mod_char";
|
||||||
}
|
}
|
||||||
$last = $to_line + $to_count - 1;
|
$last = $to_line + $to_count - 1;
|
||||||
$flags .= " $last|\{blue+u\}~";
|
$flags .= " $last|\{blue+u\}$mod_char";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user