@@ -79,7 +79,7 @@ def __init__(self, session, channel_id, metadata, types,
79
79
self .types = types
80
80
self .api = RemoteApi (self , 'nvim_' )
81
81
self .vars = RemoteMap (self , 'nvim_get_var' , 'nvim_set_var' )
82
- self .vvars = RemoteMap (self , 'vim_get_vvar ' , None )
82
+ self .vvars = RemoteMap (self , 'nvim_get_vvar ' , None )
83
83
self .options = RemoteMap (self , 'nvim_get_option' , 'nvim_set_option' )
84
84
self .buffers = Buffers (self )
85
85
self .windows = RemoteSequence (self , 'nvim_list_wins' )
@@ -295,7 +295,7 @@ def replace_termcodes(self, string, from_part=False, do_lt=True,
295
295
296
296
The returned sequences can be used as input to `feedkeys`.
297
297
"""
298
- return self .request ('vim_replace_termcodes ' , string ,
298
+ return self .request ('nvim_replace_termcodes ' , string ,
299
299
from_part , do_lt , special )
300
300
301
301
def out_write (self , msg ):
@@ -353,7 +353,7 @@ class Buffers(object):
353
353
"""Remote NVim buffers.
354
354
355
355
Currently the interface for interacting with remote NVim buffers is the
356
- `vim_get_buffers ` msgpack-rpc function. Most methods fetch the list of
356
+ `nvim_list_bufs ` msgpack-rpc function. Most methods fetch the list of
357
357
buffers from NVim.
358
358
359
359
Conforms to *python-buffers*.
0 commit comments