git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: Philippe Blain <levraiphilippeblain@gmail.com>
To: Fernando Ramos <greenfoo@u92.eu>, git@vger.kernel.org
Cc: gitster@pobox.com, davvid@gmail.com, sunshine@sunshineco.com,
	seth@eseth.com, rogi@skylittlesystem.org
Subject: Re: [PATCH v6 3/3] vimdiff: add tool documentation
Date: Sun, 27 Mar 2022 14:28:23 -0400	[thread overview]
Message-ID: <001d3ecd-e1bd-39f4-5123-4a8b1bd1b5a8@gmail.com> (raw)
In-Reply-To: <20220327112307.151044-4-greenfoo@u92.eu>

Hi Fernando,

Le 2022-03-27 à 07:23, Fernando Ramos a écrit :
> Running 'git {merge,diff}tool --tool-help' now also prints usage
> information about the vimdiff tool (and its variantes) instead of just
> its name.
> 
> Two new functions ('diff_cmd_help()' and 'merge_cmd_help()') have been
> added to the set of functions that each merge tool (ie. scripts found
> inside "mergetools/") can overwrite to provided tool specific
> information.
> 
> Right now, only 'mergetools/vimdiff' implements these functions, but
> other tools are encouraged to do so in the future, specially if they
> take configuration options not explained anywhere else (as it is the
> case with the 'vimdiff' tool and the new 'layout' option)

This is a very nice addition, which should help new users understanding
what these merge tools are. I remember myself looking for executables
name 'vimdiff2' or 'vimdiff3' on my system and not finding them :)

> 
> In addition, a section has been added to
> "Documentation/git-mergetool.txt" to explain the new "layout"
> configuration option with examples.
> 
> Signed-off-by: Fernando Ramos <greenfoo@u92.eu>
> ---
>  Documentation/config/mergetool.txt   |   5 +
>  Documentation/git-mergetool.txt      |   7 ++
>  Documentation/mergetools/vimdiff.txt | 182 +++++++++++++++++++++++++++
>  git-mergetool--lib.sh                |  14 +++
>  mergetools/vimdiff                   |   6 +
>  5 files changed, 214 insertions(+)
>  create mode 100644 Documentation/mergetools/vimdiff.txt
> 
> diff --git a/Documentation/config/mergetool.txt b/Documentation/config/mergetool.txt
> index cafbbef46a..5973ebd2dc 100644
> --- a/Documentation/config/mergetool.txt
> +++ b/Documentation/config/mergetool.txt
> @@ -45,6 +45,11 @@ mergetool.meld.useAutoMerge::
>  	value of `false` avoids using `--auto-merge` altogether, and is the
>  	default value.
>  
> +mergetool.{n,g,}vimdiff.layout::
> +	The vimdiff backend uses this variable to control how its split
> +	windows look like.  See BACKEND SPECIFIC HINTS section of
> +	linkgit:git-mergetool[1] for details.
> +

I generated the man page for 'git-mergetool' and this bit is included in the 
Configuration section, that's great. However, it feels a little weird to read
"see BACKEND SPECIFIC HINTS section of linkgit:git-mergetool[1]" there, since
that's the help page I'm already reading. So maybe it would be nice to use an
Asciidoc 'ifndef::git-mergetool[]' directive here to hide the "of linkgit:git-mergetool[1]"
bit if the current page is git-mergetool[1] ?

>  mergetool.hideResolved::
>  	During a merge Git will automatically resolve as many conflicts as
>  	possible and write the 'MERGED' file containing conflict markers around
> diff --git a/Documentation/git-mergetool.txt b/Documentation/git-mergetool.txt
> index e587c7763a..6c6aa29c5a 100644
> --- a/Documentation/git-mergetool.txt
> +++ b/Documentation/git-mergetool.txt
> @@ -113,6 +113,13 @@ Setting the `mergetool.keepBackup` configuration variable to `false`
>  causes `git mergetool` to automatically remove the backup as files
>  are successfully merged.
>  
> +BACKEND SPECIFIC HINTS
> +----------------------
> +
> +vimdiff
> +~~~~~~~
> +include::mergetools/vimdiff.txt[]
> +
>  GIT
>  ---
>  Part of the linkgit:git[1] suite
> diff --git a/Documentation/mergetools/vimdiff.txt b/Documentation/mergetools/vimdiff.txt
> new file mode 100644
> index 0000000000..296bc76e98
> --- /dev/null
> +++ b/Documentation/mergetools/vimdiff.txt
> @@ -0,0 +1,182 @@
> +Description
> +^^^^^^^^^^^
> +
> +When specifying `--tool=vimdiff` in `git mergetool` git will open vim with a 4

