mirror of
https://github.com/vim/vim.git
synced 2025-08-24 19:45:50 -04:00
Updated runtime files.
This commit is contained in:
parent
dc303bce10
commit
06d2d38ab7
@ -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
|
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
|
For all callbacks: Use |function()| to bind it to arguments
|
||||||
and/or a Dictionary. Or use the form "dict.function" to bind
|
and/or a Dictionary. Or use the form "dict.function" to bind
|
||||||
the Dictionary.
|
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*
|
||||||
"close_cb" A function that is called when the channel gets closed, other
|
"close_cb" A function that is called when the channel gets closed, other
|
||||||
than by calling ch_close(). It should be defined like this: >
|
than by calling ch_close(). It should be defined like this: >
|
||||||
func MyCloseHandler(channel)
|
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
|
"waittime" The time to wait for the connection to be made in
|
||||||
milliseconds. A negative number waits forever.
|
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.
|
Vim checks about every 10 seconds for jobs that ended.
|
||||||
The callback can also be triggered by calling
|
The callback can also be triggered by calling
|
||||||
|job_status()|.
|
|job_status()|.
|
||||||
|
Note that data can be buffered, callbacks may still be
|
||||||
|
called after the process ends.
|
||||||
*job-timeout*
|
*job-timeout*
|
||||||
"timeout" The time to wait for a request when blocking, E.g.
|
"timeout" The time to wait for a request when blocking, E.g.
|
||||||
when using ch_evalexpr(). In milliseconds. The
|
when using ch_evalexpr(). In milliseconds. The
|
||||||
|
@ -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
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||||
@ -3645,7 +3645,7 @@ function({name} [, {arglist}] [, {dict}])
|
|||||||
let Broken = function(dict.Func, [arg], dict)
|
let Broken = function(dict.Func, [arg], dict)
|
||||||
<
|
<
|
||||||
When {arglist} or {dict} is present this creates a partial.
|
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 Funcref and will be used when the Funcref is called.
|
||||||
|
|
||||||
The arguments are passed to the function in front of other
|
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}
|
{only available when compiled with the |+timers| feature}
|
||||||
|
|
||||||
timer_stop({timer}) *timer_stop()*
|
timer_stop({timer}) *timer_stop()*
|
||||||
Stop a timer. {timer} is an ID returned by timer_start().
|
Stop a timer. The timer callback will no longer be invoked.
|
||||||
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()*
|
tolower({expr}) *tolower()*
|
||||||
The result is a copy of the String given, with all uppercase
|
The result is a copy of the String given, with all uppercase
|
||||||
|
@ -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
|
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.
|
SYMBOL, THAI, TURKISH, VIETNAMESE ANSI and BALTIC.
|
||||||
Normally you would use "cDEFAULT".
|
Normally you would use "cDEFAULT".
|
||||||
qXX - quality XX. Valid quality names are: PROOF, DRAFT,
|
qXX - quality XX. Valid quality names are: PROOF, DRAFT,
|
||||||
ANTIALIASED, UNANTIALIASED, CLEARTYPE, DEFAULT.
|
ANTIALIASED, NONANTIALIASED, CLEARTYPE, DEFAULT.
|
||||||
Normally you would use "qDEFAULT".
|
Normally you would use "qDEFAULT".
|
||||||
Some quality values isn't supported in legacy OSs.
|
Some quality values isn't supported in legacy OSs.
|
||||||
|
|
||||||
|
@ -1261,6 +1261,7 @@ $VIM_POSIX vi_diff.txt /*$VIM_POSIX*
|
|||||||
+mzscheme/dyn various.txt /*+mzscheme\/dyn*
|
+mzscheme/dyn various.txt /*+mzscheme\/dyn*
|
||||||
+netbeans_intg various.txt /*+netbeans_intg*
|
+netbeans_intg various.txt /*+netbeans_intg*
|
||||||
+ole various.txt /*+ole*
|
+ole various.txt /*+ole*
|
||||||
|
+packages various.txt /*+packages*
|
||||||
+path_extra various.txt /*+path_extra*
|
+path_extra various.txt /*+path_extra*
|
||||||
+perl various.txt /*+perl*
|
+perl various.txt /*+perl*
|
||||||
+perl/dyn various.txt /*+perl\/dyn*
|
+perl/dyn various.txt /*+perl\/dyn*
|
||||||
|
@ -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
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||||
@ -34,7 +34,13 @@ not be repeated below, unless there is extra information.
|
|||||||
*known-bugs*
|
*known-bugs*
|
||||||
-------------------- Known bugs and current work -----------------------
|
-------------------- 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
|
problem with "Ignore" after adding 'guicolors'. (Charles Campbell, 2016 Apr
|
||||||
27)
|
27)
|
||||||
@ -55,14 +61,37 @@ Packages:
|
|||||||
Vim.org: when a user already has a homepage, do show the field so that it can
|
Vim.org: when a user already has a homepage, do show the field so that it can
|
||||||
be deleted.
|
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:
|
+channel:
|
||||||
- When running "echo hello" the job remains defunc. (Nicola, May 7)
|
|
||||||
- Feedback from Ramel Eshed, May 7. Occasional crashes.
|
- 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
|
- GUI:cursor blinking is irregular when invoking callbacks. (Ramel Eshed, 2016
|
||||||
Apr 16) somehow remember the previous state?
|
Apr 16) somehow remember the previous state?
|
||||||
- When a message in the queue but there is no callback, drop it after a while?
|
- 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
|
Add timestamp to queued messages and callbacks with ID, remove after a
|
||||||
minute. Option to set the droptime.
|
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?
|
- 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
|
- 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,
|
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)
|
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)
|
5)
|
||||||
|
|
||||||
When 'autochdir' is set, writing new file does not change the current dir.
|
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
|
Patch to make matchit work better, respect 'matchpairs'. (Ken Takata, 2016 Mar
|
||||||
25)
|
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
|
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 .)?
|
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)
|
Patch to support 64 bit ints for Number. (Ken Takata, 2016 Jan 21)
|
||||||
Update 2016 Apr 24.
|
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)
|
Patch to add the :bvimgrep command. (Christian Brabandt, 2014 Nov 12)
|
||||||
Updated 2016 Feb 10
|
Updated 2016 Feb 10
|
||||||
|
|
||||||
|
@ -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
|
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
|
:version
|
||||||
|
|
||||||
See |vi_diff.txt| for an overview of differences between Vi and Vim 7.0.
|
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 |version4.txt|, |version5.txt|, |version6.txt| and |version7.txt| for
|
||||||
See |version5.txt| for differences between Vim 4.x and Vim 5.x.
|
differences between other versions.
|
||||||
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.
|
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES |incompatible-8|
|
INCOMPATIBLE CHANGES |incompatible-8|
|
||||||
|
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
" Last Change: Fri Jan 25 10:00 AM 2008 EST
|
" Last Change: Fri Jan 25 10:00 AM 2008 EST
|
||||||
" Maintainer: Benji Fisher PhD <benji@member.AMS.org>
|
" Maintainer: Benji Fisher PhD <benji@member.AMS.org>
|
||||||
" Version: 1.13.2, for Vim 6.3+
|
" Version: 1.13.2, for Vim 6.3+
|
||||||
|
" Fix from Fernando Torres included.
|
||||||
" URL: http://www.vim.org/script.php?script_id=39
|
" URL: http://www.vim.org/script.php?script_id=39
|
||||||
|
|
||||||
" Documentation:
|
" Documentation:
|
||||||
@ -122,7 +123,6 @@ function! s:Match_wrapper(word, forward, mode) range
|
|||||||
" Thanks to Preben "Peppe" Guldberg and Bram Moolenaar for this suggestion!
|
" Thanks to Preben "Peppe" Guldberg and Bram Moolenaar for this suggestion!
|
||||||
if (match_words != s:last_words) || (&mps != s:last_mps) ||
|
if (match_words != s:last_words) || (&mps != s:last_mps) ||
|
||||||
\ exists("b:match_debug")
|
\ exists("b:match_debug")
|
||||||
let s:last_words = match_words
|
|
||||||
let s:last_mps = &mps
|
let s:last_mps = &mps
|
||||||
" The next several lines were here before
|
" The next several lines were here before
|
||||||
" BF started messing with this script.
|
" BF started messing with this script.
|
||||||
@ -134,6 +134,7 @@ function! s:Match_wrapper(word, forward, mode) range
|
|||||||
\ '\/\*:\*\/,#\s*if\%(def\)\=:#\s*else\>:#\s*elif\>:#\s*endif\>'
|
\ '\/\*:\*\/,#\s*if\%(def\)\=:#\s*else\>:#\s*elif\>:#\s*endif\>'
|
||||||
" s:all = pattern with all the keywords
|
" s:all = pattern with all the keywords
|
||||||
let match_words = match_words . (strlen(match_words) ? "," : "") . default
|
let match_words = match_words . (strlen(match_words) ? "," : "") . default
|
||||||
|
let s:last_words = match_words
|
||||||
if match_words !~ s:notslash . '\\\d'
|
if match_words !~ s:notslash . '\\\d'
|
||||||
let s:do_BR = 0
|
let s:do_BR = 0
|
||||||
let s:pat = match_words
|
let s:pat = match_words
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
" Vim plugin for using Vim as manpager.
|
" Vim plugin for using Vim as manpager.
|
||||||
" Maintainer: Enno Nagel <ennonagel+vim@gmail.com>
|
" Maintainer: Enno Nagel <ennonagel+vim@gmail.com>
|
||||||
" Last Change: 2016 May 07
|
" Last Change: 2016 May 20
|
||||||
|
|
||||||
" $MAN_PN is supposed to be set by MANPAGER, see ":help manpager.vim".
|
" $MAN_PN is supposed to be set by MANPAGER, see ":help manpager.vim".
|
||||||
if empty($MAN_PN)
|
if empty($MAN_PN)
|
||||||
@ -25,5 +25,5 @@ function! s:MANPAGER()
|
|||||||
bwipe!
|
bwipe!
|
||||||
|
|
||||||
setlocal filetype=man
|
setlocal filetype=man
|
||||||
exe 'Man' page_sec[1] page_sec[0]
|
exe 'Man' page_sec[2] page_sec[1]
|
||||||
endfunction
|
endfunction
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
" Maintainer: Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org>
|
" Maintainer: Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org>
|
||||||
" Former Maintainers: Gerfried Fuchs <alfie@ist.org>
|
" Former Maintainers: Gerfried Fuchs <alfie@ist.org>
|
||||||
" Wichert Akkerman <wakkerma@debian.org>
|
" Wichert Akkerman <wakkerma@debian.org>
|
||||||
" Last Change: 2015 Oct 24
|
" Last Change: 2016 Apr 24
|
||||||
" URL: https://anonscm.debian.org/cgit/pkg-vim/vim.git/plain/runtime/syntax/debchangelog.vim
|
" URL: https://anonscm.debian.org/cgit/pkg-vim/vim.git/plain/runtime/syntax/debchangelog.vim
|
||||||
|
|
||||||
" Standard syntax initialization
|
" Standard syntax initialization
|
||||||
@ -23,7 +23,7 @@ let binNMU='binary-only=yes'
|
|||||||
syn match debchangelogName contained "^[[:alnum:]][[:alnum:].+-]\+ "
|
syn match debchangelogName contained "^[[:alnum:]][[:alnum:].+-]\+ "
|
||||||
exe 'syn match debchangelogFirstKV contained "; \('.urgency.'\|'.binNMU.'\)"'
|
exe 'syn match debchangelogFirstKV contained "; \('.urgency.'\|'.binNMU.'\)"'
|
||||||
exe 'syn match debchangelogOtherKV contained ", \('.urgency.'\|'.binNMU.'\)"'
|
exe 'syn match debchangelogOtherKV contained ", \('.urgency.'\|'.binNMU.'\)"'
|
||||||
syn match debchangelogTarget contained "\v %(frozen|unstable|sid|%(testing|%(old)=stable)%(-proposed-updates|-security)=|experimental|squeeze-%(backports%(-sloppy)=|volatile|lts|security)|wheezy-%(backports%(-sloppy)=|security)|jessie%(-backports|-security)=|stretch|%(devel|precise|trusty|vivid|wily|xenial)%(-%(security|proposed|updates|backports|commercial|partner))=)+"
|
syn match debchangelogTarget contained "\v %(frozen|unstable|sid|%(testing|%(old)=stable)%(-proposed-updates|-security)=|experimental|squeeze-%(backports%(-sloppy)=|volatile|lts|security)|wheezy-%(backports%(-sloppy)=|security)|jessie%(-backports|-security)=|stretch|%(devel|precise|trusty|vivid|wily|xenial|yakkety)%(-%(security|proposed|updates|backports|commercial|partner))=)+"
|
||||||
syn match debchangelogVersion contained "(.\{-})"
|
syn match debchangelogVersion contained "(.\{-})"
|
||||||
syn match debchangelogCloses contained "closes:\_s*\(bug\)\=#\=\_s\=\d\+\(,\_s*\(bug\)\=#\=\_s\=\d\+\)*"
|
syn match debchangelogCloses contained "closes:\_s*\(bug\)\=#\=\_s\=\d\+\(,\_s*\(bug\)\=#\=\_s\=\d\+\)*"
|
||||||
syn match debchangelogLP contained "\clp:\s\+#\d\+\(,\s*#\d\+\)*"
|
syn match debchangelogLP contained "\clp:\s\+#\d\+\(,\s*#\d\+\)*"
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
" Language: Debian sources.list
|
" Language: Debian sources.list
|
||||||
" Maintainer: Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org>
|
" Maintainer: Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org>
|
||||||
" Former Maintainer: Matthijs Mohlmann <matthijs@cacholong.nl>
|
" Former Maintainer: Matthijs Mohlmann <matthijs@cacholong.nl>
|
||||||
" Last Change: 2015 Oct 24
|
" Last Change: 2016 Apr 24
|
||||||
" URL: https://anonscm.debian.org/cgit/pkg-vim/vim.git/plain/runtime/syntax/debsources.vim
|
" URL: https://anonscm.debian.org/cgit/pkg-vim/vim.git/plain/runtime/syntax/debsources.vim
|
||||||
|
|
||||||
" Standard syntax initialization
|
" Standard syntax initialization
|
||||||
@ -27,7 +27,7 @@ let s:supported = [
|
|||||||
\ 'oldstable', 'stable', 'testing', 'unstable', 'experimental',
|
\ 'oldstable', 'stable', 'testing', 'unstable', 'experimental',
|
||||||
\ 'squeeze', 'wheezy', 'jessie', 'stretch', 'sid', 'rc-buggy',
|
\ 'squeeze', 'wheezy', 'jessie', 'stretch', 'sid', 'rc-buggy',
|
||||||
\
|
\
|
||||||
\ 'precise', 'trusty', 'vivid', 'wily', 'xenial', 'devel'
|
\ 'precise', 'trusty', 'wily', 'xenial', 'yakkety', 'devel'
|
||||||
\ ]
|
\ ]
|
||||||
let s:unsupported = [
|
let s:unsupported = [
|
||||||
\ 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato',
|
\ 'buzz', 'rex', 'bo', 'hamm', 'slink', 'potato',
|
||||||
@ -36,7 +36,7 @@ let s:unsupported = [
|
|||||||
\ 'warty', 'hoary', 'breezy', 'dapper', 'edgy', 'feisty',
|
\ 'warty', 'hoary', 'breezy', 'dapper', 'edgy', 'feisty',
|
||||||
\ 'gutsy', 'hardy', 'intrepid', 'jaunty', 'karmic', 'lucid',
|
\ 'gutsy', 'hardy', 'intrepid', 'jaunty', 'karmic', 'lucid',
|
||||||
\ 'maverick', 'natty', 'oneiric', 'quantal', 'raring', 'saucy',
|
\ 'maverick', 'natty', 'oneiric', 'quantal', 'raring', 'saucy',
|
||||||
\ 'utopic'
|
\ 'utopic', 'vivid'
|
||||||
\ ]
|
\ ]
|
||||||
let &cpo=s:cpo
|
let &cpo=s:cpo
|
||||||
|
|
||||||
|
@ -309,7 +309,7 @@ int main( int argc, char *argv[] )
|
|||||||
ok = sscanf( p, "make[%*d]: Entering directory `%[^']",
|
ok = sscanf( p, "make[%*d]: Entering directory `%[^']",
|
||||||
BasePath );
|
BasePath );
|
||||||
if (verbose)
|
if (verbose)
|
||||||
printf( "[%u]?%s\n", ok, Line );
|
printf( "[%u]?%s\n", (unsigned)ok, Line );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user