Skip to content
Permalink
Browse files
optimized
  • Loading branch information
Robin Schneider committed Nov 3, 2012
1 parent 2309fa9 commit 773e5b801cfd2ad9a2af8c9d379dd0e2f9afd3cf
Showing with 5 additions and 4 deletions.
  1. +2 −2 MyPackages/layoutRS.sty
  2. +3 −2 scripts/LaTeX-git-log
@@ -9,8 +9,8 @@
%\stepcounter{tocdepth}

%\KOMAoptions{parskip=half}
\setlength{\parindent}{0pt} %% Absatzeinzug
\setlength{\parskip}{1ex} %% Durchschuss %% Sollte nicht manuell geändert werden
%\setlength{\parindent}{0pt} %% Absatzeinzug
%\setlength{\parskip}{1ex} %% Durchschuss %% Sollte nicht manuell geändert werden
\RequirePackage[onehalfspacing]{setspace} %% Zeilenabstand festlegen
%\RequirePackage{titlesec}
%\titlespacing{name=\section,numberless}{\parindent}{1.3em}{0.5em}
@@ -59,11 +59,12 @@ say '\endfoot
## git log --date=short --pretty=format:'%ad'
## for privacy
my @lines;
my @git_command = qw(git log --date=short --shortstat);
if ($print_author) {
@lines = reverse capturex(qw(git log --date=short --shortstat),
@lines = reverse capturex(@git_command,
q(--pretty=format:%d & %an & %ad & %s));
} else {
@lines = reverse capturex(qw(git log --date=short --shortstat),
@lines = reverse capturex(@git_command,
q(--pretty=format:%d & %ad & %s));
}
my $which_line = 0;

0 comments on commit 773e5b8

Please sign in to comment.