Re: Behavior of `:silent !{cmd}`

2020-02-07 Fir de Conversatie Ken Takata
Hi Bram, 2020/2/8 Sat 7:03:24 UTC+9 Bram Moolenaar wrote: > > > Ken Takata wrote: > > > `:help :!` says: > > > > Vim redraws the screen after the command is finished, > > because it may have printed any text. This requires a > > hit-enter prompt, so that y

Re: Behavior of `:silent !{cmd}`

2020-02-07 Fir de Conversatie Bram Moolenaar
Ken Takata wrote: > `:help :!` says: > > Vim redraws the screen after the command is finished, > because it may have printed any text. This requires a > hit-enter prompt, so that you can read any messages. > To avoid this use: > >

Patch 8.2.0230

2020-02-07 Fir de Conversatie Bram Moolenaar
Patch 8.2.0230 Problem:Terminal popup test is flaky. Solution: Increase wait time a bit. Files: src/testdir/test_terminal.vim *** ../vim-8.2.0229/src/testdir/test_terminal.vim 2020-02-06 11:54:31.107664148 +0100 --- src/testdir/test_terminal.vim 2020-02-07 22:19:33.64866

Patch 8.2.0229

2020-02-07 Fir de Conversatie Bram Moolenaar
Patch 8.2.0229 Problem:Compare instructions not tested. Solution: Add test cases. Fix disassemble with line continuation. Files: src/testdir/test_vim9_disassemble.vim, src/vim9execute.c, src/vim9compile.c *** ../vim-8.2.0228/src/testdir/test_vim9_disassemble.vim 20

Re: [vim/vim] Add %check as allowed section in SPEC files. (#5531)

2020-02-07 Fir de Conversatie Bram Moolenaar
> > the usual way is to have the runtime file maintainer send an update > > to Bram for inclusion. > > The hope that Bram would actually follow ``vim_dev`` is probably just > a fantasy, right? Fantasies may come true! :-) -- Those who live by the sword get shot by those who don't. /// Bram

Patch 8.2.0228

2020-02-07 Fir de Conversatie Bram Moolenaar
Patch 8.2.0228 Problem:Configure does not recognize gcc version on BSD. Solution: Do not use "\+" in the pattern matching the version number. (Ozaki Kiichi, closes #5590) Files: src/configure.ac, src/auto/configure *** ../vim-8.2.0227/src/configure.ac2020-02-05 20:44:

middle-click paste replaces tab with single space

2020-02-07 Fir de Conversatie 'Jörn Engel' via vim_dev
Seems a common enough problem that there should be earlier reports, but I couldn't find any. I commonly use visual mode to mark things. Within an editor window, I use y and p. Between editor windows, I use y and middle-click. If I do that, it turns: a b c into: a b c The p

bunload unloads an unexpected buffer

2020-02-07 Fir de Conversatie Yegappan Lakshmanan
Hi all, The :bunload command unloads an unexpected buffer when an offset is used for the range. For example, let us say we have four buffers (b1, b2, b3 and b4) in the buffer list and only b1 and b2 are loaded. The buffers b3 and b4 are not loaded. The current buffer is b1. With this setup, if th

Re: Behavior of `:silent !{cmd}`

2020-02-07 Fir de Conversatie Ken Takata
Hi, 2020/2/7 Fri 18:19:53 UTC+9 Ken Takata wrote: > > Hi, > > `:help :!` says: > > Vim redraws the screen after the command is finished, > because it may have printed any text. This requires a > hit-enter prompt, so that you can read any messages. >

Behavior of `:silent !{cmd}`

2020-02-07 Fir de Conversatie Ken Takata
Hi, `:help :!` says: Vim redraws the screen after the command is finished, because it may have printed any text. This requires a hit-enter prompt, so that you can read any messages. To avoid this use: > :silent !{cmd}