Closed makyo closed 6 years ago
If vim is compiled with py3 and not py2, the plugin will fail to run because:
has('python')
python << EOF
strings.join()
This branch addresses each of these in turn. Apologies for the s:hd hack; it's ugly but avoids duplicating the Python snippet.
s:hd
If vim is compiled with py3 and not py2, the plugin will fail to run because:
has('python')
is falsepython << EOF
failsstrings.join()
is deprecated in py3This branch addresses each of these in turn. Apologies for the
s:hd
hack; it's ugly but avoids duplicating the Python snippet.