From 80dbae3775b61318d17509f7684d87c4e5c6840e Mon Sep 17 00:00:00 2001
From: Brian Lowe <mc-hobbit@groupbcl.ca>
Date: Sun, 22 Jan 2017 13:47:56 -0600
Subject: [PATCH] Ticket #3742: remove reference to $MC_* variables and change
'temporal' to 'temporary'
---
misc/mc.ext.in | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/misc/mc.ext.in b/misc/mc.ext.in
index a14a984..87c6ced 100644
a
|
b
|
|
3 | 3 | # Empty lines and lines starting with "#" are ignored. |
4 | 4 | # |
5 | 5 | # IMPORTANT: mc scans this file only at startup or after updating it using the |
6 | | # mc "Edit extension file" command (F9-c-e). If you edit the file otherwise |
| 6 | # mc "Edit extension file" command (F9-c-e). If you edit the file otherwise |
7 | 7 | # while mc is running, you will need to (F9-c-e) and exit the editor for your |
8 | 8 | # changes to take effect, or exit mc and restart. |
9 | 9 | # |
… |
… |
|
15 | 15 | # |
16 | 16 | # shell |
17 | 17 | # DESC is, when starting with a dot, an extension (no wildcards.) |
18 | | # All the files matching '*DESC'. Example: .tar matches *.tar; if it |
19 | | # doesn't start with a dot, it matches only a file of that name. |
| 18 | # All the files matching '*DESC'. Example: .tar matches *.tar; if |
| 19 | # it doesn't start with a dot, it matches only a file of that name. |
20 | 20 | # |
21 | 21 | # shell/i |
22 | 22 | # DESC is, when starting with a dot, an extension (no wildcards.) |
… |
… |
|
72 | 72 | # %% |
73 | 73 | # The '%' character |
74 | 74 | # |
75 | | # %p or $MC_EXT_BASENAME |
| 75 | # %p |
76 | 76 | # Name of the current file (without path, but 'pwd' is its path.) |
77 | 77 | # |
78 | | # %f or $MC_EXT_FILENAME |
| 78 | # %f |
79 | 79 | # Name of the current file. Unlike %p, if file is located on a non-local |
80 | 80 | # virtual filesystem (e.g. tarfs or ftpfs,) then the file will be |
81 | 81 | # temporarily copied into a local directory and %f will be the full path |
82 | | # to this local temporal file. If you don't want to get a local copy and |
83 | | # want to get the virtual fs path (like ftp://ftp.cvut.cz/pub/linux), |
| 82 | # to this local temporary file. If you don't want to get a local copy |
| 83 | # and want to get the virtual fs path (like ftp://ftp.cvut.cz/pub/linux), |
84 | 84 | # then use %d/%p instead of %f. |
85 | 85 | # |
86 | | # %d or $MC_EXT_CURRENTDIR |
| 86 | # %d |
87 | 87 | # Name of the current directory (pwd, without trailing slash) |
88 | 88 | # |
89 | | # %s or $MC_EXT_SELECTED |
| 89 | # %s |
90 | 90 | # Space separated list of tagged files (if any) or the name of the |
91 | 91 | # current file. |
92 | 92 | # |
93 | | # %t or $MC_EXT_ONLYTAGGED |
| 93 | # %t |
94 | 94 | # Space-spearted list of tagged files |
95 | 95 | # |
96 | 96 | # %u |
… |
… |
|
121 | 121 | # |
122 | 122 | # %var{VARNAME:default} |
123 | 123 | # Expands to the value of the VARNAME variable in the environment if it's |
124 | | # set, otherwise the value in "default" is used. This is similar to the |
| 124 | # set, otherwise the value in "default" is used. This is similar to the |
125 | 125 | # Bourne shell ${VAR-default} construct. |
126 | 126 | # |
127 | 127 | # Rules are applied from top to bottom, thus the order is important. If some |