Tuesday, November 2, 2021

Re: goyo plugin and artifacts in TTY

> > When starting Goyo, artifacts of the previous screen-wide display of the
> > text stay. Scrolling though the text doesn't remove them (as opposed to
> > Goyo in a GUI, where resizing the window removes the artifacts).
>
> I have seen this, only with the Apple Terminal app. It looks like a bug
> in Terminal, since Vim cannot produce this pixel dust. You can report
> the problem to Apple (but they have a history of being very
> unresponsive).

The problem is in the FreeBSD Operating System, with vim version
8.2.3458 but also on earlier versions.

It is *not* in some app, but plain TTY console/terminal -- no GUI
whatsoever (yep, this OS can do such basic things ;-). In FreeBSD version
13.0 p4, I use the default VT terminal for TTY.

Routine is to first ask at the program level, so I dropped it here.
Since you don't recognize the problem, I'll ask at the OS-level.

Thanks anyway,

Kind Regards,

//meine

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/YYHAG6xql4hzrcH4%40trackstand.

Re: TagBar 2.7 and ctags 5.9 exception closed GVim win32 x86 8.2.3558

Fixed

Solved / Fixed :

1. Copied python311.dll, python3.dll, vcruntime140.dll in your distro path  expand('$vim/extensions/python/x86')

2. Put this in your _vimrc

  if has('win32')
  var py3extenspath: string = expand('$vim/extensions/python/x86/')
if isdirectory( py3extenspath )
  var py3dllpath = py3extenspath .. 'python311.dll'
  if !filereadable(py3dllpath)
  else
var pythonthree_homes: list<string> = system('where "python311.dll"')->split('\n')->filter('v:val =~ "extensions"')
py3dllpath = pythonthree_homes[0]->fnamemodify(':p:gs?\\?/?')
  endif
  execute 'set pythonthreehome=' .. py3extenspath
  execute 'set pythonthreedll='  .. py3dllpath->fnamemodify(':p:gs?\\?/?')
endif
  endif

3. Testing Py3 v3.11 interface 
nnoremap <silent> <F8>   :exec 'py3 import sys'<cr> :exec 'py3 print(''python3 hell working'')'<cr>


Le mardi 2 novembre 2021 à 14:39:04 UTC+1, Ni Va a écrit :
Tagbar plugin is executing python3 command that is closing GVim.

See autoload/Tagbar.vim -> s:run_system(cmd, version)

Version of python not integrated yet : 3.11.0



Le samedi 23 octobre 2021 à 13:07:02 UTC+2, Ni Va a écrit :
Hi,

I daily use Gvim reading source code or other with TagBar plugin under Win10 OS under GVim 32bits x86 8.2.3558 build with ming under MSYS2.

It appears that TagBarToogle it works perfectly on my physical laptop Win10 64bits meanwhile an exception seems closing Gvim under Virtual MAchine under same OS.

Thanks for helping.
NiVa

Gvim
VIM - Vi IMproved 8.2 (2019 Dec 12, compiled Oct 23 2021 12:24:35)
MS-Windows 32-bit GUI version with OLE support
Included patches: 1-3558

TagBar
*tagbar.txt*    Display tags of a file ordered by scope

Author:         Jan Larres 
Licence:        Vim licence, see |license|
Version:        2.7


Ctags
Universal Ctags 5.9.0(c0b04ae1), Copyright (C) 2015 Universal Ctags Team
Universal Ctags is derived from Exuberant Ctags.
Exuberant Ctags 5.8, Copyright (C) 1996-2009 Darren Hiebert
  Compiled: Oct 13 2021, 16:48:46
  Optional compiled features: +win32, +wildcards, +regex, +gnulib_regex, +unix-path-separator, +iconv, +option-directory, +case-insensitive-filenames, +packcc, +optscript

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/587b3438-f161-4daa-8eca-c7111190a9e2n%40googlegroups.com.

Re: Python 311 call fails

Fixed

Solved / Fixed :

1. Copied python311.dll, python3.dll, vcruntime140.dll in your distro path  expand('$vim/extensions/python/x86')

2. Put this in your _vimrc

  if has('win32')
  var py3extenspath: string = expand('$vim/extensions/python/x86/')
if isdirectory( py3extenspath )
  var py3dllpath = py3extenspath .. 'python311.dll'
  if !filereadable(py3dllpath)
  else
var pythonthree_homes: list<string> = system('where "python311.dll"')->split('\n')->filter('v:val =~ "extensions"')
py3dllpath = pythonthree_homes[0]->fnamemodify(':p:gs?\\?/?')
  endif
  execute 'set pythonthreehome=' .. py3extenspath
  execute 'set pythonthreedll='  .. py3dllpath->fnamemodify(':p:gs?\\?/?')
endif
  endif

3. Testing Py3 v3.11 interface 
nnoremap <silent> <F8>   :exec 'py3 import sys'<cr> :exec 'py3 print(''python3 hell working'')'<cr>


Le mercredi 27 octobre 2021 à 15:58:42 UTC+2, Ni Va a écrit :
Hi,

Got this error on pyhton3 print('foo')
E370: Could not load library python311.dll: Le module sp<e9>cifi<e9> est introuvable.
E263: Sorry, this command is disabled, the Python library could not be loaded.

This is my configuration

1) redir @a | echomsg system('where python311.dll') | redir END | put=@a
  C:\Python311\python311.dll^@S:\path\Vim\to\python\x86\python311.dll^@

2) echomsg filereadable('S:\path\Vim\to\python\x86\python311.dll')

3) VIM - Vi IMproved 8.2 (2019 Dec 12, compiled Oct 27 2021 15:23:19)
MS-Windows 32-bit GUI version with OLE support
Included patches: 1-3565
Compiled by ni.va@
Huge version with GUI.  Features included (+) or not (-):
+cmdline_compl      +file_in_path       +lua/dyn            -python             -termguicolors      +windows
+cmdline_hist       +find_in_path       +menu               +python3/dyn        +terminal           +writebackup
Compilation: gcc -I. -Iproto -DWIN32 -DWINVER=0x0600 -D_WIN32_WINNT=0x0600 -DHAVE_PATHDEF -DFEAT_HUGE -DHAVE_STDINT_H -DHAVE_GETTEXT -DHAVE_LOCALE_H -DDYNAMIC_GETTEXT -DFEAT_OLE -DFEAT_CSCOPE -DFEAT_NETBEANS_INTG -DFEAT_JOB_CHANNEL -DFEAT_IPV6 -DHAVE_INET_NTOP -DFEAT_TERMINAL -DFEAT_SOUND -DFEAT_DIRECTX -DDYNAMIC_DIRECTX -DFEAT_DIRECTX_COLOR_EMOJI -DFEAT_GUI_MSWIN -DFEAT_CLIPBOARD -DFEAT_MBYTE_IME -DDYNAMIC_IME -DDYNAMIC_ICONV -pipe -march=i686 -Wall -I./lua-5.3.5/src/include -I./lua-5.3.5/src -DFEAT_LUA -DDYNAMIC_LUA -DDYNAMIC_LUA_DLL="lua53.dll" -DFEAT_RUBY -I C:/Ruby30/include/ruby-3.0.0 -I C:/Ruby30/include/ruby-3.0.0/i386-mingw32 -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL="msvcrt-ruby300.dll" -DRUBY_VERSION=30 -DFEAT_PYTHON3 -DDYNAMIC_PYTHON3 -DDYNAMIC_PYTHON3_DLL="python311.dll" -O3 -fomit-frame-pointer -freg-struct-return
Linking: g++ -I. -Iproto -DWIN32 -DWINVER=0x0600 -D_WIN32_WINNT=0x0600 -DHAVE_PATHDEF -DFEAT_HUGE -DHAVE_STDINT_H -DHAVE_GETTEXT -DHAVE_LOCALE_H -DDYNAMIC_GETTEXT -DFEAT_OLE -DFEAT_CSCOPE -DFEAT_NETBEANS_INTG -DFEAT_JOB_CHANNEL -DFEAT_IPV6 -DHAVE_INET_NTOP -DFEAT_TERMINAL -DFEAT_SOUND -DFEAT_DIRECTX -DDYNAMIC_DIRECTX -DFEAT_DIRECTX_COLOR_EMOJI -DFEAT_GUI_MSWIN -DFEAT_CLIPBOARD -DFEAT_MBYTE_IME -DDYNAMIC_IME -DDYNAMIC_ICONV -pipe -march=i686 -Wall -I./lua-5.3.5/src/include -I./lua-5.3.5/src -DFEAT_LUA -DDYNAMIC_LUA -DDYNAMIC_LUA_DLL="lua53.dll" -DFEAT_RUBY -I C:/Ruby30/include/ruby-3.0.0 -I C:/Ruby30/include/ruby-3.0.0/i386-mingw32 -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL="msvcrt-ruby300.dll" -DRUBY_VERSION=30 -DFEAT_PYTHON3 -DDYNAMIC_PYTHON3 -DDYNAMIC_PYTHON3_DLL="python311.dll" -O3 -fomit-frame-pointer -freg-struct-return -s -municode -mwindows -o gvim.exe -lkernel32 -luser32 -lgdi32 -ladvapi32 -lcomdlg32 -lcomctl32 -lnetapi32 -lversion -lwsock32 -lws2_32 -ld2d1 -ldwrite -loleaut32 -lwinmm -Wl,-Bstatic -lstdc++ -lgcc -Wl,-Bdynamic -lgcc_eh -Wl,-Bstatic -lwinpthread -Wl,-Bdynamic -lole32 -luuid      

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/a09b5bf5-3ec9-42d8-9d43-ccd1516af650n%40googlegroups.com.

Re: Python 311 call fails

  if has('win32')
if isdirectory( expand('$vim/extensions/python/x86') )
  var pythonthree_homes: list<string> = system('where "python311.dll"')->split('\n')->filter('v:val =~ "extensions"')
  execute 'set pythonthreedll='  ..  pythonthree_homes[0]->fnamemodify(':p:gs?\\?/?')
endif
  endif


Le mardi 2 novembre 2021 à 16:12:38 UTC+1, Ni Va a écrit :
Fixed

Solved / Fixed :

1. Copied python311.dll, python3.dll, vcruntime140.dll in your distro path  expand('$vim/extensions/python/x86')

2. Put this in your _vimrc

  if has('win32')
if isdirectory( expand('$vim/extensions/python/x86') )
  var pythonthree_homes: list<string> = system('where "python311.dll"')->split('\n')
  execute 'set pythonthreedll='  ..  pythonthree_homes[1]->fnamemodify(':p:gs?\\?/?')
endif
  endif


3. Testing Py3 v3.11 interface 
nnoremap <silent> <F8>   :exec 'py3 import sys'<cr> :exec 'py3 print(''python3 hell working'')'<cr>

Le mercredi 27 octobre 2021 à 15:58:42 UTC+2, Ni Va a écrit :
Hi,

Got this error on pyhton3 print('foo')
E370: Could not load library python311.dll: Le module sp<e9>cifi<e9> est introuvable.
E263: Sorry, this command is disabled, the Python library could not be loaded.

This is my configuration

1) redir @a | echomsg system('where python311.dll') | redir END | put=@a
  C:\Python311\python311.dll^@S:\path\Vim\to\python\x86\python311.dll^@

2) echomsg filereadable('S:\path\Vim\to\python\x86\python311.dll')