s/git/Git/, s/vim/Vim/  (here and below) ?

> +windows layout distributed in the following way:
> +
> +    ------------------------------------------
> +    |             |           |              |
> +    |   LOCAL     |   BASE    |   REMOTE     |
> +    |             |           |              |
> +    ------------------------------------------
> +    |                                        |
> +    |                MERGED                  |
> +    |                                        |
> +    ------------------------------------------
> +
> +"LOCAL", "BASE" and "REMOTE" are read-only buffers showing the contents of the
> +conflicting file in a specific git commit 

"in specific commits" would read sightly better, I think.

> ("commit you are merging into",
> +"common ancestor commit" and "commit you are merging from" respectively)
> +
> +"MERGED" is a writable buffer where you have to resolve the conflicts (using the
> +other read-only buffers as a reference). Once you are done, save and exit "vim"
> +as usual (":wq") or, if you want to abort, exit using ":cq".
> +
> +Layout configuration
> +^^^^^^^^^^^^^^^^^^^^
> +
> +You can change the windows layout used by vim by setting configuration variable
> +"mergetool.vimdiff.layout"

we prefer backticks for configuration variables: `mergetool.vimdiff.layout`

 which accepts a string where the following separators
> +have special meaning:
> +
> +  - "+" is used to "open a new tab"
> +  - "," is used to "open a new vertical split"
> +  - "/" is used to "open a new horizontal split"
> +  - "@" is used to indicate which is the file containing the final version after
> +    solving the conflicts. In not present, "MERGED" will be used by default.

s/In/If/

Also, I would use backticks instead of double quotes for the separator:

  - `+` is used to "open a new tab"

etc.

> +The precedence of the operators is this one (you can use parenthesis 

parentheses

> to change
> +it):
> +
> +    @ > + > / > ,
> +

I think it would be slightly better for the separators to be individually formatted, 
like this:

`@` > `+` > `/` > `,`

this way the angle brackets are typefaced differently (at least in HTML).

