]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Use g:pymode_python-defined interpreter if defined and exists, otherwise use existing...
authorpmacosta <pmacosta@users.noreply.github.com>
Tue, 7 May 2019 17:28:56 +0000 (13:28 -0400)
committerŁukasz Langa <lukasz@langa.pl>
Tue, 7 May 2019 17:28:56 +0000 (13:28 -0400)
This is helpful when using custom-compiled interpreters, or alternative
Python interpreters in non-standard locations

plugin/black.vim

index 36825cf8927556afe22625f1d1d7b26179786282..15a13d1b14f385ac49411eeae9bcf326e9b71c91 100644 (file)
@@ -37,10 +37,17 @@ if !exists("g:black_skip_string_normalization")
 endif
 
 python3 << endpython3
+import os
 import sys
 import vim
 
 def _get_python_binary(exec_prefix):
+  try:
+    default = vim.eval("g:pymode_python").strip()
+  except vim.error:
+    default = ""
+  if default and os.path.exists(default):
+    return default
   if sys.platform[:3] == "win":
     return exec_prefix / 'python.exe'
   return exec_prefix / 'bin' / 'python3'