3) VIM - Vi IMproved 8.2 (2019 Dec 12, compiled Oct 27 2021 15:23:19)
MS-Windows 32-bit GUI version with OLE support
Included patches: 1-3565
Compiled by ni.va@
Huge version with GUI.  Features included (+) or not (-):
+cmdline_compl      +file_in_path       +lua/dyn            -python             -termguicolors      +windows
+cmdline_hist       +find_in_path       +menu               +python3/dyn        +terminal           +writebackup
Compilation: gcc -I. -Iproto -DWIN32 -DWINVER=0x0600 -D_WIN32_WINNT=0x0600 -DHAVE_PATHDEF -DFEAT_HUGE -DHAVE_STDINT_H -DHAVE_GETTEXT -DHAVE_LOCALE_H -DDYNAMIC_GETTEXT -DFEAT_OLE -DFEAT_CSCOPE -DFEAT_NETBEANS_INTG -DFEAT_JOB_CHANNEL -DFEAT_IPV6 -DHAVE_INET_NTOP -DFEAT_TERMINAL -DFEAT_SOUND -DFEAT_DIRECTX -DDYNAMIC_DIRECTX -DFEAT_DIRECTX_COLOR_EMOJI -DFEAT_GUI_MSWIN -DFEAT_CLIPBOARD -DFEAT_MBYTE_IME -DDYNAMIC_IME -DDYNAMIC_ICONV -pipe -march=i686 -Wall -I./lua-5.3.5/src/include -I./lua-5.3.5/src -DFEAT_LUA -DDYNAMIC_LUA -DDYNAMIC_LUA_DLL="lua53.dll" -DFEAT_RUBY -I C:/Ruby30/include/ruby-3.0.0 -I C:/Ruby30/include/ruby-3.0.0/i386-mingw32 -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL="msvcrt-ruby300.dll" -DRUBY_VERSION=30 -DFEAT_PYTHON3 -DDYNAMIC_PYTHON3 -DDYNAMIC_PYTHON3_DLL="python311.dll" -O3 -fomit-frame-pointer -freg-struct-return
Linking: g++ -I. -Iproto -DWIN32 -DWINVER=0x0600 -D_WIN32_WINNT=0x0600 -DHAVE_PATHDEF -DFEAT_HUGE -DHAVE_STDINT_H -DHAVE_GETTEXT -DHAVE_LOCALE_H -DDYNAMIC_GETTEXT -DFEAT_OLE -DFEAT_CSCOPE -DFEAT_NETBEANS_INTG -DFEAT_JOB_CHANNEL -DFEAT_IPV6 -DHAVE_INET_NTOP -DFEAT_TERMINAL -DFEAT_SOUND -DFEAT_DIRECTX -DDYNAMIC_DIRECTX -DFEAT_DIRECTX_COLOR_EMOJI -DFEAT_GUI_MSWIN -DFEAT_CLIPBOARD -DFEAT_MBYTE_IME -DDYNAMIC_IME -DDYNAMIC_ICONV -pipe -march=i686 -Wall -I./lua-5.3.5/src/include -I./lua-5.3.5/src -DFEAT_LUA -DDYNAMIC_LUA -DDYNAMIC_LUA_DLL="lua53.dll" -DFEAT_RUBY -I C:/Ruby30/include/ruby-3.0.0 -I C:/Ruby30/include/ruby-3.0.0/i386-mingw32 -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL="msvcrt-ruby300.dll" -DRUBY_VERSION=30 -DFEAT_PYTHON3 -DDYNAMIC_PYTHON3 -DDYNAMIC_PYTHON3_DLL="python311.dll" -O3 -fomit-frame-pointer -freg-struct-return -s -municode -mwindows -o gvim.exe -lkernel32 -luser32 -lgdi32 -ladvapi32 -lcomdlg32 -lcomctl32 -lnetapi32 -lversion -lwsock32 -lws2_32 -ld2d1 -ldwrite -loleaut32 -lwinmm -Wl,-Bstatic -lstdc++ -lgcc -Wl,-Bdynamic -lgcc_eh -Wl,-Bstatic -lwinpthread -Wl,-Bdynamic -lole32 -luuid      

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/5055f368-dc24-499b-9955-acfa4d9707e2n%40googlegroups.com.

Re: Python 311 call fails


  if has('win32')
if isdirectory( expand('$vim/extensions/python/x86') )
  var pythonthree_homes: list<string> = system('where "python311.dll"')->split('\n')->filter('v:val =~ "extensions"')
  execute 'set pythonthreedll='  ..  pythonthree_homes[0]->fnamemodify(':p:gs?\\?/?')
endif
  endif

Le mardi 2 novembre 2021 à 16:12:38 UTC+1, Ni Va a écrit :
Fixed

Solved / Fixed :

1. Copied python311.dll, python3.dll, vcruntime140.dll in your distro path  expand('$vim/extensions/python/x86')

2. Put this in your _vimrc

  if has('win32')
if isdirectory( expand('$vim/extensions/python/x86') )
  var pythonthree_homes: list<string> = system('where "python311.dll"')->split('\n')
  execute 'set pythonthreedll='  ..  pythonthree_homes[1]->fnamemodify(':p:gs?\\?/?')
endif
  endif


3. Testing Py3 v3.11 interface 
nnoremap <silent> <F8>   :exec 'py3 import sys'<cr> :exec 'py3 print(''python3 hell working'')'<cr>

Le mercredi 27 octobre 2021 à 15:58:42 UTC+2, Ni Va a écrit :
Hi,

