Skip to content

Commit

Permalink
Update for version tig-2.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
koutcher committed Feb 4, 2023
1 parent 108af4c commit ed38c17
Show file tree
Hide file tree
Showing 8 changed files with 147 additions and 23 deletions.
6 changes: 3 additions & 3 deletions INSTALL.html
Original file line number Diff line number Diff line change
Expand Up @@ -742,8 +742,8 @@ <h1>Installation instructions</h1>
<div class="paragraph"><p>Download a tarball from <a href="https://github.com/jonas/tig/releases">https://github.com/jonas/tig/releases</a> or clone the Tig
repository <a href="https://github.com/jonas/tig">git://github.com/jonas/tig.git</a>.</p></div>
<div class="paragraph"><p>The latest version is:
<a href="https://github.com/jonas/tig/releases/download/tig-2.5.7/tig-2.5.7.tar.gz">tig-2.5.7</a>
<a href="https://github.com/jonas/tig/releases/download/tig-2.5.7/tig-2.5.7.tar.gz.sha256">(sha256)</a></p></div>
<a href="https://github.com/jonas/tig/releases/download/tig-2.5.8/tig-2.5.8.tar.gz">tig-2.5.8</a>
<a href="https://github.com/jonas/tig/releases/download/tig-2.5.8/tig-2.5.8.tar.gz.sha256">(sha256)</a></p></div>
<div class="paragraph"><p><strong>Note:</strong> Do not use the tar.gz file for version 2.0 because it will fail
to compile due to issue <a href="https://github.com/jonas/tig/pull/283">#283</a> and
<a href="https://github.com/jonas/tig/issues/337">#337</a></p></div>
Expand Down Expand Up @@ -1044,7 +1044,7 @@ <h2 id="_tools_and_packages">Tools and packages</h2>
<div id="footer">
<div id="footer-text">
Last updated
2022-08-25 19:27:00 CEST
2023-02-04 13:30:10 CET
</div>
</div>
</body>
Expand Down
93 changes: 92 additions & 1 deletion NEWS.html
Original file line number Diff line number Diff line change
Expand Up @@ -738,6 +738,97 @@ <h1>Release notes</h1>
</div>
<div id="content">
<div class="sect1">
<h2 id="_tig_2_5_8">tig-2.5.8</h2>
<div class="sectionbody">
<div class="paragraph"><p>Improvements:</p></div>
<div class="ulist"><ul>
<li>
<p>
Update utf8proc to v2.8.0, supporting Unicode 15.
</p>
</li>
<li>
<p>
Support editing from the pager and the log (-p) views. (#1243)
</p>
</li>
<li>
<p>
Adjust build for native Apple Silicon.
</p>
</li>
<li>
<p>
Autoscroll the pager view while loading. (#1223)
</p>
</li>
<li>
<p>
Automatically show next diff in the status view. (#413, #469)
</p>
</li>
<li>
<p>
Replace <code>Unknown</code> author with <code>Not Committed Yet</code>.
</p>
</li>
<li>
<p>
Allow use of regular expressions for coloring. (#1249)
</p>
</li>
<li>
<p>
Add support for option word-diff-regex. (#1252)
</p>
</li>
<li>
<p>
Include original blob name in temporary filename. (#1254)
</p>
</li>
</ul></div>
<div class="paragraph"><p>Bug fixes:</p></div>
<div class="ulist"><ul>
<li>
<p>
Use %(file_old) for old filename in the blame view. (#1226)
</p>
</li>
<li>
<p>
Correctly report which version of libncurses was linked. (#1240, #1241)
</p>
</li>
<li>
<p>
Fix stage view closing when holding the ] key. (#1245)
</p>
</li>
<li>
<p>
Make tests work from a path with symlinks.
</p>
</li>
<li>
<p>
Fix encoding of very long lines. (#1227)
</p>
</li>
<li>
<p>
Fix diffstat color for tig log -p.
</p>
</li>
<li>
<p>
Clean IO before closing a view or quitting.
</p>
</li>
</ul></div>
</div>
</div>
<div class="sect1">
<h2 id="_tig_2_5_7">tig-2.5.7</h2>
<div class="sectionbody">
<div class="paragraph"><p>Bug fixes:</p></div>
Expand Down Expand Up @@ -4914,7 +5005,7 @@ <h2 id="_tig_0_9">tig-0.9</h2>
<div id="footer">
<div id="footer-text">
Last updated
2022-08-25 19:27:00 CEST
2023-02-04 13:30:10 CET
</div>
</div>
</body>
Expand Down
8 changes: 6 additions & 2 deletions doc/manual.html
Original file line number Diff line number Diff line change
Expand Up @@ -1224,7 +1224,7 @@ <h3 id="commit-id">2.2. Browsing State and User-defined Commands</h3>
</tr>
<tr>
<td align="left" valign="top"><p class="table"><code>%(text)</code></p></td>
<td align="left" valign="top"><p class="table">The text of the currently selected line.</p></td>
<td align="left" valign="top"><p class="table">The text column of the currently selected line.</p></td>
</tr>
<tr>
<td align="left" valign="top"><p class="table"><code>%(repo:head)</code></p></td>
Expand Down Expand Up @@ -1738,6 +1738,10 @@ <h3 id="searching">4.6. Searching</h3>
</tbody>
</table>
</div>
<div class="paragraph"><p>The format for patterns is either POSIX.2 &#8220;extended&#8221; REs or PCRE / PCRE2 if
Tig was compiled with PCRE / PCRE2 support (check with <code>tig -v</code>). See the
manpage of re_format(7) or pcrepattern(3) / pcre2pattern(3).</p></div>
<div class="paragraph"><p>Case sensitivity can be controlled with variable ignore-case.</p></div>
</div>
<div class="sect2">
<h3 id="misc-keys">4.7. Misc</h3>
Expand Down Expand Up @@ -2100,7 +2104,7 @@ <h2 id="references">8. See Also</h2>
<div id="footer">
<div id="footer-text">
Last updated
2022-07-12 19:53:26 CEST
2023-02-04 13:30:10 CET
</div>
</div>
</body>
Expand Down
8 changes: 5 additions & 3 deletions doc/tig.1
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
.\" Title: tig
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 08/25/2022
.\" Date: 02/04/2023
.\" Manual: Tig Manual
.\" Source: Tig 2.5.7
.\" Source: Tig 2.5.8
.\" Language: English
.\"
.TH "TIG" "1" "08/25/2022" "Tig 2\&.5\&.7" "Tig Manual"
.TH "TIG" "1" "02/04/2023" "Tig 2\&.5\&.8" "Tig Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
Expand Down Expand Up @@ -50,6 +50,8 @@ Tig is an ncurses\-based text\-mode interface for git(1)\&. It functions mainly
.SH "OPTIONS"
.sp
Command line options recognized by Tig include all valid git\-log(1) and git\-diff(1) options, as well as the following subcommands and Tig\-specific options\&. The first command line parameter not starting with "\-" is interpreted as being either a revision specification or a path and will end the option parsing\&. All additional options will be passed to the underlying Git command\&.
.sp
Note that this means that any arguments to options should be specified together\&. For example, run tig \-Sfoo instead of tig \-S foo, and tig \-\-grep=foo instead of tig \-\-grep foo, otherwise foo will be interpreted as a revision rather than an argument\&.
.PP
show
.RS 4
Expand Down
6 changes: 5 additions & 1 deletion doc/tig.1.html
Original file line number Diff line number Diff line change
Expand Up @@ -780,6 +780,10 @@ <h2 id="_options">OPTIONS</h2>
options. The first command line parameter not starting with "-" is interpreted
as being either a revision specification or a path and will end the option
parsing. All additional options will be passed to the underlying Git command.</p></div>
<div class="paragraph"><p>Note that this means that any arguments to options should be specified
together. For example, run tig -Sfoo instead of tig -S foo, and tig --grep=foo
instead of tig --grep foo, otherwise foo will be interpreted as a revision
rather than an argument.</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
show
Expand Down Expand Up @@ -1202,7 +1206,7 @@ <h2 id="_see_also">SEE ALSO</h2>
<div id="footer">
<div id="footer-text">
Last updated
2022-08-16 23:31:11 CEST
2023-02-04 13:30:10 CET
</div>
</div>
</body>
Expand Down
12 changes: 8 additions & 4 deletions doc/tigmanual.7
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
.\" Title: tigmanual
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 08/25/2022
.\" Date: 02/04/2023
.\" Manual: Tig Manual
.\" Source: Tig 2.5.7
.\" Source: Tig 2.5.8
.\" Language: English
.\"
.TH "TIGMANUAL" "7" "08/25/2022" "Tig 2\&.5\&.7" "Tig Manual"
.TH "TIGMANUAL" "7" "02/04/2023" "Tig 2\&.5\&.8" "Tig Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
Expand Down Expand Up @@ -389,7 +389,7 @@ T{
%(text)
T}:T{
.sp
The text of the currently selected line\&.
The text column of the currently selected line\&.
T}
T{
.sp
Expand Down Expand Up @@ -1098,6 +1098,10 @@ Find previous match for the current search regexp\&.
T}
.TE
.sp 1
.sp
The format for patterns is either POSIX\&.2 \(lqextended\(rq REs or PCRE / PCRE2 if Tig was compiled with PCRE / PCRE2 support (check with tig \-v)\&. See the manpage of re_format(7) or pcrepattern(3) / pcre2pattern(3)\&.
.sp
Case sensitivity can be controlled with variable ignore\-case\&.
.SS "Misc"
.TS
tab(:);
Expand Down
17 changes: 12 additions & 5 deletions doc/tigrc.5
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
.\" Title: tigrc
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: 08/25/2022
.\" Date: 02/04/2023
.\" Manual: Tig Manual
.\" Source: Tig 2.5.7
.\" Source: Tig 2.5.8
.\" Language: English
.\"
.TH "TIGRC" "5" "08/25/2022" "Tig 2\&.5\&.7" "Tig Manual"
.TH "TIGRC" "5" "02/04/2023" "Tig 2\&.5\&.8" "Tig Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
Expand Down Expand Up @@ -506,6 +506,11 @@ set mouse\-scroll = 1\&. Mouse support requires that ncurses itself support mous
set mouse = true\&.
.RE
.PP
\fIpager\-autoscroll\fR (bool)
.RS 4
Whether to scroll automatically the pager view while loading\&. Move the cursor out of the last line to stop scrolling and back in to resume\&.
.RE
.PP
\fIpgrp\fR (bool)
.RS 4
Make tig process\-group leader when starting and clean all processes when exiting\&. Off by default\&. Do not enable this option if you are using a Zsh version affected by zsh\-workers/43379\&. Run
Expand Down Expand Up @@ -1493,7 +1498,7 @@ T{
%(text)
T}:T{
.sp
The text of the currently selected line\&.
The text column of the currently selected line\&.
T}
T{
.sp
Expand Down Expand Up @@ -2266,6 +2271,8 @@ color diff\-chunk magenta default
color "Reported\-by:" green default
# View\-specific color
color tree\&.date black cyan bold
# Custom color
color "/(note|warning|error):/" yellow default bold
.fi
.if n \{\
.RE
Expand Down Expand Up @@ -2296,7 +2303,7 @@ Or in the Git configuration files:
.PP
Area names
.RS 4
Can be either a built\-in area name or a custom quoted string\&. The latter allows custom color rules to be added for lines matching a quoted string\&. Valid built\-in area names are described below\&. Note, all names are case\-insensitive, and you may use
Can be either a built\-in area name or a custom quoted string\&. The latter allows custom color rules to be added for lines matching a quoted string\&. Strings of the form "/\&.../" are interpreted as regular expressions\&. Valid built\-in area names are described below\&. Note, all names are case\-insensitive, and you may use
\fI\-\fR, and
\fI_\fR
interchangeably, e\&.g\&. "Diff\-Header" and "DIFF_HEADER" are the same\&. View\-specific colors can be defined by prefixing the view name to the area name, e\&.g\&. "stage\&.diff\-chunk" and "diff\&.diff\-chunk"\&.
Expand Down
20 changes: 16 additions & 4 deletions doc/tigrc.5.html
Original file line number Diff line number Diff line change
Expand Up @@ -1305,6 +1305,15 @@ <h3 id="_variables">Variables</h3>
</p>
</dd>
<dt class="hdlist1">
<em>pager-autoscroll</em> (bool)
</dt>
<dd>
<p>
Whether to scroll automatically the pager view while loading. Move the
cursor out of the last line to stop scrolling and back in to resume.
</p>
</dd>
<dt class="hdlist1">
<em>pgrp</em> (bool)
</dt>
<dd>
Expand Down Expand Up @@ -2042,7 +2051,7 @@ <h4 id="_browsing_state_variables">Browsing state variables</h4>
</tr>
<tr>
<td align="left" valign="top"><p class="table"><code>%(text)</code></p></td>
<td align="left" valign="top"><p class="table">The text of the currently selected line.</p></td>
<td align="left" valign="top"><p class="table">The text column of the currently selected line.</p></td>
</tr>
<tr>
<td align="left" valign="top"><p class="table"><code>%(repo:head)</code></p></td>
Expand Down Expand Up @@ -2524,7 +2533,9 @@ <h2 id="_color_command">Color command</h2>
color diff-chunk magenta default
color "Reported-by:" green default
# View-specific color
color tree.date black cyan bold</code></pre>
color tree.date black cyan bold
# Custom color
color "/(note|warning|error):/" yellow default bold</code></pre>
</div></div>
<div class="paragraph"><p>Or in the Git configuration files:</p></div>
<div class="listingblock">
Expand All @@ -2547,7 +2558,8 @@ <h2 id="_color_command">Color command</h2>
<p>
Can be either a built-in area name or a custom quoted string. The
latter allows custom color rules to be added for lines matching a
quoted string.
quoted string. Strings of the form "/&#8230;/" are interpreted as
regular expressions.
Valid built-in area names are described below. Note, all names are
case-insensitive, and you may use <em>-</em>, and <em>_</em> interchangeably,
e.g. "Diff-Header" and "DIFF_HEADER" are the same.
Expand Down Expand Up @@ -2905,7 +2917,7 @@ <h2 id="_see_also">SEE ALSO</h2>
<div id="footer">
<div id="footer-text">
Last updated
2022-08-16 23:31:39 CEST
2023-02-04 13:30:10 CET
</div>
</div>
</body>
Expand Down

0 comments on commit ed38c17

Please sign in to comment.