summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/syntax.txt7
-rw-r--r--runtime/doc/tags3
-rw-r--r--runtime/doc/todo.txt11
-rw-r--r--runtime/doc/version7.txt42
4 files changed, 47 insertions, 16 deletions
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt
index 9ece274ee9..941147769c 100644
--- a/runtime/doc/syntax.txt
+++ b/runtime/doc/syntax.txt
@@ -1599,6 +1599,13 @@ may be changed by the user if s/he is experiencing synchronization
difficulties (such as may happen with large lex files).
+LIFELINES *lifelines.vim* *ft-lifelines-syntax*
+
+To highlight deprecated functions as errors, add in your .vimrc: >
+
+ :let g:lifelines_deprecated = 1
+<
+
LISP *lisp.vim* *ft-lisp-syntax*
The lisp syntax highlighting provides two options: >
diff --git a/runtime/doc/tags b/runtime/doc/tags
index 9dcbaf1e23..004f3ce640 100644
--- a/runtime/doc/tags
+++ b/runtime/doc/tags
@@ -5583,6 +5583,7 @@ ft-javascript-omni insert.txt /*ft-javascript-omni*
ft-ksh-syntax syntax.txt /*ft-ksh-syntax*
ft-lace-syntax syntax.txt /*ft-lace-syntax*
ft-lex-syntax syntax.txt /*ft-lex-syntax*
+ft-lifelines-syntax syntax.txt /*ft-lifelines-syntax*
ft-lisp-syntax syntax.txt /*ft-lisp-syntax*
ft-lite-syntax syntax.txt /*ft-lite-syntax*
ft-lpc-syntax syntax.txt /*ft-lpc-syntax*
@@ -6417,6 +6418,7 @@ libcall() eval.txt /*libcall()*
libcallnr() eval.txt /*libcallnr()*
license uganda.txt /*license*
lid quickfix.txt /*lid*
+lifelines.vim syntax.txt /*lifelines.vim*
limits vi_diff.txt /*limits*
line() eval.txt /*line()*
line-continuation repeat.txt /*line-continuation*
@@ -8298,6 +8300,7 @@ vt100-function-keys term.txt /*vt100-function-keys*
w motion.txt /*w*
w32-clientserver remote.txt /*w32-clientserver*
w:current_syntax syntax.txt /*w:current_syntax*
+w:quickfix_title quickfix.txt /*w:quickfix_title*
w:var eval.txt /*w:var*
warningmsg-variable eval.txt /*warningmsg-variable*
white-space pattern.txt /*white-space*
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index b89c25fab8..f7f4d3752f 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -30,21 +30,14 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs*
-------------------- Known bugs and current work -----------------------
-6 In the quickfix window statusline add the command used to get the list of
- errors, e.g. ":make foo", ":grep something *.c".
- New patch 2010 Jul 24
- Docs patch by Dominique Pelle, Mar 25 included?
-
Patch for :find completion. (Nazri Ramliy)
-But I prefer to keep term.h and include/term.h He will work on it.
+But I prefer to keep term.h and include/term.h Nazri will work on it.
-Add hg changes to version7.txt
+Move more common code from if_python.c and if_python3.c to if_py_both.h
Before release 7.3:
- Rename vim73 branch to default (hints: Xavier de Gaye, 2010 May 23)
-Move more common code from if_python.c and if_python3.c to if_py_both.h
-
Cursor positioning wrong with 0x200e character. (John Becket, 2010 May 6)
Test 69 breaks on MS-Windows, both 32 and 64 builds. (George Reilly, 2010 Feb
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index ee2c4dd321..83349dc222 100644
--- a/runtime/doc/version7.txt
+++ b/runtime/doc/version7.txt
@@ -7158,8 +7158,8 @@ VERSION 7.3 *version-7.3* *version7.3*
This section is about improvements made between version 7.2 and 7.3.
-This is a bug-fix release and there are a few new features.
-The most notable new features are:
+This release has hundreds of bug fixes and there are a few new features. The
+most notable new features are:
Persistent undo *new-persistent-undo*
@@ -7167,12 +7167,13 @@ Persistent undo *new-persistent-undo*
Store undo information in a file. Can undo to before when the file was read,
also for unloaded buffers. See |undo-persistence| (partly by Jordan Lewis)
-Added ":earlier 1f" and ":later 1f".
-Add file save counter to undo information.
+
+Added the ":earlier 1f" and ":later 1f" commands.
+Added file save counter to undo information.
Added the |undotree()| and |undofile()| functions.
Also added the 'undoreload' option. This makes it possible to save the
-current text when reloading the buffer, so that it can be undone.
+current text when reloading the buffer, so that the reload can be undone.
More encryption *new-more-encryption*
@@ -7190,10 +7191,14 @@ Conceal text *new-conceal*
Added the |+conceal| feature. (Vince Negri)
This allows hiding stretches of text, based on syntax highlighting.
It also allows replacing a stretch of text by a character |:syn-cchar|.
-The 'conceallevel' option specifies what happens.
+The 'conceallevel' option specifies what happens with text matching a syntax
+item that has the conceal attribute.
+The 'concealcursor' option specifies what happens in the cursor line.
The help files conceal characters used to mark tags and examples.
+Added the |synconcealed()| function and use it for :TOhtml. (Benjamin Fritz)
+
Lua interface *new-lua*
-------------
@@ -7307,12 +7312,19 @@ Support wide file names in gvimext. (Szabolcs Horvat)
Improve test for joining lines. (Milan Vancura)
Make joining a range of lines much faster. (Milan Vancura)
-Command line completion for :ownsyntax. (Dominique Pelle)
+Command line completion for :ownsyntax and :setfiletype. (Dominique Pelle)
+
+Command line completion for :lmap and :lunmap.
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Added the helphelp.txt file. Moved text from various.txt to it.
+Added "q" item for 'statusline'. Added |w:quickfix_title|. (Lech Lorens)
+
+Added support for horizontal scroll wheel. (Bjorn Winckler)
+
+
New syntax files:
Haskell Cabal build file (Vincent Berthoux)
@@ -10037,5 +10049,21 @@ usage.
When 'searchhl' causes a hang make CTRL-C disable 'searchhl'.
+When resetting both 'title' and 'icon' the title would be set after a shell
+command.
+
+Reset 'title' and 'icon' in test47 to avoid the xterm title getting messed up.
+
+Fix for compiler warning about function prototype in pty.c.
+
+Added 'window' to the options window.
+
+Fixed: errors for allocating zero bytes when profiling an empty function.
+
+Remove -arch flag from build flags for Perl. (Bjorn Wickler)
+
+Fix 'autochdir' not showing up in :options window. (Dominique Pelle)
+
+
vim:tw=78:ts=8:ft=help:norl: