summaryrefslogtreecommitdiffstats
path: root/runtime/doc
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-09 23:11:18 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-09 23:11:18 +0100
commit2ed639abdc4000436115f378e28320b7bee38a6e (patch)
tree224e20482d2b67d1a680f5487b0515a7714097fa /runtime/doc
parent661ed8b4b6da405c95ede88b0e45ac27adba3f71 (diff)
Update a few runtime files.
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/pi_logipat.txt3
-rw-r--r--runtime/doc/pi_netrw.txt4
-rw-r--r--runtime/doc/todo.txt4
-rw-r--r--runtime/doc/version8.txt20
4 files changed, 16 insertions, 15 deletions
diff --git a/runtime/doc/pi_logipat.txt b/runtime/doc/pi_logipat.txt
index 8d33a565ac..23db48700e 100644
--- a/runtime/doc/pi_logipat.txt
+++ b/runtime/doc/pi_logipat.txt
@@ -41,7 +41,6 @@ Copyright: (c) 2004-2015 by Charles E. Campbell *logiPat-copyright*
is performed and echoed onto the display.
:LogiPatFlags {search flags} *LogiPat-flags*
- :LogiPatFlags {search flags}
LogiPat uses the |search()| command. The flags
passed to that call to search() may be specified
by the :LogiPatFlags command.
@@ -105,7 +104,7 @@ Copyright: (c) 2004-2015 by Charles E. Campbell *logiPat-copyright*
==============================================================================
-3. LogiPat History *logiPat-history*
+5. LogiPat History *logiPat-history*
v4 Jun 22, 2015 * LogiPat has been picked up by Bram M for standard
plugin distribution; hence the name change
diff --git a/runtime/doc/pi_netrw.txt b/runtime/doc/pi_netrw.txt
index 94dbfa5503..c271c5f0f6 100644
--- a/runtime/doc/pi_netrw.txt
+++ b/runtime/doc/pi_netrw.txt
@@ -1,4 +1,4 @@
-*pi_netrw.txt* For Vim version 8.1. Last change: 2019 Nov 30
+*pi_netrw.txt* For Vim version 8.1. Last change: 2019 Dec 09
------------------------------------------------
NETRW REFERENCE MANUAL by Charles E. Campbell
@@ -1184,7 +1184,7 @@ One may easily "bookmark" the currently browsed directory by using >
*.netrwbook*
Bookmarks are retained in between sessions of vim in a file called .netrwbook
as a |List|, which is typically stored in the first directory on the user's
-|'runtimepath'|; entries are kept in sorted order.
+runtimepath'; entries are kept in sorted order.
If there are marked files and/or directories, mb will add them to the bookmark
list.
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index f709155ccd..cf2cc80b08 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt* For Vim version 8.1. Last change: 2019 Dec 07
+*todo.txt* For Vim version 8.1. Last change: 2019 Dec 08
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -118,6 +118,8 @@ E290, E292, E362, E366, E450, E451, E452,
E453, E454, E460, E489, E491, E565, E578, E610, E611, E653,
E654, E856, E857, E860, E861, E863, E889, E900
+Patch to move duplicated code to a function. (Yegappan Lakshmanan, #5330)
+
Running test_gui and test_gui_init with Motif sometimes kills the window
manager. Problem with Motif? Now test_gui crashes in submenu_change().
Athena is OK.
diff --git a/runtime/doc/version8.txt b/runtime/doc/version8.txt
index 7aeada537c..c13fa10d08 100644
--- a/runtime/doc/version8.txt
+++ b/runtime/doc/version8.txt
@@ -1,4 +1,4 @@
-*version8.txt* For Vim version 8.1. Last change: 2019 Dec 08
+*version8.txt* For Vim version 8.1. Last change: 2019 Dec 09
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -25831,14 +25831,14 @@ window. This also works for normal windows.
Text properties *new-text-properties*
---------------
-Text properties give a plugin author flexibility what to highlight. This can
-be used with an external asynchronous parser to do syntax highlighting. Or
-to highlight text in a popup window. The text properties stick with the text
-when characters are deleted or inserted, which makes them also useful as text
-markers. See |text-properties|.
+Text properties give a plugin author flexibility about what to highlight.
+This can be used with an external asynchronous parser to do syntax
+highlighting. Or to highlight text in a popup window. The text properties
+stick with the text when characters are deleted or inserted, which makes them
+also useful as text markers. See |text-properties|.
The listener functions have been added to report text changes to a server so
-that it can dynamically update highligting, mark syntax errors and the like.
+that it can dynamically update highlighting, mark syntax errors and the like.
See |listener_add()|.
@@ -39746,7 +39746,7 @@ Files: src/testdir/test_exit.vim, src/ex_docmd.c
Patch 8.1.2198
Problem: Crash when using :center in autocommand.
-Solution: Bail out early for an empty line. (Dominique pelle, closes #5095)
+Solution: Bail out early for an empty line. (Dominique Pelle, closes #5095)
Files: src/ex_cmds.c, src/testdir/test_textformat.vim
Patch 8.1.2199
@@ -40610,7 +40610,7 @@ Solution: Make sure long line does not overflow IObuff. (Dominique Pelle,
Files: src/quickfix.c, src/testdir/test_quickfix.vim
Patch 8.1.2341
-Problem: Not so easy to interrupt a script programatically.
+Problem: Not so easy to interrupt a script programmatically.
Solution: Add the interrupt() function. (Yasuhiro Matsumoto, closes #2834)
Files: runtime/doc/eval.txt, src/evalfunc.c, src/ex_eval.c,
src/testdir/Make_all.mak, src/testdir/test_interrupt.vim
@@ -41039,7 +41039,7 @@ Solution: Free the old title. Don't copy expr_line.
Files: src/term.c, src/os_unix.c, src/register.c
Patch 8.1.2407
-Problem: proto file and dependenciess outdated.
+Problem: proto file and dependencies outdated.
Solution: Update proto files and dependencies.
Files: src/Makefile, src/proto/bufwrite.pro, src/proto/cmdhist.pro,
src/proto/optionstr.pro, src/proto/popupwin.pro,