Fixed 2 typos in runtime/doc/options.txt

2018-04-21 Fir de Conversatie Dominique Pellé
Hi Attached patch fixes 2 typos in runtime/doc/options.txt Regards Dominique -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this mes

Patch 8.0.1747

2018-04-21 Fir de Conversatie Bram Moolenaar
Patch 8.0.1747 Problem:MS-Windows: term_start() does not set job_info() cmd. Solution: Share the code from job_start() to set jv_argv. Files: src/testdir/test_terminal.vim, src/channel.c, src/misc2.c, src/proto/misc2.pro, src/terminal.c *** ../vim-8.0.1746/src/testdir/test

Patch 8.0.1746

2018-04-21 Fir de Conversatie Bram Moolenaar
Patch 8.0.1746 Problem:MS-Windows: channel tests fail. Solution: Make a copy of the command before splitting it. Files: src/channel.c *** ../vim-8.0.1745/src/channel.c 2018-04-21 22:30:04.708058436 +0200 --- src/channel.c 2018-04-21 22:54:49.291381589 +0200 ***

Re: CmdLineLeave: Distinguish canceled (Esc/Ctrl-C) command/search?

2018-04-21 Fir de Conversatie Ivan Brennan
The TextYankPost autocommand carries some additional info in the v:event dictionary. It seems like this approach would make sense for CmdlineLeave, as a way to indicate what caused the command line to be left. -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type y

Re: Patch 8.0.1742

2018-04-21 Fir de Conversatie Bram Moolenaar
Yegappan wrote: > On Sat, Apr 21, 2018 at 12:52 PM, Cesar Romani wrote: > > On 21/04/2018 12:49 p.m., Bram Moolenaar wrote: > >> > >> Patch 8.0.1742 > >> Problem:Cannot get a list of all the jobs. Cannot get the command > >> of the job. > >> Solution: When job_info() is called

Patch 8.0.1745

2018-04-21 Fir de Conversatie Bram Moolenaar
Patch 8.0.1745 Problem:Build failure on MS-Windows. Solution: Build job arguments for MS-Windows. Fix allocating job twice. Files: src/structs.h, src/channel.c, src/os_unix.c, src/misc2.c, src/terminal.c, src/proto/misc2.pro *** ../vim-8.0.1744/src/structs.h 2018-04-

Re: Patch 8.0.1742

2018-04-21 Fir de Conversatie Bram Moolenaar
Cesar Romani wrote: > On 21/04/2018 12:49 p.m., Bram Moolenaar wrote: > > > > Patch 8.0.1742 > > Problem:Cannot get a list of all the jobs. Cannot get the command > > of the job. > > Solution: When job_info() is called without an argument return a > > list of

Re: Patch 8.0.1742

2018-04-21 Fir de Conversatie Yegappan Lakshmanan
Hi, On Sat, Apr 21, 2018 at 12:52 PM, Cesar Romani wrote: > On 21/04/2018 12:49 p.m., Bram Moolenaar wrote: >> >> Patch 8.0.1742 >> Problem:Cannot get a list of all the jobs. Cannot get the command >> of the job. >> Solution: When job_info() is called without an argument return

Re: Patch 8.0.1742

2018-04-21 Fir de Conversatie Cesar Romani
On 21/04/2018 12:49 p.m., Bram Moolenaar wrote: > > Patch 8.0.1742 > Problem:Cannot get a list of all the jobs. Cannot get the command > of the job. > Solution: When job_info() is called without an argument return a > list of jobs. Otherwise, include the command tha

Patch 8.0.1744

2018-04-21 Fir de Conversatie Bram Moolenaar
Patch 8.0.1744 Problem:On some systems /dev/stdout isn't writable. Solution: Skip test if writing is not possible. (James McCoy, closes #2830) Files: src/testdir/test_writefile.vim *** ../vim-8.0.1743/src/testdir/test_writefile.vim 2017-11-25 17:24:05.634587905 +0100 --- src/tes

Patch 8.0.1743

2018-04-21 Fir de Conversatie Bram Moolenaar
[I had accidentally included the changes to src/structs.h in patch 8.0.1742] Patch 8.0.1743 Problem:Terminal window options are named inconsistently. Solution: prefix terminal window options with "termwin". Keep the old names for now as an alias. Files: src/option.c, src/o

Patch 8.0.1742

2018-04-21 Fir de Conversatie Bram Moolenaar
Patch 8.0.1742 Problem:Cannot get a list of all the jobs. Cannot get the command of the job. Solution: When job_info() is called without an argument return a list of jobs. Otherwise, include the command that the job is running. (Yegappan Lakshmanan) File

Re: Patch to modify job_info() to return information about all the jobs

2018-04-21 Fir de Conversatie Bram Moolenaar
Yegappan wrote: > >> >> Currently the job_info() function returns information about a specific > >> >> job > >> >> and there is no function available to return information about all the > >> >> jobs. > >> >> The attached patch modifies the job_info() function to return > >> >> information > >>

Patch 8.0.1741

2018-04-21 Fir de Conversatie Bram Moolenaar
Patch 8.0.1741 Problem:MS-Windows with msys2 cannot build Ruby statically. Solution: Add RUBY_VERSION to CFLAGS later. (Gray Wolf, closes #2833) Files: src/Make_cyg_ming.mak *** ../vim-8.0.1740/src/Make_cyg_ming.mak 2018-04-20 22:29:06.148195078 +0200 --- src/Make_cyg_ming.mak

Re: Patch to modify job_info() to return information about all the jobs

2018-04-21 Fir de Conversatie Yegappan Lakshmanan
Hi Bram, On Thu, Apr 5, 2018 at 1:47 PM, Bram Moolenaar wrote: > > Yegappan wrote: > >> >> Currently the job_info() function returns information about a specific job >> >> and there is no function available to return information about all the >> >> jobs. >> >> The attached patch modifies the job