diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-02-23 19:03:28 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-02-23 19:03:28 +0100 |
commit | b544f3c81f1e6a50322855681ac266ffaa8e313c (patch) | |
tree | 65ae4057660ce5f73ad2b3e68fe4645570702b4d /runtime/doc/if_pyth.txt | |
parent | dc9a081712ec8c140e6d4909e9f6b03a629d32d3 (diff) | |
download | vim-git-b544f3c81f1e6a50322855681ac266ffaa8e313c.tar.gz |
patch 8.0.0360: sometimes VimL is used instead of "Vim script"v8.0.0360
Problem: Sometimes VimL is used, which is confusing.
Solution: Consistently use "Vim script". (Hirohito Higashi)
Diffstat (limited to 'runtime/doc/if_pyth.txt')
-rw-r--r-- | runtime/doc/if_pyth.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/runtime/doc/if_pyth.txt b/runtime/doc/if_pyth.txt index 71bbb13f8..4f9ecbdbe 100644 --- a/runtime/doc/if_pyth.txt +++ b/runtime/doc/if_pyth.txt @@ -676,11 +676,11 @@ vim.Function object *python-Function* dictionary. Note that explicit `self` keyword used when calling resulting object overrides this attribute. auto_rebind Boolean. True if partial created from this Python object - and stored in the VimL dictionary should be automatically - rebound to the dictionary it is stored in when this - dictionary is indexed. Exposes Vim internal difference - between `dict.func` (auto_rebind=True) and - `function(dict.func,dict)` (auto_rebind=False). This + and stored in the Vim script dictionary should be + automatically rebound to the dictionary it is stored in + when this dictionary is indexed. Exposes Vim internal + difference between `dict.func` (auto_rebind=True) and + `function(dict.func,dict)` (auto_rebind=False). This attribute makes no sense if `self` attribute is `None`. Constructor additionally accepts `args`, `self` and `auto_rebind` @@ -711,7 +711,7 @@ vim.Function object *python-Function* 8. pyeval() and py3eval() Vim functions *python-pyeval* To facilitate bi-directional interface, you can use |pyeval()| and |py3eval()| -functions to evaluate Python expressions and pass their values to VimL. +functions to evaluate Python expressions and pass their values to Vim script. |pyxeval()| is also available. ============================================================================== |