mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-29 00:34:26 +03:00
GH-264 Update neovim and adapt to new function names
This commit is contained in:
parent
4b735581fd
commit
f1b09641fa
@ -451,7 +451,7 @@ static void neovim_command(void **argv) {
|
||||
NSString *input = (NSString *) argv[0];
|
||||
|
||||
Error err;
|
||||
vim_command((String) {
|
||||
nvim_command((String) {
|
||||
.data = (char *) input.cstr,
|
||||
.size = [input lengthOfBytesUsingEncoding:NSUTF8StringEncoding]
|
||||
}, &err);
|
||||
@ -467,7 +467,7 @@ static void neovim_input(void **argv) {
|
||||
NSString *input = (NSString *) argv[0];
|
||||
|
||||
// FIXME: check the length of the consumed bytes by neovim and if not fully consumed, call vim_input again.
|
||||
vim_input((String) {
|
||||
nvim_input((String) {
|
||||
.data = (char *) input.cstr,
|
||||
.size = [input lengthOfBytesUsingEncoding:NSUTF8StringEncoding]
|
||||
});
|
||||
|
2
neovim
2
neovim
@ -1 +1 @@
|
||||
Subproject commit 758ab67c05213050ba8f6335aac498fe441a4657
|
||||
Subproject commit 813301c382179a36791f06a687f21865c9efee8e
|
Loading…
Reference in New Issue
Block a user