##// END OF EJS Templates
help: filesets show hg status command
timeless@mozdev.org -
r26194:fc65d63e default
parent child Browse files
Show More
@@ -132,7 +132,7 b' def listset(mctx, a, b):'
132 132
133 133 def modified(mctx, x):
134 134 """``modified()``
135 File that is modified according to status.
135 File that is modified according to :hg:`status`.
136 136 """
137 137 # i18n: "modified" is a keyword
138 138 getargs(x, 0, 0, _("modified takes no arguments"))
@@ -141,7 +141,7 b' def modified(mctx, x):'
141 141
142 142 def added(mctx, x):
143 143 """``added()``
144 File that is added according to status.
144 File that is added according to :hg:`status`.
145 145 """
146 146 # i18n: "added" is a keyword
147 147 getargs(x, 0, 0, _("added takes no arguments"))
@@ -150,7 +150,7 b' def added(mctx, x):'
150 150
151 151 def removed(mctx, x):
152 152 """``removed()``
153 File that is removed according to status.
153 File that is removed according to :hg:`status`.
154 154 """
155 155 # i18n: "removed" is a keyword
156 156 getargs(x, 0, 0, _("removed takes no arguments"))
@@ -159,7 +159,7 b' def removed(mctx, x):'
159 159
160 160 def deleted(mctx, x):
161 161 """``deleted()``
162 File that is deleted according to status.
162 File that is deleted according to :hg:`status`.
163 163 """
164 164 # i18n: "deleted" is a keyword
165 165 getargs(x, 0, 0, _("deleted takes no arguments"))
@@ -168,7 +168,7 b' def deleted(mctx, x):'
168 168
169 169 def unknown(mctx, x):
170 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 172 considered if this predicate is used.
173 173 """
174 174 # i18n: "unknown" is a keyword
@@ -178,7 +178,7 b' def unknown(mctx, x):'
178 178
179 179 def ignored(mctx, x):
180 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 182 considered if this predicate is used.
183 183 """
184 184 # i18n: "ignored" is a keyword
@@ -188,7 +188,7 b' def ignored(mctx, x):'
188 188
189 189 def clean(mctx, x):
190 190 """``clean()``
191 File that is clean according to status.
191 File that is clean according to :hg:`status`.
192 192 """
193 193 # i18n: "clean" is a keyword
194 194 getargs(x, 0, 0, _("clean takes no arguments"))
General Comments 0
You need to be logged in to leave comments. Login now