aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/options.txt
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-04-15 19:46:17 +0800
committerGitHub <noreply@github.com>2023-04-15 19:46:17 +0800
commit62b7b1daf37abbe4d72838933569fefa970aa2e4 (patch)
tree3e04748f05198e3e971e386bf6270cbc65d79413 /runtime/doc/options.txt
parent071c455420dec7992a06a55e8bd443b769ded369 (diff)
parent57221e0d11d1c24bc2abada7559a1d20c5090b62 (diff)
downloadrneovim-62b7b1daf37abbe4d72838933569fefa970aa2e4.tar.gz
rneovim-62b7b1daf37abbe4d72838933569fefa970aa2e4.tar.bz2
rneovim-62b7b1daf37abbe4d72838933569fefa970aa2e4.zip
Merge pull request #23105 from zeertzjq/vim-8.2.4770
vim-patch:8.2.{4770,4783,4840,4883,4930,4934},9.0.0104: interpolated string
Diffstat (limited to 'runtime/doc/options.txt')
-rw-r--r--runtime/doc/options.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index b4cad51990..dcaf37af20 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -3332,8 +3332,8 @@ A jump table for the options with a short description can be found at |Q_op|.
If the expression starts with s: or |<SID>|, then it is replaced with
the script ID (|local-function|). Example: >
- set includeexpr=s:MyIncludeExpr(v:fname)
- set includeexpr=<SID>SomeIncludeExpr(v:fname)
+ setlocal includeexpr=s:MyIncludeExpr(v:fname)
+ setlocal includeexpr=<SID>SomeIncludeExpr(v:fname)
<
The expression will be evaluated in the |sandbox| when set from a
modeline, see |sandbox-option|.