Vim turns 30 today!

2021-11-02 Thread Yegappan Lakshmanan
https://www.reddit.com/r/vim/comments/ql30pm/vim_turns_30_today/ Happy 30th Birthday!!! Thanks Bram. Regards, Yegappan -- -- 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

Re: goyo plugin and artifacts in TTY

2021-11-02 Thread meine
> > 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

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

2021-11-02 Thread Ni Va
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

Re: Python 311 call fails

2021-11-02 Thread Ni Va
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

Re: Python 311 call fails

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

Re: Python 311 call fails

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

Re: Python 311 call fails

2021-11-02 Thread Ni Va
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 = system('where

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

2021-11-02 Thread Ni Va
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 = system('where

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

2021-11-02 Thread Ni Va
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