diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-10-30 21:55:26 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-10-30 21:55:26 +0100 |
commit | b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59 (patch) | |
tree | 66eae772fda9599999682b9720e65822170140b1 /runtime/doc | |
parent | fb63090b62801d718fe7e1f44407358404c08724 (diff) | |
download | vim-git-b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59.tar.gz |
Runtime file updates.
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/channel.txt | 9 | ||||
-rw-r--r-- | runtime/doc/pi_gzip.txt | 3 | ||||
-rw-r--r-- | runtime/doc/syntax.txt | 11 | ||||
-rw-r--r-- | runtime/doc/todo.txt | 3 |
4 files changed, 16 insertions, 10 deletions
diff --git a/runtime/doc/channel.txt b/runtime/doc/channel.txt index 6588c9e79..bfd7246d2 100644 --- a/runtime/doc/channel.txt +++ b/runtime/doc/channel.txt @@ -1,4 +1,4 @@ -*channel.txt* For Vim version 8.0. Last change: 2016 Sep 29 +*channel.txt* For Vim version 8.0. Last change: 2016 Oct 27 VIM REFERENCE MANUAL by Bram Moolenaar @@ -598,9 +598,10 @@ See |job_setoptions()| and |ch_setoptions()|. *job-exit_cb* "exit_cb": handler Callback for when the job ends. The arguments are the job and the exit status. - Vim checks about every 10 seconds for jobs that ended. - The check also be triggered by calling |job_status()|, - which may then invoke the exit_cb handler. + Vim checks up to 10 times per second for jobs that + ended. The check can also be triggered by calling + |job_status()|, which may then invoke the exit_cb + handler. Note that data can be buffered, callbacks may still be called after the process ends. *job-timeout* diff --git a/runtime/doc/pi_gzip.txt b/runtime/doc/pi_gzip.txt index 31cd81b84..70495708b 100644 --- a/runtime/doc/pi_gzip.txt +++ b/runtime/doc/pi_gzip.txt @@ -1,4 +1,4 @@ -*pi_gzip.txt* For Vim version 8.0. Last change: 2012 Jul 19 +*pi_gzip.txt* For Vim version 8.0. Last change: 2016 Oct 30 VIM REFERENCE MANUAL by Bram Moolenaar @@ -27,6 +27,7 @@ with these extensions: *.bz2 bzip2 *.lzma lzma *.xz xz + *.lz lzip That's actually the only thing you need to know. There are no options. diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt index ae80a44eb..2138f0284 100644 --- a/runtime/doc/syntax.txt +++ b/runtime/doc/syntax.txt @@ -1,4 +1,4 @@ -*syntax.txt* For Vim version 8.0. Last change: 2016 Sep 29 +*syntax.txt* For Vim version 8.0. Last change: 2016 Oct 30 VIM REFERENCE MANUAL by Bram Moolenaar @@ -4597,7 +4597,14 @@ in their own color. Doesn't work recursively, thus you can't use ":colorscheme" in a color scheme script. - After the color scheme has been loaded the + + To customize a colorscheme use another name, e.g. + "~/.vim/colors/mine.vim", and use `:runtime` to load + the original colorscheme: > + runtime colors/evening.vim + hi Statement ctermfg=Blue guifg=Blue + +< After the color scheme has been loaded the |ColorScheme| autocommand event is triggered. For info about writing a colorscheme file: > :edit $VIMRUNTIME/colors/README.txt diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index 11aea1d97..d869eda86 100644 --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -35,7 +35,6 @@ 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) - Add 'cwd' argument to start_job(): directory to change to in the child. check for valid directory before forking. @@ -111,8 +110,6 @@ Allow using json with empty key? Dict already has it. Json string with trailing \u should be an error. (Lcd) -Patch to fix conceal mode. (Christian Brabandt, 2016 Oct 23, close #1092) - Patch to reset ex_exitvalue after catch. (Christian Brabandt, 2016 Oct 23) Patch to deal with changed configure events in GTK 3. (Jan Alexander Steffens, |