summaryrefslogtreecommitdiffstats
path: root/src/testdir/shared.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-05-02 19:15:05 +0200
committerBram Moolenaar <Bram@vim.org>2021-05-02 19:15:05 +0200
commit1bb0da25a6581cd09d6df91f11ce866dc775597b (patch)
treefc7bb5628d52ae2ec87ff5ee033bf86c4e9247d3 /src/testdir/shared.vim
parent4c295027a426986566cd7a76c47a6d3a529727e7 (diff)
patch 8.2.2824: MS-Windows: build failure with MSVCv8.2.2824
Problem: MS-Windows: build failure with MSVC. Solution: Adjust the list of distributed files. Add hint about python. Adjust path for reading runtime files.
Diffstat (limited to 'src/testdir/shared.vim')
-rw-r--r--src/testdir/shared.vim2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/testdir/shared.vim b/src/testdir/shared.vim
index 3c6fe1cd36..01d741c08e 100644
--- a/src/testdir/shared.vim
+++ b/src/testdir/shared.vim
@@ -21,6 +21,8 @@ func PythonProg()
let s:python = 'python'
elseif has('win32')
" Use Python Launcher for Windows (py.exe) if available.
+ " NOTE: if you get a "Python was not found" error, disable the Python
+ " shortcuts in "Windows menu / Settings / Manage App Execution Aliases".
if executable('py.exe')
let s:python = 'py.exe'
elseif executable('python.exe')