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.
3 " Created: Mon Mar 26 23:27:53 2018 -0700
4 " Requires: Vim Ver7.0+
8 " This plugin formats Python files.
14 if v:version < 700 || !has('python3')
15 echo "This script requires vim7.0+ with Python 3.6 support."
19 if exists("g:load_black")
23 let g:load_black = "py1.0"
24 if !exists("g:black_virtualenv")
25 let g:black_virtualenv = "~/.vim/black"
27 if !exists("g:black_fast")
30 if !exists("g:black_linelength")
31 let g:black_linelength = 88
38 def _initialize_black_env(upgrade=False):
39 pyver = sys.version_info[:2]
41 print("Sorry, Black requires Python 3.6+ to run.")
44 from pathlib import Path
47 virtualenv_path = Path(vim.eval("g:black_virtualenv")).expanduser()
48 virtualenv_site_packages = str(
49 virtualenv_path / 'lib' / f'python{pyver[0]}.{pyver[1]}' / 'site-packages'
52 if not virtualenv_path.is_dir():
53 print('Please wait, one time setup for Black.')
54 _executable = sys.executable
56 sys.executable = str(Path(sys.exec_prefix) / 'bin' / 'python3')
57 print(f'Creating a virtualenv in {virtualenv_path}...')
58 print('(this path can be customized in .vimrc by setting g:black_virtualenv)')
59 venv.create(virtualenv_path, with_pip=True)
61 sys.executable = _executable
64 print('Installing Black with pip...')
66 print('Upgrading Black with pip...')
67 if first_install or upgrade:
68 subprocess.run([str(virtualenv_path / 'bin' / 'pip'), 'install', '-U', 'black'])
69 print('DONE! You are all set, thanks for waiting ✨ 🍰 ✨')
71 print('Pro-tip: to upgrade Black in the future, use the :BlackUpgrade command and restart Vim.\n')
72 if sys.path[0] != virtualenv_site_packages:
73 sys.path.insert(0, virtualenv_site_packages)
76 if _initialize_black_env():
82 fast = bool(int(vim.eval("g:black_fast")))
83 line_length = int(vim.eval("g:black_linelength"))
84 buffer_str = '\n'.join(vim.current.buffer) + '\n'
86 new_buffer_str = black.format_file_contents(buffer_str, line_length=line_length, fast=fast)
87 except black.NothingChanged:
88 print(f'Already well formatted, good job. (took {time.time() - start:.4f}s)')
89 except Exception as exc:
92 vim.current.buffer[:] = new_buffer_str.split('\n')[:-1]
93 print(f'Reformatted in {time.time() - start:.4f}s.')
96 _initialize_black_env(upgrade=True)
99 print(f'Black, version {black.__version__} on Python {sys.version}.')
103 command! Black :py3 Black()
104 command! BlackUpgrade :py3 BlackUpgrade()
105 command! BlackVersion :py3 BlackVersion()