From: Bryan Forbes Date: Tue, 5 Feb 2019 03:08:06 +0000 (-0600) Subject: Format pyi files correctly (#599) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/a862795e1acf5010141939a11a33a694f6fe024e?hp=66aa676278948368dff251dffd58c850cb8b889e Format pyi files correctly (#599) --- diff --git a/plugin/black.vim b/plugin/black.vim index 0a26aa0..34f30c5 100644 --- a/plugin/black.vim +++ b/plugin/black.vim @@ -102,6 +102,8 @@ def Black(): mode = black.FileMode.AUTO_DETECT if bool(int(vim.eval("g:black_skip_string_normalization"))): mode |= black.FileMode.NO_STRING_NORMALIZATION + if vim.current.buffer.name.endswith('.pyi'): + mode |= black.FileMode.PYI buffer_str = '\n'.join(vim.current.buffer) + '\n' try: new_buffer_str = black.format_file_contents(buffer_str, line_length=line_length, fast=fast, mode=mode)