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
Do you want to request a feature or report a bug? A bug
What is the current/expected behavior? current: deletes comments. Expected: leave comments alone
What version of vim-prettier are you using - (output of :PrettierVersion) ? 1.0.0-beta
vim-prettier
:PrettierVersion
What version of prettier are you using - (output of :PrettierCliVersion) ? 2.3.1
prettier
:PrettierCliVersion
What is your prettier executable path - (output of :PrettierCliPath) ? ~/.vim/plugged/vim-prettier/node_modules/.bin/prettier
:PrettierCliPath
~/.vim/plugged/vim-prettier/node_modules/.bin/prettier
Did this work in previous versions of vim-prettier and/or prettier ? I don't know
With let g:prettier#autoformat=1, create a new buffer and set ft=ruby. Saving this buffer:
let g:prettier#autoformat=1
set ft=ruby
# My comment puts 'hello'
Will modify it to:
puts 'hello'
My config file:
Plug 'prettier/vim-prettier', { 'do': 'npm install' } let g:prettier#autoformat = 1 let g:prettier#autoformat_config_present = 0 let g:prettier#autoformat_require_pragma = 0 let g:prettier#exec_cmd_async = 1 let g:prettier#quickfix_enabled = 0
For those affected, a temporary fix in your .vimrc:
.vimrc
autocmd BufRead,BufNewFile *.rb let g:prettier#autoformat = 0
The text was updated successfully, but these errors were encountered:
Hi same problem for me... Comments disappearing as well as shebang line #! /usr/bin/env ruby
#! /usr/bin/env ruby
Sorry, something went wrong.
I have the same issue :(
My solution was to use Neovims null-ls.nvim package for ruby.
What version of the @prettier/plugin-ruby npm package are you using?
@prettier/plugin-ruby
There is a bug in versions of the @prettier/plugin-ruby npm package lower than 1.0 that removes comments from some parts of the code.
You can try updating your version of the @prettier/plugin-ruby to >=1.0.0 <4.0.0 and see if it solves the error.
>=1.0.0 <4.0.0
npm install --save-dev @prettier/plugin-ruby@">=1.0.0 <4.0.0"
No branches or pull requests
Do you want to request a feature or report a bug? A bug
What is the current/expected behavior? current: deletes comments. Expected: leave comments alone
What version of
vim-prettier
are you using - (output of:PrettierVersion
) ? 1.0.0-betaWhat version of
prettier
are you using - (output of:PrettierCliVersion
) ? 2.3.1What is your
prettier
executable path - (output of:PrettierCliPath
) ?~/.vim/plugged/vim-prettier/node_modules/.bin/prettier
Did this work in previous versions of vim-prettier and/or prettier ? I don't know
With
let g:prettier#autoformat=1
, create a new buffer andset ft=ruby
. Saving this buffer:Will modify it to:
My config file:
For those affected, a temporary fix in your
.vimrc
:The text was updated successfully, but these errors were encountered: