[PATCH 1 of 7] help: document about "grep" template keywords

Yuya Nishihara yuya at tcha.org
Sun Oct 7 14:32:24 UTC 2018


# HG changeset patch
# User Yuya Nishihara <yuya at tcha.org>
# Date 1538920212 -32400
#      Sun Oct 07 22:50:12 2018 +0900
# Node ID b1f2c9e00be3c547fc094ba25eb84db6e965adef
# Parent  096471a93102d7578376efa22544ae1b0d69339b
help: document about "grep" template keywords

diff --git a/mercurial/commands.py b/mercurial/commands.py
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -2645,6 +2645,26 @@ def grep(ui, repo, pattern, *pats, **opt
     the repository are searched, including those that don't exist in the
     current branch or have been deleted in a prior changeset.
 
+    .. container:: verbose
+
+      Template:
+
+      The following keywords are supported in addition to the common template
+      keywords and functions. See also :hg:`help templates`.
+
+      :change:  String. Character denoting insertion ``+`` or removal ``-``.
+                Available if ``--diff`` is specified.
+      :lineno:  Integer. Line number of the match.
+      :path:    String. Repository-absolute path of the file.
+      :texts:   List of text chunks.
+
+      And each entry of ``{texts}`` provides the following sub-keywords.
+
+      :matched: Boolean. True if the chunk matches the specified pattern.
+      :text:    String. Chunk content.
+
+      See :hg:`help templates.operators` for the list expansion syntax.
+
     Returns 0 if a match is found, 1 otherwise.
     """
     opts = pycompat.byteskwargs(opts)


More information about the Mercurial-devel mailing list