diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-29 22:02:22 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-29 22:02:22 +0200 |
commit | e9ba516be2873b80e51aa24cd6c25f9b29612695 (patch) | |
tree | 620ac235a6fe7dab512cfc871b7e63ba99bba761 /runtime | |
parent | 1bc2428e1f7782870ae9e304f0db2388fe4a5a14 (diff) | |
download | vim-e9ba516be2873b80e51aa24cd6c25f9b29612695.zip |
updated for version 7.3.1042
Problem: Python: can't assign to vim.Buffer.name.
Solution: Python patch 3. (ZyX)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/if_pyth.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/doc/if_pyth.txt b/runtime/doc/if_pyth.txt index 206cdf004..e9f339579 100644 --- a/runtime/doc/if_pyth.txt +++ b/runtime/doc/if_pyth.txt @@ -250,7 +250,7 @@ vim.windows *python-windows* object and always use windows from that tab page (or throw vim.error in case tab page was deleted). You can keep a reference to both without keeping a reference to vim module object or |python-tabpage|, - they will not loose their properties in this case. + they will not lose their properties in this case. vim.tabpages *python-tabpages* A sequence object providing access to the list of vim tab pages. The @@ -361,6 +361,11 @@ The buffer object attributes are: this object will raise KeyError. If option is |global-local| and local value is missing getting it will return None. + b.name String, RW. Contains buffer name (full path). + Note: when assigning to b.name |BufFilePre| and + |BufFilePost| autocommands are launched. + b.number Buffer number. Can be used as |python-buffers| key. + Read-only. The buffer object methods are: b.append(str) Append a line to the buffer |