> +Let's see some examples to understand how it works:
> +
> +  * layout = "(LOCAL,BASE,REMOTE)/MERGED"
> +
> +    This is exactly the same as the default layout we have already seen.
> +
> +    Note that "/" has precedence over "," and thus the parenthesis are not
> +    needed in this case. The next layout definition is equivalent:
> +
> +        layout = "LOCAL,BASE,REMOTE / MERGED"
> +
> +  * layout = "LOCAL,MERGED,REMOTE"
> +
> +    If, for some reason, we are not interested in the "BASE" buffer.
> +
> +           ------------------------------------------
> +           |             |           |              |
> +           |             |           |              |
> +           |   LOCAL     |   MERGED  |   REMOTE     |
> +           |             |           |              |
> +           |             |           |              |
> +           ------------------------------------------
> +
> +  * layout = "MERGED"
> +
> +    Only the "MERGED" buffer will be shown. Note, however, that all the other
> +    ones are still loaded in vim, and you can access them with the "buffers"
> +    command. 
> +
> +           ------------------------------------------
> +           |                                        |
> +           |                                        |
> +           |                 MERGED                 |
> +           |                                        |
> +           |                                        |
> +           ------------------------------------------
> +
> +  * layout = "@LOCAL,REMOTE"
> +
> +    When "MERGED" is not present in the layout, you must "mark" one of the
> +    buffers with an asterisk. That will become the buffer you need to edit and
> +    save after resolving the conflicts.
> +
> +           ------------------------------------------
> +           |                   |                    |
> +           |                   |                    |
> +           |                   |                    |
> +           |     LOCAL         |    REMOTE          |
> +           |                   |                    |
> +           |                   |                    |
> +           |                   |                    |
> +           ------------------------------------------
> +
> +  * layout = "LOCAL,BASE,REMOTE / MERGED + BASE,LOCAL + BASE,REMOTE"
> +
> +    Three tabs will open: the first one is a copy of the default layout, while
> +    the other two only show the differences between "BASE" and "LOCAL" and
> +    "BASE" and "REMOTE" respectively.
> + 
> +           ------------------------------------------
> +           | <TAB #1> |  TAB #2  |  TAB #3  |       |
> +           ------------------------------------------
> +           |             |           |              |
> +           |   LOCAL     |   BASE    |   REMOTE     |
> +           |             |           |              |
> +           ------------------------------------------
> +           |                                        |
> +           |                MERGED                  |
> +           |                                        |
> +           ------------------------------------------
> +
> +           ------------------------------------------
> +           |  TAB #1  | <TAB #2> |  TAB #3  |       |
> +           ------------------------------------------
> +           |                   |                    |
> +           |                   |                    |
> +           |                   |                    |
> +           |     BASE          |    LOCAL           |
> +           |                   |                    |
> +           |                   |                    |
> +           |                   |                    |
> +           ------------------------------------------
> +
> +           ------------------------------------------
> +           |  TAB #1  |  TAB #2  | <TAB #3> |       |
> +           ------------------------------------------
> +           |                   |                    |
> +           |                   |                    |
> +           |                   |                    |
> +           |     BASE          |    REMOTE          |
> +           |                   |                    |
> +           |                   |                    |
> +           |                   |                    |
> +           ------------------------------------------
> +
> +  * layout = "LOCAL,BASE,REMOTE / MERGED + BASE,LOCAL + BASE,REMOTE + (LOCAL/BASE/REMOTE),MERGED"
> +
> +    Same as the previous example, but adds a fourth tab with the same
> +    information as the first tab, with a different layout.
> + 
> +           ---------------------------------------------
> +           |  TAB #1  |  TAB #2  |  TAB #3  | <TAB #4> |
> +           ---------------------------------------------
> +           |       LOCAL         |                     |
> +           |---------------------|                     |
> +           |       BASE          |        MERGED       |
> +           |---------------------|                     |
> +           |       REMOTE        |                     |
> +           ---------------------------------------------
> +
> +    Note how in the third tab definition we need to use parenthesis to make ","
> +    have precedence over "/".
> +

This whole section above needs some indentation work to format nicely in Asciidoc/
Asciidoctor. I've fixed it and will send a 'fixup' patch as a reply.

> +Variants
> +^^^^^^^^
> +
> +Instead of `--tool=vimdiff`, you can also use one of these other variants:
> +
> +  * `--tool=gvimdiff`, to open gvim instead of vim.
> +
> +  * `--tool=nvimdiff`, to open nvim (`neovim`) instead of vim.
> +
> +When using these variants, in order to specify a custom layout you will have to
> +set configuration variables `mergetool.gvimdiff.layout` and
> +`mergetool.nvimdiff.layout` instead of `mergetool.vimdiff.layout`
> +
> +In addition, for backwards compatibility with previous git versions,> you can
> +also append `1`, `2` or `3` to either `vimdiff` or any of the variants (ex:
> +`vimdiff3`, `nvimdiff1`, etc...) to use a predefined layout.
> +In other words, using `--tool=[g,n,]vimdiffx` is the same as using
> +`--tool=[g,n,]vimdiff` and setting configuration variable
> +`mergetool.[g,n,]vimdiff.layout` to... 
> +
> +  * x=1 --> "@LOCAL, REMOTE"
> +  * x=2 --> "LOCAL, MERGED, REMOTE"
> +  * x=3 --> "MERGED"

This '-->' arrow also causes trouble with Asciidoc's HTML generator. I've also
fixed it in the patch I'll send as a reply.

> +
> +Example: using `--tool=gvimdiff2` will open `gvim` with three columns (LOCAL,
> +MERGED and REMOTE).
> +
> diff --git a/git-mergetool--lib.sh b/git-mergetool--lib.sh
> index 542a6a75eb..956c276e1d 100644
> --- a/git-mergetool--lib.sh
> +++ b/git-mergetool--lib.sh
> @@ -64,6 +64,12 @@ $(list_tool_variants)"
>  				fi
>  				shown_any=yes
>  				printf "%s%s\n" "$per_line_prefix" "$toolname"
> +
> +				(diff_mode && diff_cmd_help "$toolname" || merge_cmd_help "$toolname") |
> +				while read -r line
> +				do
> +					printf "%s\t%s\n" "$per_line_prefix" "$line"
> +				done
>  			fi
>  		done
>  

