@@ -79,7 +79,7 @@ def __init__(self, session, channel_id, metadata, types,
7979 self .types = types
8080 self .api = RemoteApi (self , 'nvim_' )
8181 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 )
8383 self .options = RemoteMap (self , 'nvim_get_option' , 'nvim_set_option' )
8484 self .buffers = Buffers (self )
8585 self .windows = RemoteSequence (self , 'nvim_list_wins' )
@@ -295,7 +295,7 @@ def replace_termcodes(self, string, from_part=False, do_lt=True,
295295
296296 The returned sequences can be used as input to `feedkeys`.
297297 """
298- return self .request ('vim_replace_termcodes ' , string ,
298+ return self .request ('nvim_replace_termcodes ' , string ,
299299 from_part , do_lt , special )
300300
301301 def out_write (self , msg ):
@@ -353,7 +353,7 @@ class Buffers(object):
353353 """Remote NVim buffers.
354354
355355 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
357357 buffers from NVim.
358358
359359 Conforms to *python-buffers*.
0 commit comments