aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-04-09 14:14:55 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-04-09 14:14:55 -0400
commitbf2c2b34cf2314a03236c692b02778eb964dcccb (patch)
tree266904cc79d9764e707b3dc62c9dd1b3f909baae /runtime
parentd227c843bf11f4dca8c9eb3a23f529b2977fcd21 (diff)
parentde7165d3511225cf2323d81acd3724ee0379acad (diff)
downloadrneovim-bf2c2b34cf2314a03236c692b02778eb964dcccb.tar.gz
rneovim-bf2c2b34cf2314a03236c692b02778eb964dcccb.tar.bz2
rneovim-bf2c2b34cf2314a03236c692b02778eb964dcccb.zip
Merge pull request #4357 from jbradaric/vim-7.4.1105
vim-patch:7.4.1105
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/eval.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 0b2880ef03..f3192e108b 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -916,6 +916,11 @@ just above, except that indexes out of range cause an error. Examples: >
Using expr8[expr1] or expr8[expr1a : expr1b] on a |Funcref| results in an
error.
+Watch out for confusion between a namespace and a variable followed by a colon
+for a sublist: >
+ mylist[n:] " uses variable n
+ mylist[s:] " uses namespace s:, error!
+
expr8.name entry in a |Dictionary| *expr-entry*