Got this error on pyhton3 print('foo')
E370: Could not load library python311.dll: Le module sp<e9>cifi<e9> est introuvable.
E263: Sorry, this command is disabled, the Python library could not be loaded.

This is my configuration

1) redir @a | echomsg system('where python311.dll') | redir END | put=@a
  C:\Python311\python311.dll^@S:\path\Vim\to\python\x86\python311.dll^@

2) echomsg filereadable('S:\path\Vim\to\python\x86\python311.dll')

3) VIM - Vi IMproved 8.2 (2019 Dec 12, compiled Oct 27 2021 15:23:19)
MS-Windows 32-bit GUI version with OLE support
Included patches: 1-3565
Compiled by ni.va@
Huge version with GUI.  Features included (+) or not (-):
+cmdline_compl      +file_in_path       +lua/dyn            -python             -termguicolors      +windows
+cmdline_hist       +find_in_path       +menu               +python3/dyn        +terminal           +writebackup
Compilation: gcc -I. -Iproto -DWIN32 -DWINVER=0x0600 -D_WIN32_WINNT=0x0600 -DHAVE_PATHDEF -DFEAT_HUGE -DHAVE_STDINT_H -DHAVE_GETTEXT -DHAVE_LOCALE_H -DDYNAMIC_GETTEXT -DFEAT_OLE -DFEAT_CSCOPE -DFEAT_NETBEANS_INTG -DFEAT_JOB_CHANNEL -DFEAT_IPV6 -DHAVE_INET_NTOP -DFEAT_TERMINAL -DFEAT_SOUND -DFEAT_DIRECTX -DDYNAMIC_DIRECTX -DFEAT_DIRECTX_COLOR_EMOJI -DFEAT_GUI_MSWIN -DFEAT_CLIPBOARD -DFEAT_MBYTE_IME -DDYNAMIC_IME -DDYNAMIC_ICONV -pipe -march=i686 -Wall -I./lua-5.3.5/src/include -I./lua-5.3.5/src -DFEAT_LUA -DDYNAMIC_LUA -DDYNAMIC_LUA_DLL="lua53.dll" -DFEAT_RUBY -I C:/Ruby30/include/ruby-3.0.0 -I C:/Ruby30/include/ruby-3.0.0/i386-mingw32 -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL="msvcrt-ruby300.dll" -DRUBY_VERSION=30 -DFEAT_PYTHON3 -DDYNAMIC_PYTHON3 -DDYNAMIC_PYTHON3_DLL="python311.dll" -O3 -fomit-frame-pointer -freg-struct-return
Linking: g++ -I. -Iproto -DWIN32 -DWINVER=0x0600 -D_WIN32_WINNT=0x0600 -DHAVE_PATHDEF -DFEAT_HUGE -DHAVE_STDINT_H -DHAVE_GETTEXT -DHAVE_LOCALE_H -DDYNAMIC_GETTEXT -DFEAT_OLE -DFEAT_CSCOPE -DFEAT_NETBEANS_INTG -DFEAT_JOB_CHANNEL -DFEAT_IPV6 -DHAVE_INET_NTOP -DFEAT_TERMINAL -DFEAT_SOUND -DFEAT_DIRECTX -DDYNAMIC_DIRECTX -DFEAT_DIRECTX_COLOR_EMOJI -DFEAT_GUI_MSWIN -DFEAT_CLIPBOARD -DFEAT_MBYTE_IME -DDYNAMIC_IME -DDYNAMIC_ICONV -pipe -march=i686 -Wall -I./lua-5.3.5/src/include -I./lua-5.3.5/src -DFEAT_LUA -DDYNAMIC_LUA -DDYNAMIC_LUA_DLL="lua53.dll" -DFEAT_RUBY -I C:/Ruby30/include/ruby-3.0.0 -I C:/Ruby30/include/ruby-3.0.0/i386-mingw32 -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL="msvcrt-ruby300.dll" -DRUBY_VERSION=30 -DFEAT_PYTHON3 -DDYNAMIC_PYTHON3 -DDYNAMIC_PYTHON3_DLL="python311.dll" -O3 -fomit-frame-pointer -freg-struct-return -s -municode -mwindows -o gvim.exe -lkernel32 -luser32 -lgdi32 -ladvapi32 -lcomdlg32 -lcomctl32 -lnetapi32 -lversion -lwsock32 -lws2_32 -ld2d1 -ldwrite -loleaut32 -lwinmm -Wl,-Bstatic -lstdc++ -lgcc -Wl,-Bdynamic -lgcc_eh -Wl,-Bstatic -lwinpthread -Wl,-Bdynamic -lole32 -luuid      

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/63f2f07f-b494-49f5-964a-a8a015e99343n%40googlegroups.com.

