File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -118,11 +118,11 @@ class RemoteSequence(object):
118
118
119
119
For example, the 'windows' property of the `Nvim` class is a RemoteSequence
120
120
sequence instance, and the expression `nvim.windows[0]` is translated to
121
- session.request('vim_get_windows ')[0].
121
+ session.request('nvim_list_wins ')[0].
122
122
123
123
It can also receive an optional self_obj that will be passed as first
124
124
argument of the request. For example, `tabpage.windows[0]` is translated
125
- to: session.request('tabpage_get_windows ', tabpage_instance)[0].
125
+ to: session.request('nvim_tabpage_list_wins ', tabpage_instance)[0].
126
126
127
127
One important detail about this class is that all methods will fetch the
128
128
sequence into a list and perform the necessary manipulation
You can’t perform that action at this time.
0 commit comments