From 46fceaaa8d1447a9588736d86eb4908214187b08 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 23 Oct 2016 21:21:08 +0200 Subject: Updated runtime files. --- runtime/doc/eval.txt | 4 ++-- runtime/doc/map.txt | 2 +- runtime/doc/tabpage.txt | 5 ++++- runtime/doc/tags | 1 + runtime/doc/todo.txt | 35 ++++++++++++++++++++++++++++++----- runtime/doc/windows.txt | 6 +++--- 6 files changed, 41 insertions(+), 12 deletions(-) (limited to 'runtime/doc') diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 88599ddec..acf84d292 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -1,4 +1,4 @@ -*eval.txt* For Vim version 8.0. Last change: 2016 Oct 02 +*eval.txt* For Vim version 8.0. Last change: 2016 Oct 15 VIM REFERENCE MANUAL by Bram Moolenaar @@ -8214,7 +8214,7 @@ writefile({list}, {fname} [, {flags}]) end does cause the last line in the file to end in a NL. When {flags} contains "a" then append mode is used, lines are - append to the file: > + appended to the file: > :call writefile(["foo"], "event.log", "a") :call writefile(["bar"], "event.log", "a") > diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt index 25ed827a8..e644f832c 100644 --- a/runtime/doc/map.txt +++ b/runtime/doc/map.txt @@ -1,4 +1,4 @@ -*map.txt* For Vim version 8.0. Last change: 2016 Aug 26 +*map.txt* For Vim version 8.0. Last change: 2016 Oct 15 VIM REFERENCE MANUAL by Bram Moolenaar diff --git a/runtime/doc/tabpage.txt b/runtime/doc/tabpage.txt index 810fba077..bc4098109 100644 --- a/runtime/doc/tabpage.txt +++ b/runtime/doc/tabpage.txt @@ -1,4 +1,4 @@ -*tabpage.txt* For Vim version 8.0. Last change: 2016 Sep 09 +*tabpage.txt* For Vim version 8.0. Last change: 2016 Oct 20 VIM REFERENCE MANUAL by Bram Moolenaar @@ -58,6 +58,8 @@ clicking right of the labels. In the GUI tab pages line you can use the right mouse button to open menu. |tabline-menu|. +For the related autocommands see |tabnew-autocmd|. + :[count]tabe[dit] *:tabe* *:tabedit* *:tabnew* :[count]tabnew Open a new tab page with an empty window, after the current @@ -287,6 +289,7 @@ Variables local to a tab page start with "t:". |tabpage-variable| Currently there is only one option local to a tab page: 'cmdheight'. + *tabnew-autocmd* The TabLeave and TabEnter autocommand events can be used to do something when switching from one tab page to another. The exact order depends on what you are doing. When creating a new tab page this works as if you create a new diff --git a/runtime/doc/tags b/runtime/doc/tags index fa1465e06..166ff594b 100644 --- a/runtime/doc/tags +++ b/runtime/doc/tags @@ -8599,6 +8599,7 @@ tab-page-commands tabpage.txt /*tab-page-commands* tab-page-intro tabpage.txt /*tab-page-intro* tab-page-other tabpage.txt /*tab-page-other* tabline-menu tabpage.txt /*tabline-menu* +tabnew-autocmd tabpage.txt /*tabnew-autocmd* tabpage tabpage.txt /*tabpage* tabpage-variable eval.txt /*tabpage-variable* tabpage.txt tabpage.txt /*tabpage.txt* diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index 736c5412b..93a3abeae 100644 --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -1,4 +1,4 @@ -*todo.txt* For Vim version 8.0. Last change: 2016 Oct 12 +*todo.txt* For Vim version 8.0. Last change: 2016 Oct 23 VIM REFERENCE MANUAL by Bram Moolenaar @@ -35,7 +35,10 @@ not be repeated below, unless there is extra information. -------------------- Known bugs and current work ----------------------- +channel: +- Check for job cleanup more often? Patch from Ozaki Kiichi, 2016 Oct 22. - Problem with stderr on Windows? (Vincent Rischmann, 2016 Aug 31, #1026) +- On Windows job_stop() stops cmd.exe, not the commands it runs. (#1184) + Patch from Yasuhiro Matsumoto, Oct 21. - Add 'cwd' argument to start_job(): directory to change to in the child. check for valid directory before forking. Part of patch for environment, Yasuhiro Matsumoto, #1160 @@ -103,10 +106,26 @@ What if there is an invalid character? Should json_encode()/json_decode() restrict recursiveness? Or avoid recursiveness. +Patch to fix conceal mode. (Christian Brabandt, 2016 Oct 23, close #1092) + +Patch to reset ex_exitvalue after catch. (Christian Brabandt, 2016 Oct 23) + +Wrong diff highlighting with three files. (2016 Oct 20, #1186) +Also get E749 on exit. + +Patch for better explanation of 'compatible' side effects. +https://github.com/vim/vim/pull/1161/files + Error in test_startup_utf8 on Solaris. (Danek Duvall, 2016 Aug 17) +Screen updated delayed when using CTRL-O u in Insert mode. +(Barlik, #1191) Perhaps because status message? + +Patch for restoring wide characters in the console buffer. +(Ken Takata, 2016 Jun 7) + Patch to fix escaping of job arguments. (Yasuhiro Matsumoto, 2016 Oct 5) -Still not right. +Update Oct 14: https://gist.github.com/mattn/d47e7d3bfe5ade4be86062b565a4bfca Once .exe with updated installer is available: Add remark to download page about /S and /D options (Ken Takata, 2016 Apr 13) @@ -149,6 +168,9 @@ Add an argument to choose binary or non-binary (like readfile()), when omitted use the current behavior. Include the test. +When 'keywordprg' starts with ":" the argument is still escaped as a shell +command argument. (Romain Lafourcade, 2016 Oct 16, #1175) + Idea from Sven: record sequence of keys. Useful to show others what they are doing (look over the shoulder), and also to see what happened. Probably list of keystrokes, with some annotations for mode changes. @@ -179,6 +201,9 @@ Also with latest version. Cannot delete a file with square brackets with delete(). (#696) +Patch to add ":syn foldlevel" to use fold level further down the line. +(Brad King, 2016 Oct 19) + Completion for input() does not expand environment variables. (chdiza, 2016 Jul 25, #948) @@ -218,9 +243,6 @@ Patch to improve map documentation. Issue #799. Patch for syntax folding optimization. (Shougo, 2016 Sep 6, #1045) -Patch for restoring wide characters in the console buffer. -(Ken Takata, 2016 Jun 7) - Patch for drag&drop reordering of GUI tab pages reordering. (Ken Takata, 2013 Nov 22, second one, also by Masamichi Abe) Now on Git: https://gist.github.com/nocd5/165286495c782b815b94 @@ -331,6 +353,9 @@ Patch to have text objects defined by arbitrary single characters. (Daniel Thau, 2013 Nov 20, 2014 Jan 29, 2014 Jan 31) Added tests (James McCoy, 2016 Aug 3). Still needs more work. +Feature request: add the "al" text object, to manipulate a screen line. +Especially useful when using 'linebreak' + Access to uninitialized memory in match_backref() regexp_nda.c:4882 (Dominique Pelle, 2015 Nov 6) diff --git a/runtime/doc/windows.txt b/runtime/doc/windows.txt index 0ef1a8bf5..3c695e61a 100644 --- a/runtime/doc/windows.txt +++ b/runtime/doc/windows.txt @@ -1,4 +1,4 @@ -*windows.txt* For Vim version 8.0. Last change: 2016 Aug 23 +*windows.txt* For Vim version 8.0. Last change: 2016 Oct 21 VIM REFERENCE MANUAL by Bram Moolenaar @@ -295,8 +295,8 @@ CTRL-W CTRL-Q *CTRL-W_CTRL-Q* :1quit " quit the first window :$quit " quit the last window :9quit " quit the last window - " if there are less than 9 windows opened - :-quit " quit the previews window + " if there are fewer than 9 windows opened + :-quit " quit the previous window :+quit " quit the next window :+2quit " quit the second next window < -- cgit v1.2.3