Re: Python 311 call fails

Fixed

Solved / Fixed :

1. Copied python311.dll, python3.dll, vcruntime140.dll in your distro path  expand('$vim/extensions/python/x86')

2. Put this in your _vimrc

  if has('win32')
if isdirectory( expand('$vim/extensions/python/x86') )
  var pythonthree_homes: list<string> = system('where "python311.dll"')->split('\n')
  execute 'set pythonthreedll='  ..  pythonthree_homes[1]->fnamemodify(':p:gs?\\?/?')
endif
  endif


3. Testing Py3 v3.11 interface 
nnoremap <silent> <F8>   :exec 'py3 import sys'<cr> :exec 'py3 print(''python3 hell working'')'<cr>

Le mercredi 27 octobre 2021 à 15:58:42 UTC+2, Ni Va a écrit :
Hi,

Got this error on pyhton3 print('foo')
E370: Could not load library python311.dll: Le module sp<e9>cifi<e9> est introuvable.
E263: Sorry, this command is disabled, the Python library could not be loaded.

This is my configuration

1) redir @a | echomsg system('where python311.dll') | redir END | put=@a
  C:\Python311\python311.dll^@S:\path\Vim\to\python\x86\python311.dll^@

2) echomsg filereadable('S:\path\Vim\to\python\x86\python311.dll')

3) VIM - Vi IMproved 8.2 (2019 Dec 12, compiled Oct 27 2021 15:23:19)
MS-Windows 32-bit GUI version with OLE support
Included patches: 1-3565
Compiled by ni.va@
Huge version with GUI.  Features included (+) or not (-):
+cmdline_compl      +file_in_path       +lua/dyn            -python             -termguicolors      +windows
+cmdline_hist       +find_in_path       +menu               +python3/dyn        +terminal           +writebackup
Compilation: gcc -I. -Iproto -DWIN32 -DWINVER=0x0600 -D_WIN32_WINNT=0x0600 -DHAVE_PATHDEF -DFEAT_HUGE -DHAVE_STDINT_H -DHAVE_GETTEXT -DHAVE_LOCALE_H -DDYNAMIC_GETTEXT -DFEAT_OLE -DFEAT_CSCOPE -DFEAT_NETBEANS_INTG -DFEAT_JOB_CHANNEL -DFEAT_IPV6 -DHAVE_INET_NTOP -DFEAT_TERMINAL -DFEAT_SOUND -DFEAT_DIRECTX -DDYNAMIC_DIRECTX -DFEAT_DIRECTX_COLOR_EMOJI -DFEAT_GUI_MSWIN -DFEAT_CLIPBOARD -DFEAT_MBYTE_IME -DDYNAMIC_IME -DDYNAMIC_ICONV -pipe -march=i686 -Wall -I./lua-5.3.5/src/include -I./lua-5.3.5/src -DFEAT_LUA -DDYNAMIC_LUA -DDYNAMIC_LUA_DLL="lua53.dll" -DFEAT_RUBY -I C:/Ruby30/include/ruby-3.0.0 -I C:/Ruby30/include/ruby-3.0.0/i386-mingw32 -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL="msvcrt-ruby300.dll" -DRUBY_VERSION=30 -DFEAT_PYTHON3 -DDYNAMIC_PYTHON3 -DDYNAMIC_PYTHON3_DLL="python311.dll" -O3 -fomit-frame-pointer -freg-struct-return
Linking: g++ -I. -Iproto -DWIN32 -DWINVER=0x0600 -D_WIN32_WINNT=0x0600 -DHAVE_PATHDEF -DFEAT_HUGE -DHAVE_STDINT_H -DHAVE_GETTEXT -DHAVE_LOCALE_H -DDYNAMIC_GETTEXT -DFEAT_OLE -DFEAT_CSCOPE -DFEAT_NETBEANS_INTG -DFEAT_JOB_CHANNEL -DFEAT_IPV6 -DHAVE_INET_NTOP -DFEAT_TERMINAL -DFEAT_SOUND -DFEAT_DIRECTX -DDYNAMIC_DIRECTX -DFEAT_DIRECTX_COLOR_EMOJI -DFEAT_GUI_MSWIN -DFEAT_CLIPBOARD -DFEAT_MBYTE_IME -DDYNAMIC_IME -DDYNAMIC_ICONV -pipe -march=i686 -Wall -I./lua-5.3.5/src/include -I./lua-5.3.5/src -DFEAT_LUA -DDYNAMIC_LUA -DDYNAMIC_LUA_DLL="lua53.dll" -DFEAT_RUBY -I C:/Ruby30/include/ruby-3.0.0 -I C:/Ruby30/include/ruby-3.0.0/i386-mingw32 -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL="msvcrt-ruby300.dll" -DRUBY_VERSION=30 -DFEAT_PYTHON3 -DDYNAMIC_PYTHON3 -DDYNAMIC_PYTHON3_DLL="python311.dll" -O3 -fomit-frame-pointer -freg-struct-return -s -municode -mwindows -o gvim.exe -lkernel32 -luser32 -lgdi32 -ladvapi32 -lcomdlg32 -lcomctl32 -lnetapi32 -lversion -lwsock32 -lws2_32 -ld2d1 -ldwrite -loleaut32 -lwinmm -Wl,-Bstatic -lstdc++ -lgcc -Wl,-Bdynamic -lgcc_eh -Wl,-Bstatic -lwinpthread -Wl,-Bdynamic -lole32 -luuid      

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/6f00c4d2-5162-444d-b750-0cc495446cb3n%40googlegroups.com.

