From 20a79706e20c74b257d05cffdda372f516679a4a Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sat, 9 Sep 2017 13:14:15 +0200 Subject: 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). --- runtime/doc/syntax.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'runtime/doc') 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: > -- cgit From 68bc73b1076f9d20c63975bf4e66349d8da1541d Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Fri, 22 Sep 2017 08:32:27 +0200 Subject: doc: fix typo with :lcd (#7299) --- runtime/doc/editing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/doc') diff --git a/runtime/doc/editing.txt b/runtime/doc/editing.txt index 9fe815ea9c..8974a5c64e 100644 --- a/runtime/doc/editing.txt +++ b/runtime/doc/editing.txt @@ -1271,7 +1271,7 @@ Commands for changing the working directory can be suffixed with a bang "!" *:lcd-* :lcd[!] - Change to the previous current directory (before the - previous ":tcd {path}" command). + previous ":lcd {path}" command). *:pw* *:pwd* *E187* :pw[d] Print the current directory name. -- cgit