summaryrefslogtreecommitdiffstats
path: root/runtime/doc
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-31 22:22:10 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-31 22:22:10 +0200
commitf37506f60f87d52a9e8850e30067645e2b13783c (patch)
treea11d81f91e6ccb82f9ccdde6ad426ffbbaf3940f /runtime/doc
parentc628fdcd46e93c308f742efdf54248695960e290 (diff)
Updated runtime files. Remove HiLink commands.
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/channel.txt4
-rw-r--r--runtime/doc/eval.txt4
-rw-r--r--runtime/doc/todo.txt7
3 files changed, 11 insertions, 4 deletions
diff --git a/runtime/doc/channel.txt b/runtime/doc/channel.txt
index 5cc214caf1..c5189727cd 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 Aug 27
+*channel.txt* For Vim version 7.4. Last change: 2016 Aug 31
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -25,7 +25,9 @@ The Netbeans interface also uses a channel. |netbeans|
{Vi does not have any of these features}
{only when compiled with the |+channel| feature for channel stuff}
+ You can check this with: `has('channel')`
{only when compiled with the |+job| feature for job stuff}
+ You can check this with: `has('job')`
==============================================================================
1. Overview *job-channel-overview*
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index d449a60d68..bd495041b6 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 Aug 30
+*eval.txt* For Vim version 7.4. Last change: 2016 Aug 31
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -7778,7 +7778,7 @@ timer_start({time}, {callback} [, {options}])
busy or Vim is not waiting for input the time will be longer.
{callback} is the function to call. It can be the name of a
- function or a Funcref. It is called with one argument, which
+ function or a |Funcref|. It is called with one argument, which
is the timer ID. The callback is only invoked when Vim is
waiting for input.
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index ea025d646a..90f9e7f0d5 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 Aug 30
+*todo.txt* For Vim version 7.4. Last change: 2016 Aug 31
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -43,11 +43,15 @@ Test_sign_completion() fails on MS-Windows (console and GUI) Completion
doesn't have both tb_paste.xpm and tb_print.xpm but "tb_p". Different default
options?
+Patch to trigger autocommands for :cexpr etc. (Yegappan, Aug 30, #1021)
+
Test_nb_basic() fails on MS-Windows GUI. line 12: Expected 2 but got 1.
line 13: Expected 20 but got 1.
Figure out building with Ruby on MS-Windows.
+Problem with 'incsearch'. (Mike Williams, 2016 Aug 31)
+
:cexpr doesn't trigger QuickFixCmdPost. (Mathias Stearn, 2016 Aug 29, #1021)
Needs documentation. (Yegappan)
@@ -57,6 +61,7 @@ Patch to make it possible to define a test but skip it, by throwing an
exception. (Christian Brabandt, 2016 Aug 30)
+channel:
+- Add 'cwd' argument: directory to change to in the child.
- Implement |job-term| ?
- Channel test fails with Motif. Sometimes kills the X11 server.
- When a message in the queue but there is no callback, drop it after a while?