summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-11-04 10:41:08 +0000
committerw0rp <devw0rp@gmail.com>2017-11-04 10:41:08 +0000
commit9010458581c4a69f6c987830254391d9c041b236 (patch)
treef47fd04b48dbbe26482a474e56b178d157bd6217 /autoload
parentc26e5e277e0a0e0849d416775b63753e3aae4be6 (diff)
downloadale-9010458581c4a69f6c987830254391d9c041b236.zip
#1081 Use executable() for Python executables on Windows, and rename the test files to .exe so they will pass the executable() check
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/python.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/python.vim b/autoload/ale/python.vim
index d788b779..4734ac44 100644
--- a/autoload/ale/python.vim
+++ b/autoload/ale/python.vim
@@ -77,7 +77,7 @@ endfunction
" Run an executable check for Python scripts.
" On Windows, 1 will be returned if the file is merely readable.
function! ale#python#IsExecutable(path) abort
- return has('win32') ? filereadable(a:path) : executable(a:path)
+ return executable(a:path)
endfunction
" Given a buffer number and a command name, find the path to the executable.