Show More
@@ -132,7 +132,7 b' def listset(mctx, a, b):' | |||||
132 |
|
132 | |||
133 | def modified(mctx, x): |
|
133 | def modified(mctx, x): | |
134 | """``modified()`` |
|
134 | """``modified()`` | |
135 | File that is modified according to status. |
|
135 | File that is modified according to :hg:`status`. | |
136 | """ |
|
136 | """ | |
137 | # i18n: "modified" is a keyword |
|
137 | # i18n: "modified" is a keyword | |
138 | getargs(x, 0, 0, _("modified takes no arguments")) |
|
138 | getargs(x, 0, 0, _("modified takes no arguments")) | |
@@ -141,7 +141,7 b' def modified(mctx, x):' | |||||
141 |
|
141 | |||
142 | def added(mctx, x): |
|
142 | def added(mctx, x): | |
143 | """``added()`` |
|
143 | """``added()`` | |
144 | File that is added according to status. |
|
144 | File that is added according to :hg:`status`. | |
145 | """ |
|
145 | """ | |
146 | # i18n: "added" is a keyword |
|
146 | # i18n: "added" is a keyword | |
147 | getargs(x, 0, 0, _("added takes no arguments")) |
|
147 | getargs(x, 0, 0, _("added takes no arguments")) | |
@@ -150,7 +150,7 b' def added(mctx, x):' | |||||
150 |
|
150 | |||
151 | def removed(mctx, x): |
|
151 | def removed(mctx, x): | |
152 | """``removed()`` |
|
152 | """``removed()`` | |
153 | File that is removed according to status. |
|
153 | File that is removed according to :hg:`status`. | |
154 | """ |
|
154 | """ | |
155 | # i18n: "removed" is a keyword |
|
155 | # i18n: "removed" is a keyword | |
156 | getargs(x, 0, 0, _("removed takes no arguments")) |
|
156 | getargs(x, 0, 0, _("removed takes no arguments")) | |
@@ -159,7 +159,7 b' def removed(mctx, x):' | |||||
159 |
|
159 | |||
160 | def deleted(mctx, x): |
|
160 | def deleted(mctx, x): | |
161 | """``deleted()`` |
|
161 | """``deleted()`` | |
162 | File that is deleted according to status. |
|
162 | File that is deleted according to :hg:`status`. | |
163 | """ |
|
163 | """ | |
164 | # i18n: "deleted" is a keyword |
|
164 | # i18n: "deleted" is a keyword | |
165 | getargs(x, 0, 0, _("deleted takes no arguments")) |
|
165 | getargs(x, 0, 0, _("deleted takes no arguments")) | |
@@ -168,7 +168,7 b' def deleted(mctx, x):' | |||||
168 |
|
168 | |||
169 | def unknown(mctx, x): |
|
169 | def unknown(mctx, x): | |
170 | """``unknown()`` |
|
170 | """``unknown()`` | |
171 | File that is unknown according to status. These files will only be |
|
171 | File that is unknown according to :hg:`status`. These files will only be | |
172 | considered if this predicate is used. |
|
172 | considered if this predicate is used. | |
173 | """ |
|
173 | """ | |
174 | # i18n: "unknown" is a keyword |
|
174 | # i18n: "unknown" is a keyword | |
@@ -178,7 +178,7 b' def unknown(mctx, x):' | |||||
178 |
|
178 | |||
179 | def ignored(mctx, x): |
|
179 | def ignored(mctx, x): | |
180 | """``ignored()`` |
|
180 | """``ignored()`` | |
181 | File that is ignored according to status. These files will only be |
|
181 | File that is ignored according to :hg:`status`. These files will only be | |
182 | considered if this predicate is used. |
|
182 | considered if this predicate is used. | |
183 | """ |
|
183 | """ | |
184 | # i18n: "ignored" is a keyword |
|
184 | # i18n: "ignored" is a keyword | |
@@ -188,7 +188,7 b' def ignored(mctx, x):' | |||||
188 |
|
188 | |||
189 | def clean(mctx, x): |
|
189 | def clean(mctx, x): | |
190 | """``clean()`` |
|
190 | """``clean()`` | |
191 | File that is clean according to status. |
|
191 | File that is clean according to :hg:`status`. | |
192 | """ |
|
192 | """ | |
193 | # i18n: "clean" is a keyword |
|
193 | # i18n: "clean" is a keyword | |
194 | getargs(x, 0, 0, _("clean takes no arguments")) |
|
194 | getargs(x, 0, 0, _("clean takes no arguments")) |
General Comments 0
You need to be logged in to leave comments.
Login now