comparison src/testdir/shared.vim @ 24570:27033b8bba0e v8.2.2824

patch 8.2.2824: MS-Windows: build failure with MSVC Commit: https://github.com/vim/vim/commit/1bb0da25a6581cd09d6df91f11ce866dc775597b Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 2 19:15:05 2021 +0200 patch 8.2.2824: MS-Windows: build failure with MSVC Problem: MS-Windows: build failure with MSVC. Solution: Adjust the list of distributed files. Add hint about python. Adjust path for reading runtime files.
author Bram Moolenaar <Bram@vim.org>
date Sun, 02 May 2021 19:30:04 +0200
parents 20ccf5f7dc6d
children d32dc906dd2c
comparison
equal deleted inserted replaced
24569:e3ec2ec8841a 24570:27033b8bba0e
19 return '' 19 return ''
20 endif 20 endif
21 let s:python = 'python' 21 let s:python = 'python'
22 elseif has('win32') 22 elseif has('win32')
23 " Use Python Launcher for Windows (py.exe) if available. 23 " Use Python Launcher for Windows (py.exe) if available.
24 " NOTE: if you get a "Python was not found" error, disable the Python
25 " shortcuts in "Windows menu / Settings / Manage App Execution Aliases".
24 if executable('py.exe') 26 if executable('py.exe')
25 let s:python = 'py.exe' 27 let s:python = 'py.exe'
26 elseif executable('python.exe') 28 elseif executable('python.exe')
27 let s:python = 'python.exe' 29 let s:python = 'python.exe'
28 else 30 else