1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-23 19:21:53 +03:00

GH-302, GH-421 Update release notes

This commit is contained in:
Tae Won Ha 2017-06-12 22:10:52 +02:00
parent 253aa00f78
commit c0a114a1b9
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -1,3 +1,13 @@
# next
* GH-302, GH-421: The `vimr` CLI tool has two new options:
- `--wait`: When present, the `vimr` CLI tool will access only after the corresponding VimR window has been closed. This is particularly useful when combined with the `--nvim` option as described below.
- `--nvim`: When present, all command line arguments except `--dry-run` and `--wait`, see above, will be passed over to the background `nvim` process. This means that you can now use for example `-d` option to activate the diffmode. For example to use VimR as `git difftool` add the following to your `~/.gitconfig`
```
[difftool "vimrdiff"]
cmd = vimr --wait --nvim -d $LOCAL $REMOTE
```
# 0.15.2-201
* Bugfix: The state of the tools of a new window is not the same as the last active window.