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
Possible duplicate of #265
Could we have an option to disable status outputs. I have neoformat set to format on save and it adds another keystroke to me saving files.
If we could have this:
Neoformat: formatter definition for prettier not found Press ENTER or type command to continue
and this:
Neoformat: no change necessary with prettier Press ENTER or type command to continue
optionally suppressed I think it would improve our QOL. Thoughts?
The text was updated successfully, but these errors were encountered:
@danhab99 Vim already has a good solution for this, namely :silent!. This is in my ftplugin/javascript.vim:
:silent!
ftplugin/javascript.vim
au BufWritePre <buffer> silent! Neoformat prettier
Sorry, something went wrong.
Fantastic! Thank's alot :)
Probably better to do this now:
-- lua vim.g.neoformat_only_msg_on_error = 1
or
" Vim script let g:neoformat_only_msg_on_error = 1
No branches or pull requests
Possible duplicate of #265
Could we have an option to disable status outputs. I have neoformat set to format on save and it adds another keystroke to me saving files.
If we could have this:
and this:
optionally suppressed I think it would improve our QOL. Thoughts?
The text was updated successfully, but these errors were encountered: