Lines Matching refs:objects
11 3. Buffer objects |python-buffer|
12 4. Range objects |python-range|
13 5. Window objects |python-window|
14 6. Tab page objects |python-tabpage|
15 7. vim.bindeval objects |python-bindeval-objects|
201 Like |python-eval|, but returns special objects described in
202 |python-bindeval-objects|. These python objects let you modify (|List|
203 or |Dictionary|) or call (|Funcref|) vim objects.
236 But this is silly, as you would then lose access to the vim objects
255 |python-tabpage|.windows objects are bound to parent |python-tabpage|
271 "current" objects available in vim:
284 valid |python-buffer|, |python-window| or |python-tabpage| objects
287 switch UI objects in python: you can't assign to
301 Dictionary-like objects holding dictionaries with global (|g:|) and
313 and buffer-local ones). Use |python-buffer| objects to access to
314 buffer-local options and |python-window| objects to access to
403 Methods or objects used to implement path loading as described above.
406 guaranteed that any of the objects will exist in the future vim
418 3. Buffer objects *python-buffer*
420 Buffer objects represent vim buffers. You can obtain them in a number of ways:
425 Buffer objects have two read-only attributes - name - the full file name for
429 You can also treat buffer objects as sequence objects. In this context, they
466 for Python's built-in list objects.
496 4. Range objects *python-range*
498 Range objects represent a part of a vim buffer. You can obtain them in a
518 for Python's built-in list objects.
528 5. Window objects *python-window*
530 Window objects represent vim windows. You can obtain them in a number of ways:
536 You can manipulate window objects only through their attributes. They have no
572 6. Tab page objects *python-tabpage*
574 Tab page objects represent vim tab pages. You can obtain them in a number of
594 7. vim.bindeval objects *python-bindeval-objects*