Re: mix of vim9 and legacy vimscript

2022-01-14 Thread Christian Brabandt
Hi, I haven't yet played much with Vim9 Script, but are you aware, that you do not need my plugin just to be able to use Patient Diff mode? This is all configurable by Vim using the 'diffopt' setting switch nowadays. Thanks, Chris On Fr, 14 Jan 2022, Ni Va wrote: > It seems this kind of joke

Re: Pasting some yank line is slow

2022-01-14 Thread Tim Chase
On 2022-01-14 01:04, Ni Va wrote: > I encounter a recent problem pasting some yank things (lines or > sentences' part). > > don't see why because my updatetime is et to 300 and redrawtime is > set to 500. A couple candidates occur to me: 1) if the paste itself is slow to activate, do you have

Re: mix of vim9 and legacy vimscript

2022-01-14 Thread Ni Va
It seems this kind of joke in red bold caused issue. in https://github.com/niva-xx/vim9-diff-enhanced/blob/master/autoload/EnhancedDiff.vim def s:SysList(cmd: string): string if exists('*systemlist') return systemlist(cmd) endif return split(system(cmd), '\n') enddef function

Pasting some yank line is slow

2022-01-14 Thread Ni Va
Hi, I encounter a recent problem pasting some yank things (lines or sentences' part). don't see why because my updatetime is et to 300 and redrawtime is set to 500. Thank you. NiVA -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text

mix of vim9 and legacy vimscript

2022-01-14 Thread Ni Va
Hi Bram, Christian, Hi All, I wish to use and port some part of plugin made by Christian few years ago in order to improve dirdiff with patience algorithm. https://github.com/chrisbra/vim-diff-enhanced In vim9 help ยง2 it is written; *Vim9 script and legacy Vim script can be mixed. There