summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2013-11-09 01:44:43 +0100
committerBram Moolenaar <bram@vim.org>2013-11-09 01:44:43 +0100
commit72577708a3e5c1550d3f3837d9521d93aa0c53c9 (patch)
treebf45e65f4a96a8d83b48a83947c2e7cf446d05ba
parent2705a9c20072c58ae1a4760ce0f976fb4330c7f7 (diff)
downloadvim-72577708a3e5c1550d3f3837d9521d93aa0c53c9.tar.gz
updated for version 7.4.080v7.4.080v7-4-080
Problem: Missing documentation for v:hlsearch. Solution: Include the right file in the patch.
-rw-r--r--runtime/doc/eval.txt7
-rw-r--r--src/version.c2
2 files changed, 9 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 5085f21a..bf01f371 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1455,6 +1455,13 @@ v:foldend Used for 'foldtext': last line of closed fold.
v:foldstart Used for 'foldtext': first line of closed fold.
Read-only in the |sandbox|. |fold-foldtext|
+ *v:hlsearch* *hlsearch-variable*
+v:hlsearch Variable that determines whether search highlighting is on.
+ Makes sense only if 'hlsearch' is enabled which requires
+ |+extra_search|. Setting this variable to zero acts the like
+ |:nohlsearch| command, setting it to one acts like >
+ let &hlsearch = &hlsearch
+<
*v:insertmode* *insertmode-variable*
v:insertmode Used for the |InsertEnter| and |InsertChange| autocommand
events. Values:
diff --git a/src/version.c b/src/version.c
index 106445a0..795aad06 100644
--- a/src/version.c
+++ b/src/version.c
@@ -739,6 +739,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 80,
+/**/
79,
/**/
78,