aboutsummaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
2026-02-21all: remove unnecessary flagsHEADmainShulhan
If in vimrc we set the tabstop to 8, the plugin will format the file with tab width set to 8. This plugin should use whatever value from prettier config if it exist or default prettier itself. In another words, I want prettier that I use to be opinionated, less configurations, like gofmt.
2021-11-24Merge pull request #315 from aaronArinder/readme-updated-with-autosave-configMitermayer Reis
readme: example config: autoformat on save without pragma
2021-11-02Minimise node_modules sizesharils
2021-11-02Install without updating lockfilesharils
2021-10-18readme: example config: autoformat on save without pragmaAaron Arinder
2021-06-28feat: Adding support for prettier svelte pluginDmitriy
2021-03-28docs: Fixing typo in readmeRyan Christian
2021-03-04Merge pull request #282 from Chocrates/masterMitermayer Reis
Add dein config to readme
2021-03-03fix incorrect reference in readmeemurph
2021-02-11Add dein config to readmeChris McIntosh
2021-02-08Removing travismitermayer
- travis build is no longer the main build used by the prettier org, will need to migrate to something else
2020-09-07Merge branch 'master' into issue/232-adding-support-for-prettier-2.xMitermayer Reis
2020-08-04Simplify example autocmd for prettier-stylelintJay Sitter
2020-08-04Add support for buffer-level prettier_exec_cmd, for prettier-stylelint for ↵Jay Sitter
instance
2020-04-27issue/232-adding-support-for-prettier-2.x - Adding support for prettiermitermayer
2.x - Updating default config - Adding missing configuration - Updating yarn lock - Updating package.json depedencies
2020-04-17Add instructions for installing with vim 8+AJ ONeal
No need for pathogen, plug, vundle, etc anymore
2020-02-15Fix readme to properly reflect how to downgradeKonnor Rogers
The current version of the readme returns a syntax error when attempting to downgrade. Added a '\' to fix the syntax error.
2020-02-09New option: prettier#autoformat_require_pragmaHyeon Kim
The 'prettier#autoformat_config_present' option is useful but it only worked with files with pragma. Now, you can use 'autoformat_config_present' even with files without pragma using this 'autoformat_require_pragma' option.
2020-02-05Updating README.md message for alpha release instructions on how tomitermayer
fallback to older version
2020-02-05Updating README information in regards to fallback to older versions1.0.0-alphamitermayer
- We now made `release/1.x` default branch and added message to users to enable them to fallback to older branch
2019-10-13Clarify that autoformat will be overridden by config_presentAtom Mac
2019-10-12Add autoformat_config_* options to READMEAtom Mac
2019-09-14making-auto-format-disabled-by-default - Making autoformat disabled bymitermayer
default - This is a breaking change as on versions 0.x autoformat was enabled by default. This should ensure users dont need to disable autoformat anymore in their vimrc
2019-09-12issues/184-fixing-undo-step - Adding support for require-pragmamitermayer
- Our previous undo implementation tried to be naive on implementing require-pragma, and created some undo bugs due to it. This diff enables us to use the prettier upstream support for require-pragma - On subsequent PR's we will completetly phase out the previous undo implementation in favour to this one in order to fix bug https://github.com/prettier/vim-prettier/issues/184
2019-08-26Removing leading spacemitermayer
2019-08-26porting-master-fixes-to-release-1.xmitermayer
- Porting fixes done on 5779a87d901da3f44991feb3a6480b1156c37f3f - Porting fixes done on c91d1bc5c15677fdb6585fc54c680809329ee88a - Porting fixes done on c0f7d81faf849589688c4584edb9c3b8d50afb84 - Fixing linting from 1c601bcba1eed6faa15b255aeb765a12717d7de3
2019-02-24Fix README markdown.Arnaud Christ
2019-02-23Set default "config_precendence" to "file-override"Shulhan
If user have custom file type plugin that set "parser" option, calling ":Prettier" will return error "Prettier: failed to parse buffer". This was caused by running prettier with CLI option "--parser X" with "--config-precedence prefer_file" will cause prettier to ignore the "parser" option. Fix #178
2018-11-07Merge branch 'master' into release/1.xmitermayer
2018-11-07Updating doc references to the newly included html supportmitermayer
2018-11-05Merge branch 'master' into release/1.xmitermayer
2018-11-05Adding yaml ref to the docsmitermayer
2018-06-05Remove wrong comment on README.md comment exampleLucas Vieira
The example that shows how to enable `vim-prettier` for all files has a comment about only enabling it for supported files (looks like it was copy and pasted from the previous example).
2018-06-03Adding documentation for prettier partial formattingmitermayer
2018-06-03Enabling partial formatting but still maintaining support for fragmentmitermayer
formatting
2018-05-08Merge branch 'master' into release/1.xmitermayer
2018-05-08grammar fixmitermayer
2018-05-08Merge branch 'master' into release/1.xmitermayer
2018-05-08Adding note information about 1.x releasemitermayer
2018-05-03We still need to ensure we use prefer-file over cli-overridemitermayer
- prefer-file setting for config-precedence is what allow us to leverage from user defined configuration files like .prettierrc
2018-05-02Merge branch 'master' into release/1.xmitermayer
2018-04-16Adding discord linkmitermayer
2018-04-13Start using prettier default argumentsChristian Höltje
This is one approach for handling default prettier arguments. It is a little verbose, but I think ejecting the flags that don't have to be set by the editor (in favor of .prettierrc files) is a win.
2018-03-28Amend syntax in documentation around config overridesChris Kobrzak
2018-03-25Updating the logic for controlling the quickfix flagmitermayer
- Negation flags are usually more confusing to understand specially when the default is having it enabled.
2018-03-25Updating readme and docs with the correct defaultsmitermayer
2018-02-21Fix space in autocmd breaking autosavePascal Ernst
2018-01-30Updating docs with vue support referencemitermayer
2018-01-30Add vue file format to READMEJason Travis
2018-01-18Support the `--arrow-parens` configuration optionNick Thurow