Re: [patch] fixed typo in runtime/doc/eval.txt

2016-10-13 Fir de Conversatie Bram Moolenaar
Dominique wrote: > Attached patch fixes a typo in runtime/doc/eval.txt. Thanks. -- Dreams are free, but there's a small charge for alterations. /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moolenaar.net \\\ ///sponsor Vim, vote for features -- http://www.Vim.org/sponsor/

Re: [bug][patch] Doing ":redraw" during external command causes strange screen state

2016-10-13 Fir de Conversatie Bram Moolenaar
Ozaki Kiichi wrote: > Doing ":redraw" during external command causes strange screen state and > cursor position. > > [repro steps] > > test.vim > > > " for clarity of screen state > colorscheme morning > syntax on > > function! Callback(timer) abort > redraw > "quit > endfunctio

Re: [vim/vim] make line commands use visual lines in softwrap (enhancement) (#1164)

2016-10-13 Fir de Conversatie Manuel Ortega
On Thu, Oct 13, 2016 at 4:00 PM, yashamon wrote: > What about D, V command, etc? these behave terribly with wrapped text. > For the D command, just do dg$. If you don't like typing three characters, make up a mapping. -Manny -- -- You received this message from the "vim_dev" maillist. Do not

[bug][patch] matchaddpos() may not draw overldapped pos.

2016-10-13 Fir de Conversatie Ozaki Kiichi
Hi. This is matchaddpos() problem. [repro steps] vim -Nu NONE i1234567890 :call matchaddpos('ErrorMsg', [[1, 1, 5], [1, 3, 5]]) expected: colored 1~7 ("12345" and "34567"; pos [1, 1, 5] and [1, 3, 5], overlapped "345") actual: colored 1~5 ("12345"; only first pos [1, 1, 5]) This problem occ

[bug][patch] Doing ":redraw" during external command causes strange screen state

2016-10-13 Fir de Conversatie Ozaki Kiichi
Hi. Doing ":redraw" during external command causes strange screen state and cursor position. [repro steps] test.vim " for clarity of screen state colorscheme morning syntax on function! Callback(timer) abort redraw "quit endfunction call timer_start(1000, 'Callback') :!ls

RFC: Can we have a bang (!) modifier after ":caddexpr" and ":cexpr" ?

2016-10-13 Fir de Conversatie skywind3000
Thanks to the new apis in vim 8. I have just released a plugin "asyncrun" to run a shell command in background and display the output to the quickfix window in realtime: https://github.com/skywind3000/asyncrun.vim This is a better alternative to old "vim-dispatch" plugin by using the advantage