We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When trying the black vim plugin in builtin vim in macOS 14, we get this unclear error message:
The black.vim plugin requires vim7.0+ with Python 3.6 support.
The issues is that the builtin vim is not compiled with python3:
% /usr/bin/vim --version | grep python3 +cmdline_info +libcall -python3 +virtualedit
No issue with vim from homebrew:
% /opt/homebrew/bin/vim --version | grep python3 +cmdline_info +libcall +python3 +virtualedit
The error message is correct about the requirement, but not helpful to users.
This will be a more useful behavior:
Also the name of the helper function __BLACK_MISSING is confusing since black is not missing but cannot be used with this vim executable.
Finally based on README.md, python3.8+ is required not, but the message is about python 3.6.
The text was updated successfully, but these errors were encountered:
@nirs I will highly appreciate your suggestion. #4441
Sorry, something went wrong.
No branches or pull requests
When trying the black vim plugin in builtin vim in macOS 14, we get this unclear error message:
The issues is that the builtin vim is not compiled with python3:
No issue with vim from homebrew:
The error message is correct about the requirement, but not helpful to users.
This will be a more useful behavior:
Also the name of the helper function __BLACK_MISSING is confusing since black
is not missing but cannot be used with this vim executable.
Finally based on README.md, python3.8+ is required not, but the message is about python 3.6.
The text was updated successfully, but these errors were encountered: