1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-09-17 12:07:08 +03:00

Update NvimServer to 0.6.1-0

This commit is contained in:
Tae Won Ha 2022-01-02 16:09:21 +01:00
parent ac6650751d
commit 5d2c80c838
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44
7 changed files with 11 additions and 7 deletions

View File

@ -58,6 +58,10 @@ then continuously invoke the `build_nvimserver_for_local_dev` script.
download_gettext=true clean=true build_libnvim=true ./NvimServer/bin/build_nvimserver.sh
```
* Update `NvimServer/Resources/nvimserver-for-download.txt`.
* Build a universal binary by the following and upload the artefact:
```bash
./NvimServer/bin/build_release.sh
```
### VimR

@ -1 +1 @@
Subproject commit 5499046eef1bae0f583ae94df1834566d04ed489
Subproject commit 764ba0e2b54461f0bb433b76bcf2357ff9031285

View File

@ -1,4 +1,4 @@
// Auto generated for nvim v0.6.0
// Auto generated for nvim v0.6.1
// See bin/generate_autocmds.py
enum NvimAutoCommandEvent: Int {

View File

@ -1,4 +1,4 @@
// Auto generated for nvim v0.6.0
// Auto generated for nvim v0.6.1
// See bin/generate_cursor_shape.py
public enum CursorModeShape: UInt {

View File

@ -1,4 +1,4 @@
// Auto generated for nvim version 0.6.0.
// Auto generated for nvim version 0.6.1.
// See bin/generate_api_methods.py
import Foundation

View File

@ -1 +1 @@
v0.6.0
v0.6.1

View File

@ -1,7 +1,7 @@
# Next
* ...
* Neovim 0.6.0 😀
* 0.36.0-...
* Neovim 0.6.1 😀
* GH-876: Forward `Cmd-.` to Neovim. Thank you @imkerberos!
* GH-881: Make the `ESC` key cancel "Not yet saved"-dialogs. Thank you @jasonm!
* GH-874: Make Chinese input possible (and simplify input method handling in general), thank you very much, @SolaWing!