diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-09-14 18:52:16 -0700 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-09-14 18:57:35 -0700 |
commit | ffdf8c4c1227874a62b950cc7138005b40004c6a (patch) | |
tree | 63a0fde18014ec2be04cadc81486cf7fe5243ef6 /runtime | |
parent | f2c75ef9b481e6c3b65f7b37a3c8e8afc5c73be3 (diff) | |
download | rneovim-ffdf8c4c1227874a62b950cc7138005b40004c6a.tar.gz rneovim-ffdf8c4c1227874a62b950cc7138005b40004c6a.tar.bz2 rneovim-ffdf8c4c1227874a62b950cc7138005b40004c6a.zip |
Context: rename "buflist" => "bufs"
Given the other type names "jumps", "vars", etc., the name "buflist"
is somewhat unintuitive.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/repeat.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt index 8f6d3aec2e..d4b6324bc3 100644 --- a/runtime/doc/repeat.txt +++ b/runtime/doc/repeat.txt @@ -1003,14 +1003,14 @@ like the current |jumplist|, values of |registers|, and more, described below. The following Context items are supported: "jumps" |jumplist| "regs" |registers| - "buflist" |buffer-list| + "bufs" |buffer-list| "gvars" |global-variable|s "sfuncs" |script-local| functions "funcs" global and |script-local| functions *context-dict* Context objects are dictionaries with the following key-value pairs: -- "jumps", "regs", "buflist", "gvars": +- "jumps", "regs", "bufs", "gvars": |readfile()|-style |List| representation of corresponding msgpack objects (see |msgpackdump()| and |msgpackparse()|). - "funcs" (includes |script-local| functions as well): |