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.
6 from distutils.util import strtobool
9 class Flag(collections.namedtuple("FlagBase", "name, cast")):
12 return self.name.replace("-", "_")
15 def vim_rc_name(self):
17 if name == "line_length":
18 name = name.replace("_", "")
19 return "g:black_" + name
23 Flag(name="line_length", cast=int),
24 Flag(name="fast", cast=strtobool),
25 Flag(name="string_normalization", cast=strtobool),
26 Flag(name="quiet", cast=strtobool),
30 def _get_python_binary(exec_prefix):
32 default = vim.eval("g:pymode_python").strip()
35 if default and os.path.exists(default):
37 if sys.platform[:3] == "win":
38 return exec_prefix / 'python.exe'
39 return exec_prefix / 'bin' / 'python3'
41 def _get_pip(venv_path):
42 if sys.platform[:3] == "win":
43 return venv_path / 'Scripts' / 'pip.exe'
44 return venv_path / 'bin' / 'pip'
46 def _get_virtualenv_site_packages(venv_path, pyver):
47 if sys.platform[:3] == "win":
48 return venv_path / 'Lib' / 'site-packages'
49 return venv_path / 'lib' / f'python{pyver[0]}.{pyver[1]}' / 'site-packages'
51 def _initialize_black_env(upgrade=False):
52 pyver = sys.version_info[:3]
54 print("Sorry, Black requires Python 3.6.2+ to run.")
57 from pathlib import Path
60 virtualenv_path = Path(vim.eval("g:black_virtualenv")).expanduser()
61 virtualenv_site_packages = str(_get_virtualenv_site_packages(virtualenv_path, pyver))
63 if not virtualenv_path.is_dir():
64 print('Please wait, one time setup for Black.')
65 _executable = sys.executable
66 _base_executable = getattr(sys, "_base_executable", _executable)
68 executable = str(_get_python_binary(Path(sys.exec_prefix)))
69 sys.executable = executable
70 sys._base_executable = executable
71 print(f'Creating a virtualenv in {virtualenv_path}...')
72 print('(this path can be customized in .vimrc by setting g:black_virtualenv)')
73 venv.create(virtualenv_path, with_pip=True)
75 print('Encountered exception while creating virtualenv (see traceback below).')
76 print(f'Removing {virtualenv_path}...')
78 shutil.rmtree(virtualenv_path)
81 sys.executable = _executable
82 sys._base_executable = _base_executable
85 print('Installing Black with pip...')
87 print('Upgrading Black with pip...')
88 if first_install or upgrade:
89 subprocess.run([str(_get_pip(virtualenv_path)), 'install', '-U', 'black'], stdout=subprocess.PIPE)
90 print('DONE! You are all set, thanks for waiting ✨ 🍰 ✨')
92 print('Pro-tip: to upgrade Black in the future, use the :BlackUpgrade command and restart Vim.\n')
93 if virtualenv_site_packages not in sys.path:
94 sys.path.insert(0, virtualenv_site_packages)
97 if _initialize_black_env():
103 configs = get_configs()
104 mode = black.FileMode(
105 line_length=configs["line_length"],
106 string_normalization=configs["string_normalization"],
107 is_pyi=vim.current.buffer.name.endswith('.pyi'),
109 quiet = configs["quiet"]
111 buffer_str = '\n'.join(vim.current.buffer) + '\n'
113 new_buffer_str = black.format_file_contents(
115 fast=configs["fast"],
118 except black.NothingChanged:
120 print(f'Already well formatted, good job. (took {time.time() - start:.4f}s)')
121 except Exception as exc:
124 current_buffer = vim.current.window.buffer
126 for i, tabpage in enumerate(vim.tabpages):
128 for j, window in enumerate(tabpage.windows):
129 if window.valid and window.buffer == current_buffer:
130 cursors.append((i, j, window.cursor))
131 vim.current.buffer[:] = new_buffer_str.split('\n')[:-1]
132 for i, j, cursor in cursors:
133 window = vim.tabpages[i].windows[j]
135 window.cursor = cursor
137 window.cursor = (len(window.buffer), 0)
139 print(f'Reformatted in {time.time() - start:.4f}s.')
142 path_pyproject_toml = black.find_pyproject_toml(vim.eval("fnamemodify(getcwd(), ':t')"))
143 if path_pyproject_toml:
144 toml_config = black.parse_pyproject_toml(path_pyproject_toml)
149 flag.var_name: flag.cast(toml_config.get(flag.name, vim.eval(flag.vim_rc_name)))
155 _initialize_black_env(upgrade=True)
158 print(f'Black, version {black.__version__} on Python {sys.version}.')
162 function black#Black()
166 function black#BlackUpgrade()
170 function black#BlackVersion()