matchaddpos() entries via setmatches()

2018-01-31 Fir de Conversatie Rick Howe
In the latest help file of *eval.txt* For Vim version 8.0. Last change: 2018 Jan 28 The last paragraph of matchaddpos() says: < Matches added by |matchaddpos()| are returned by |getmatches()| with an entry "pos1", "pos2", etc., with the value a l

Re: html BufRead autocmd error

2018-01-31 Fir de Conversatie Steve Hall
On Wed, 2018-01-31T1216, Bram Moolenaar wrote: > Steve Hall wrote: > > > > I'm seeing a BufRead autocmd error in with ft=html: > > > > E117: Unknown function: dist#ft#FThtml > > > > This is called in filetype.vim but I can't grep a definition > > anywhere. > > This is in runtime/autoload/dist/ft.v

Patch 8.0.1451

2018-01-31 Fir de Conversatie Bram Moolenaar
Patch 8.0.1451 Problem:It is difficult to set the python home directory properly for Python 2.7 and 3.5 since both use $PYTHONHOME. Solution: Add the 'pythonhome' and 'pythonthreehome' options. (Kazuki Sakamoto, closes #1266) Files: runtime/doc/options.txt, runti

Patch 8.0.1450

2018-01-31 Fir de Conversatie Bram Moolenaar
Patch 8.0.1450 Problem:Endless loop when gui_mch_stop_blink() is called while blink_state is BLINK_OFF. (zdohnal) Solution: Avoid calling gui_update_cursor() recursively. Files: src/gui.c, src/gui_gtk_x11.c, src/proto/gui_gtk_x11.pro, src/gui_mac.c, src/proto/gui

Re: [vim/vim] Optimize DirectX rendering (#2560)

2018-01-31 Fir de Conversatie Ni Va
Le mercredi 31 janvier 2018 20:52:29 UTC+1, Bram Moolenaar a écrit : > Closed #2560 via a338adc. > > > — > You are receiving this because you are subscribed to this thread. > Reply to this email directly, view it on GitHub Thank you !! -- -- You received this message from the "vim_dev" mailli

Patch 8.0.1449

2018-01-31 Fir de Conversatie Bram Moolenaar
Patch 8.0.1449 Problem:Slow redrawing with DirectX. Solution: Avoid calling gui_mch_flush() unnecessarily, especially when updating the cursor. (Ken Takata, closes #2560) Files: runtime/doc/options.txt, src/channel.c, src/edit.c, src/getchar.c, src/gui.c, src/gui

Patch 8.0.1448

2018-01-31 Fir de Conversatie Bram Moolenaar
Patch 8.0.1448 Problem:Segmentation fault when Ruby throws an exception inside :rubyfile command. Solution: Use rb_protect() instead of rb_load_protect(). (ujihisa, closes #2147, greywolf, closes #2512, #2511) Files: src/if_ruby.c, src/testdir/test_ruby.vim ***

Patch 8.0.1447

2018-01-31 Fir de Conversatie Bram Moolenaar
Patch 8.0.1447 Problem:Still too many old style tests. Solution: Turn a few tests into new style. (Yegappan Lakshmanan, closes #2509) Files: src/Makefile, src/testdir/Make_all.mak, src/testdir/Make_vms.mms, src/testdir/main.aap, src/testdir/test15.in,

Patch 8.0.1446

2018-01-31 Fir de Conversatie Bram Moolenaar
Patch 8.0.1446 Problem:Acessing freed memory after window command in auto command. (gy741) Solution: Adjust the pointer in the parent frame. (Christian Brabandt, closes #2467) Files: src/window.c, src/testdir/test_window_cmd.vim *** ../vim-8.0.1445/src/window.c

Re: html BufRead autocmd error

2018-01-31 Fir de Conversatie Bram Moolenaar
Steve Hall wrote: > I'm seeing a BufRead autocmd error in with ft=html: > > Error detected while processing BufRead Auto commands for "*.html": > E117: Unknown function: dist#ft#FThtml > E117: Unknown function: dist#ft#FThtml > E117: Unknown function: dist#ft#FThtml > E117: Unknown function: dis

html BufRead autocmd error

2018-01-31 Fir de Conversatie Steve Hall
I'm seeing a BufRead autocmd error in with ft=html: Error detected while processing BufRead Auto commands for "*.html": E117: Unknown function: dist#ft#FThtml E117: Unknown function: dist#ft#FThtml E117: Unknown function: dist#ft#FThtml E117: Unknown function: dist#ft#FThtml This is called in fil

Patch 8.0.1445

2018-01-31 Fir de Conversatie Bram Moolenaar
Patch 8.0.1445 Problem:Cannot act on edits in the command line. Solution: Add the CmdlineChanged autocommand event. (xtal8, closes #2603, closes #2524) Files: runtime/doc/autocmd.txt, src/ex_getln.c, src/fileio.c, src/testdir/test_autocmd.vim, src/vim.h *** ../

Patch 8.0.1444

2018-01-31 Fir de Conversatie Bram Moolenaar
Patch 8.0.1444 Problem:Missing -D_FILE_OFFSET_BITS=64 may cause problems if a library is compiled with it. Solution: Include -D_FILE_OFFSET_BITS if some CFLAGS has it. (James McCoy, closes #2600) Files: src/configure.ac, src/auto/configure *** ../vim-8.0.1443/s

Patch 8.0.1443

2018-01-31 Fir de Conversatie Bram Moolenaar
Patch 8.0.1443 (after 8.0.1441) Problem:Compiler complains about uninitialized variable. (Tony Mechelynck) Solution: Assign a value to the variable. Files: src/undo.c *** ../vim-8.0.1442/src/undo.c 2018-01-30 22:46:01.405404260 +0100 --- src/undo.c 2018-01-31 14:21:43.712109336 +010

Re: Patch 8.0.1441

2018-01-31 Fir de Conversatie Bram Moolenaar
Tony Mechelynck wrote: > On Tue, Jan 30, 2018 at 10:46 PM, Bram Moolenaar wrote: > > > > Patch 8.0.1441 > > Problem:Using ":undo 0" leaves undo in wrong state. > > Solution: Instead of searching for state 1 and go above, just use the > > start. > > (Ozaki Kiichi, closes #2595)