summaryrefslogtreecommitdiffstats
path: root/runtime/doc/vim9.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-08-08 15:42:38 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-08 15:42:38 +0100
commit48c3f4e0bff7efd289a7001b68c777b6f89a7057 (patch)
tree519686e73427026f133ce10ff9f8ce7243f011d2 /runtime/doc/vim9.txt
parentcf85d97bafdcc7837a77ab79cc04da189fa3dd0c (diff)
Update runtime files
Diffstat (limited to 'runtime/doc/vim9.txt')
-rw-r--r--runtime/doc/vim9.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/vim9.txt b/runtime/doc/vim9.txt
index 5fba47ba4a..01412a0391 100644
--- a/runtime/doc/vim9.txt
+++ b/runtime/doc/vim9.txt
@@ -1773,7 +1773,7 @@ line, there can be no line break: >
name # Error!
echo that
.name # Error!
-
+< *import-map*
When you've imported a function from one script into a vim9 script you can
refer to the imported function in a mapping by prefixing it with |<SID>|: >
noremap <silent> ,a :call <SID>name.Function()<CR>