File ChangeLog changed (mode: 100644) (index 697ce232a..70400d2a2) |
5 |
5 |
Corrected documentation on how the use of different preview macros affects |
Corrected documentation on how the use of different preview macros affects |
6 |
6 |
classification of a previewer. |
classification of a previewer. |
7 |
7 |
|
|
|
8 |
|
Say "changed" when describing the meaning of "showdifferent" of :compare. |
|
9 |
|
Thanks to aleksejrs. |
|
10 |
|
|
8 |
11 |
Fixed absolute paths comparing equal to similar relative paths (regression |
Fixed absolute paths comparing equal to similar relative paths (regression |
9 |
12 |
in 0.14-beta). |
in 0.14-beta). |
10 |
13 |
|
|
File data/man/vifm.1 changed (mode: 100644) (index aae8e4827..5a8832b73) |
1 |
|
.TH VIFM 1 "27 January 2025" "vifm 0.14-beta" |
|
|
1 |
|
.TH VIFM 1 "1 February 2025" "vifm 0.14-beta" |
2 |
2 |
.\" --------------------------------------------------------------------------- |
.\" --------------------------------------------------------------------------- |
3 |
3 |
.SH NAME |
.SH NAME |
4 |
4 |
.\" --------------------------------------------------------------------------- |
.\" --------------------------------------------------------------------------- |
|
... |
... |
Comparison tweaks: |
7082 |
7082 |
|
|
7083 |
7083 |
Which results to show (has no effect for single pane comparison): |
Which results to show (has no effect for single pane comparison): |
7084 |
7084 |
\- showidentical \- toggle showing of identical files; |
\- showidentical \- toggle showing of identical files; |
7085 |
|
\- showdifferent \- toggle showing of different files; |
|
|
7085 |
|
\- showdifferent \- toggle showing of changed files; |
7086 |
7086 |
\- showuniqueleft \- toggle showing of unique top/left files; |
\- showuniqueleft \- toggle showing of unique top/left files; |
7087 |
7087 |
\- showuniqueright \- toggle showing of unique bottom/right files. |
\- showuniqueright \- toggle showing of unique bottom/right files. |
7088 |
7088 |
|
|
File data/vim/doc/app/vifm-app.txt changed (mode: 100644) (index bd536c0ed..82c53371b) |
1 |
|
*vifm-app.txt* For Vifm version 0.14-beta Last change: 2025 Jan 27 |
|
|
1 |
|
*vifm-app.txt* For Vifm version 0.14-beta Last change: 2025 Feb 1 |
2 |
2 |
|
|
3 |
3 |
Email for bugs and suggestions: <xaizek@posteo.net> |
Email for bugs and suggestions: <xaizek@posteo.net> |
4 |
4 |
|
|
|
... |
... |
Comparison tweaks: |
5954 |
5954 |
|
|
5955 |
5955 |
Which results to show (has no effect for single pane comparison): |
Which results to show (has no effect for single pane comparison): |
5956 |
5956 |
- showidentical - toggle showing of identical files; |
- showidentical - toggle showing of identical files; |
5957 |
|
- showdifferent - toggle showing of different files; |
|
|
5957 |
|
- showdifferent - toggle showing of changed files; |
5958 |
5958 |
- showuniqueleft - toggle showing of unique top/left files; |
- showuniqueleft - toggle showing of unique top/left files; |
5959 |
5959 |
- showuniqueright - toggle showing of unique bottom/right files. |
- showuniqueright - toggle showing of unique bottom/right files. |
5960 |
5960 |
|
|
File src/cmd_completion.c changed (mode: 100644) (index e50202112..a38b94673) |
... |
... |
complete_compare(const char str[]) |
548 |
548 |
{ "skipempty", "exclude empty files from comparison" }, |
{ "skipempty", "exclude empty files from comparison" }, |
549 |
549 |
|
|
550 |
550 |
{ "showidentical", "toggle identical files viewing into comparison" }, |
{ "showidentical", "toggle identical files viewing into comparison" }, |
551 |
|
{ "showdifferent", "toggle different files viewing into comparison" }, |
|
|
551 |
|
{ "showdifferent", "toggle changed files viewing into comparison" }, |
552 |
552 |
{ "showuniqueleft", "toggle unique left files viewing into comparison" }, |
{ "showuniqueleft", "toggle unique left files viewing into comparison" }, |
553 |
553 |
{ "showuniqueright", "toggle unique right files viewing into comparison" }, |
{ "showuniqueright", "toggle unique right files viewing into comparison" }, |
554 |
554 |
|
|