I've tried the option and it gives something like this:

$ ./bin-wrappers/git mergetool --tool-help
'git mergetool --tool=<tool>' may be set to one of the following:
		emerge
		opendiff
		vimdiff
			Layout can be customized. Run 'git help mergetool' and check the 'BACKEND SPECIFIC HINTS' section.
		vimdiff1
			Layout can be customized. Run 'git help mergetool' and check the 'BACKEND SPECIFIC HINTS' section.
		# etc.

This is OK, but adds a lot of lines to the output. Maybe we could display the help
on the same line ? Something like:

$ ./bin-wrappers/git mergetool --tool-help
'git mergetool --tool=<tool>' may be set to one of the following:
		emerge
		opendiff
		vimdiff		Layout can be customized. Run 'git help mergetool' and check the 'BACKEND SPECIFIC HINTS' section.
		vimdiff1	Layout can be customized. Run 'git help mergetool' and check the 'BACKEND SPECIFIC HINTS' section.
		# etc.

> diff --git a/mergetools/vimdiff b/mergetools/vimdiff
> index e3f442caf3..0380bff302 100644
> --- a/mergetools/vimdiff
> +++ b/mergetools/vimdiff
> @@ -435,6 +435,12 @@ merge_cmd () {
>  }
>  
>  
> +merge_cmd_help () {
> +	echo "Layout can be customized. Run 'git help mergetool' and check the 'BACKEND SPECIFIC HINTS' section."
> +	return 0
> +}
> +
> +

Maybe a simple "Use Vim. " before "Layout can be customized." would 
be nice, as then other tools whose names in 'git mergetool' are not 
directly related to the executable named could then be listed similarly:

$ ./bin-wrappers/git mergetool --tool-help
'git mergetool --tool=<tool>' may be set to one of the following:
		emerge		Use Emacs' Emerge.
		opendiff	Use FileMerge.
		vimdiff		Use Vim. Layout can be customized. Run 'git help mergetool' and check the 'BACKEND SPECIFIC HINTS' section.
		vimdiff1	Use Vim. Layout can be customized. Run 'git help mergetool' and check the 'BACKEND SPECIFIC HINTS' section.
		# etc.

  reply	other threads:[~2022-03-27 18:28 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-27 11:23 [PATCH v6 0/3] vimdiff: new implementation with layout support Fernando Ramos
2022-03-27 11:23 ` [PATCH v6 1/3] " Fernando Ramos
2022-03-27 16:47   ` Philippe Blain
2022-03-27 18:12     ` Fernando Ramos
2022-03-27 21:36   ` Junio C Hamano
2022-03-27 11:23 ` [PATCH v6 2/3] vimdiff: integrate layout tests in the unit tests framework ('t' folder) Fernando Ramos
2022-03-27 21:37   ` Junio C Hamano
2022-03-27 11:23 ` [PATCH v6 3/3] vimdiff: add tool documentation Fernando Ramos
2022-03-27 18:28   ` Philippe Blain [this message]
2022-03-27 18:50     ` [PATCH] fixup! " Philippe Blain
2022-03-27 21:10     ` [PATCH v6 3/3] " Fernando Ramos
2022-03-27 21:43       ` Junio C Hamano
2022-03-27 22:17         ` Fernando Ramos
2022-03-28  4:48   ` Bagas Sanjaya
2022-03-28  5:43     ` Junio C Hamano
2022-03-28 19:19       ` Fernando Ramos

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: http://vger.kernel.org/majordomo-info.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=001d3ecd-e1bd-39f4-5123-4a8b1bd1b5a8@gmail.com \
    --to=levraiphilippeblain@gmail.com \
    --cc=davvid@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.com \
    --cc=greenfoo@u92.eu \
    --cc=rogi@skylittlesystem.org \
    --cc=seth@eseth.com \
    --cc=sunshine@sunshineco.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).