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/
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
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
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
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
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