summaryrefslogtreecommitdiffstats
path: root/runtime/doc
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-05-20 17:24:11 +0200
committerBram Moolenaar <Bram@vim.org>2016-05-20 17:24:11 +0200
commit06d2d38ab7564e1f784b1058a4ef4580cd6d1810 (patch)
treefc97dcc4b6485cf9fe9f2ba92e276a8a998032b5 /runtime/doc
parentdc303bce10c60a3314078ea168064552fadf01af (diff)
Updated runtime files.
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/channel.txt14
-rw-r--r--runtime/doc/eval.txt9
-rw-r--r--runtime/doc/options.txt4
-rw-r--r--runtime/doc/tags1
-rw-r--r--runtime/doc/todo.txt53
-rw-r--r--runtime/doc/version8.txt8
6 files changed, 72 insertions, 17 deletions
diff --git a/runtime/doc/channel.txt b/runtime/doc/channel.txt
index 2f67b973e8..e527086f2e 100644
--- a/runtime/doc/channel.txt
+++ b/runtime/doc/channel.txt
@@ -1,4 +1,4 @@
-*channel.txt* For Vim version 7.4. Last change: 2016 Apr 30
+*channel.txt* For Vim version 7.4. Last change: 2016 May 19
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -146,11 +146,19 @@ Use |ch_status()| to see if the channel could be opened.
For all callbacks: Use |function()| to bind it to arguments
and/or a Dictionary. Or use the form "dict.function" to bind
the Dictionary.
+
+ Callbacks are only called at a "safe" moment, usually when Vim
+ is waiting for the user to type a character. Vim does not use
+ multi-threading.
+
*close_cb*
"close_cb" A function that is called when the channel gets closed, other
than by calling ch_close(). It should be defined like this: >
func MyCloseHandler(channel)
-< *waittime*
+< Vim will invoke callbacks that handle data before invoking
+ close_cb, thus when this function is called no more data will
+ be received.
+ *waittime*
"waittime" The time to wait for the connection to be made in
milliseconds. A negative number waits forever.
@@ -572,6 +580,8 @@ See |job_setoptions()| and |ch_setoptions()|.
Vim checks about every 10 seconds for jobs that ended.
The callback can also be triggered by calling
|job_status()|.
+ Note that data can be buffered, callbacks may still be
+ called after the process ends.
*job-timeout*
"timeout" The time to wait for a request when blocking, E.g.
when using ch_evalexpr(). In milliseconds. The
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index af4c1a7261..a1c1505cf9 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1,4 +1,4 @@
-*eval.txt* For Vim version 7.4. Last change: 2016 May 05
+*eval.txt* For Vim version 7.4. Last change: 2016 May 20
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -3645,7 +3645,7 @@ function({name} [, {arglist}] [, {dict}])
let Broken = function(dict.Func, [arg], dict)
<
When {arglist} or {dict} is present this creates a partial.
- That mans the argument list and/or the dictionary is stored in
+ That means the argument list and/or the dictionary is stored in
the Funcref and will be used when the Funcref is called.
The arguments are passed to the function in front of other
@@ -7188,8 +7188,9 @@ timer_start({time}, {callback} [, {options}])
{only available when compiled with the |+timers| feature}
timer_stop({timer}) *timer_stop()*
- Stop a timer. {timer} is an ID returned by timer_start().
- The timer callback will no longer be invoked.
+ Stop a timer. The timer callback will no longer be invoked.
+ {timer} is an ID returned by timer_start(), thus it must be a
+ Number.
tolower({expr}) *tolower()*
The result is a copy of the String given, with all uppercase
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index e42116dc5a..aefbdbffbc 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1,4 +1,4 @@
-*options.txt* For Vim version 7.4. Last change: 2016 Apr 21
+*options.txt* For Vim version 7.4. Last change: 2016 May 10
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -3635,7 +3635,7 @@ A jump table for the options with a short description can be found at |Q_op|.
SYMBOL, THAI, TURKISH, VIETNAMESE ANSI and BALTIC.
Normally you would use "cDEFAULT".
qXX - quality XX. Valid quality names are: PROOF, DRAFT,
- ANTIALIASED, UNANTIALIASED, CLEARTYPE, DEFAULT.
+ ANTIALIASED, NONANTIALIASED, CLEARTYPE, DEFAULT.
Normally you would use "qDEFAULT".
Some quality values isn't supported in legacy OSs.
diff --git a/runtime/doc/tags b/runtime/doc/tags
index 0d765672e0..a249d2c54d 100644
--- a/runtime/doc/tags
+++ b/runtime/doc/tags
@@ -1261,6 +1261,7 @@ $VIM_POSIX vi_diff.txt /*$VIM_POSIX*
+mzscheme/dyn various.txt /*+mzscheme\/dyn*
+netbeans_intg various.txt /*+netbeans_intg*
+ole various.txt /*+ole*
++packages various.txt /*+packages*
+path_extra various.txt /*+path_extra*
+perl various.txt /*+perl*
+perl/dyn various.txt /*+perl\/dyn*
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index d9dec8d874..6377a7682c 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt* For Vim version 7.4. Last change: 2016 May 08
+*todo.txt* For Vim version 7.4. Last change: 2016 May 20
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -34,7 +34,13 @@ not be repeated below, unless there is extra information.
*known-bugs*
-------------------- Known bugs and current work -----------------------
-Crash when running a job a second time. (stewart, May 4)
+Close_cb crash. (Luc Hermitte, 2016 May 10)
+Stack trace by Dominique, May 10.
+Reference count in partial dict wrong?
+
+Any other callbacks that could be invoked at the wrong moment?
+
+If removing buffer that's being read from, close channel?
problem with "Ignore" after adding 'guicolors'. (Charles Campbell, 2016 Apr
27)
@@ -55,14 +61,37 @@ Packages:
Vim.org: when a user already has a homepage, do show the field so that it can
be deleted.
+Patch to fix memory leak (Justin Keyes, 2016 May 16, #811)
+Instead free before assigning, set to NULL after free.
+
+Comparing partials doesn't work well. (Nikolai Pavlov, 2016 May 17, #813)
+Examples in the form of a test (May 19)
+
+Documentation for partials is lacking.
+- Add "partial" and "partials" tag.
+- Assigning to a dict member creates a partial.
+ How to store a partial associated with dictA in dictB? Add help for this.
+ See comments on #812.
+- using dict.Func for function() is broken: not true (Nikolai Pavlov, May 20)
+
+Patch to fix that BufUnload is triggered twice. (Hirohito Higashi, 2016 May
+14)
+
+channel:
-- When running "echo hello" the job remains defunc. (Nicola, May 7)
- Feedback from Ramel Eshed, May 7. Occasional crashes.
+- Close_cb isn't invoked when output goes to a buffer. (Luc Hermitte)
+- close_cb and exit_cb not invoked when using jo_stop() on Windows.
+ (Linwei, 2016 May 18, #817)
+ Similar problem, related to keeping reference to job. (Skywind, May 18)
+- Recursive callback call? (Luc Hermitte, 2016 May 17)
- GUI:cursor blinking is irregular when invoking callbacks. (Ramel Eshed, 2016
Apr 16) somehow remember the previous state?
- When a message in the queue but there is no callback, drop it after a while?
Add timestamp to queued messages and callbacks with ID, remove after a
minute. Option to set the droptime.
+- Inefficiency in ch_read() with very long lines. Reallocating buffer with
+ small increments in channel_collapse(). Avoid calling strlen() too often.
+ Add an option to drop text of very long lines? Default to 1 Mbyte.
- Add remark about undo sync, is there a way to force it?
- When starting a job, have an option to open the server socket, so we know
the port, and pass it to the command with --socket-fd {nr}. (Olaf Dabrunz,
@@ -148,7 +177,13 @@ Patch to fix escaping special characters for delete(). (tc-0, 2016 Mar 20,
Invalid behavior with NULL list. (Nikolai Pavlov, #768)
-After patch 7.4.1818 the language is removed too often. (Ken Takata, 2016 May
+Patch to fix using CTRL-] on "{address}." in help. (Hirohito Higashi, 2016 May
+18, #814)
+
+&t_ut not used with 'termguicolors' is set. (Jacob Niehus, 2016 May 14, #804)
+Patch to fix this, Jacob Niehus, 2016 May 14, #805)
+
+For current Windows build .pdb file is missing. (Gabriele Fava, 2016 May 11)
5)
When 'autochdir' is set, writing new file does not change the current dir.
@@ -181,6 +216,10 @@ Patch for C syntax HL. (Bradley Garagan, 2016 Apr 17) #763
Patch to make matchit work better, respect 'matchpairs'. (Ken Takata, 2016 Mar
25)
+Possibly wrong value for seq_cur. (Florent Fayolle, 2016 May 15, #806)
+
+Patch to improve map documentation. Issue #799.
+
We can use '. to go to the last change in the current buffer, but how about
the last change in any buffer? Can we use ', (, is next to .)?
@@ -206,6 +245,12 @@ Update 2016 Mar 28. Can include all parts into one dist patch.
Patch to support 64 bit ints for Number. (Ken Takata, 2016 Jan 21)
Update 2016 Apr 24.
+Patch for groovy multi-line comment highlighting. (Justin M. Keyes, 2016 May
+20 #644)
+
+When doing "vi buf.md" a BufNew autocommand for *.md is not triggered.
+Because of using the initial buffer? (Dun Peal, 2016 May 12)
+
Patch to add the :bvimgrep command. (Christian Brabandt, 2014 Nov 12)
Updated 2016 Feb 10
diff --git a/runtime/doc/version8.txt b/runtime/doc/version8.txt
index b9df287627..eb42053939 100644
--- a/runtime/doc/version8.txt
+++ b/runtime/doc/version8.txt
@@ -1,4 +1,4 @@
-*version8.txt* For Vim version 8.0. Last change: 2016 Apr 14
+*version8.txt* For Vim version 8.0. Last change: 2016 May 20
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -13,10 +13,8 @@ found below |vim-7.4|. Use this command to see the version you are using: >
:version
See |vi_diff.txt| for an overview of differences between Vi and Vim 7.0.
-See |version4.txt| for differences between Vim 3.x and Vim 4.x.
-See |version5.txt| for differences between Vim 4.x and Vim 5.x.
-See |version6.txt| for differences between Vim 5.x and Vim 6.x.
-See |version7.txt| for differences between Vim 6.x and Vim 7.x.
+See |version4.txt|, |version5.txt|, |version6.txt| and |version7.txt| for
+differences between other versions.
INCOMPATIBLE CHANGES |incompatible-8|