aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/syntax.txt
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-09-09 13:14:15 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-09-17 20:07:31 +0200
commit20a79706e20c74b257d05cffdda372f516679a4a (patch)
tree85cfe57e402847b9c70b2c40964d7ea198fa731e /runtime/doc/syntax.txt
parent12efbf897de28f00523885ceb99fb7cf41ed82e6 (diff)
downloadrneovim-20a79706e20c74b257d05cffdda372f516679a4a.tar.gz
rneovim-20a79706e20c74b257d05cffdda372f516679a4a.tar.bz2
rneovim-20a79706e20c74b257d05cffdda372f516679a4a.zip
runtime/syntax/vim.vim: disable g:vimsyn_embed by default
This feature is extremely slow. Also merge some minor upstream differences (missed by a previous merge).
Diffstat (limited to 'runtime/doc/syntax.txt')
-rw-r--r--runtime/doc/syntax.txt7
1 files changed, 3 insertions, 4 deletions
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt
index fd17e3b381..73841edb09 100644
--- a/runtime/doc/syntax.txt
+++ b/runtime/doc/syntax.txt
@@ -3270,11 +3270,10 @@ improve screen updating rates (see |:syn-sync| for more on this). >
The g:vimsyn_embed option allows users to select what, if any, types of
embedded script highlighting they wish to have. >
- g:vimsyn_embed == 0 : don't embed any scripts
- g:vimsyn_embed =~ 'P' : support embedded python
+ g:vimsyn_embed == 0 : disable (don't embed any scripts)
+ g:vimsyn_embed == 'lPr' : support embedded lua, python and ruby
<
-By default, g:vimsyn_embed is a string supporting interpreters that your vim
-itself supports.
+This option is disabled by default.
*g:vimsyn_folding*
Some folding is now supported with syntax/vim.vim: >