aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorMichael Ennen <mike.ennen@gmail.com>2016-10-28 12:49:28 -0700
committerJames McCoy <jamessan@jamessan.com>2016-12-12 10:17:35 -0500
commit02c58d8a07a6d7ed450c8c7146c93f4dca665ba2 (patch)
tree496f8989df4667272a9d169e83e1b6bc7abaa435 /runtime
parentc82dc7a6fd4987fee72320133579b008815b28d1 (diff)
downloadrneovim-02c58d8a07a6d7ed450c8c7146c93f4dca665ba2.tar.gz
rneovim-02c58d8a07a6d7ed450c8c7146c93f4dca665ba2.tar.bz2
rneovim-02c58d8a07a6d7ed450c8c7146c93f4dca665ba2.zip
vim-patch:7.4.1839
Problem: Cannot get the items stored in a partial. Solution: Support using get() on a partial. https://github.com/vim/vim/commit/2bbf8eff6fab16d86e7bcfc0da1962d31bec7891
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/eval.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 133f35990c..05dcc62903 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -3586,6 +3586,12 @@ get({dict}, {key} [, {default}])
Get item with key {key} from |Dictionary| {dict}. When this
item is not available return {default}. Return zero when
{default} is omitted.
+get({partial}, {what})
+ Get an item with from Funcref {partial}. Possible values for
+ {what} are:
+ 'func' The function
+ 'dict' The dictionary
+ 'args' The list with arguments
*getbufline()*
getbufline({expr}, {lnum} [, {end}])