Re: TagBar 2.7 and ctags 5.9 exception closed GVim win32 x86 8.2.3558

Solved / Fixed :

1. Copied python311.dll, python3.dll, vcruntime140.dll in your distro path  expand('$vim/extensions/python/x86')

2. Put this in your _vimrc

  if has('win32')
if isdirectory( expand('$vim/extensions/python/x86') )
  var pythonthree_homes: list<string> = system('where "python311.dll"')->split('\n')
  execute 'set pythonthreedll='  ..  pythonthree_homes[1]->fnamemodify(':p:gs?\\?/?')
endif
  endif


3. Testing Py3 v3.11 interface 
nnoremap <silent> <F8>   :exec 'py3 import sys'<cr> :exec 'py3 print(''python3 hell working'')'<cr>


Le mardi 2 novembre 2021 à 14:39:04 UTC+1, Ni Va a écrit :
Tagbar plugin is executing python3 command that is closing GVim.

See autoload/Tagbar.vim -> s:run_system(cmd, version)

Version of python not integrated yet : 3.11.0



Le samedi 23 octobre 2021 à 13:07:02 UTC+2, Ni Va a écrit :
Hi,

I daily use Gvim reading source code or other with TagBar plugin under Win10 OS under GVim 32bits x86 8.2.3558 build with ming under MSYS2.

It appears that TagBarToogle it works perfectly on my physical laptop Win10 64bits meanwhile an exception seems closing Gvim under Virtual MAchine under same OS.

Thanks for helping.
NiVa

Gvim
VIM - Vi IMproved 8.2 (2019 Dec 12, compiled Oct 23 2021 12:24:35)
MS-Windows 32-bit GUI version with OLE support
Included patches: 1-3558

TagBar
*tagbar.txt*    Display tags of a file ordered by scope

Author:         Jan Larres 
Licence:        Vim licence, see |license|
Version:        2.7


Ctags
Universal Ctags 5.9.0(c0b04ae1), Copyright (C) 2015 Universal Ctags Team
Universal Ctags is derived from Exuberant Ctags.
Exuberant Ctags 5.8, Copyright (C) 1996-2009 Darren Hiebert
  Compiled: Oct 13 2021, 16:48:46
  Optional compiled features: +win32, +wildcards, +regex, +gnulib_regex, +unix-path-separator, +iconv, +option-directory, +case-insensitive-filenames, +packcc, +optscript

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/5cd8b241-b92f-4dcc-8361-807c3e67ff1bn%40googlegroups.com.