summaryrefslogtreecommitdiff
path: root/plugin
AgeCommit message (Collapse)Author
2023-10-10Relese 1.01.0.0mitermayer
- Adding support for prettier 3.x
2023-10-09docs: add comment describing global variableVictor S
Wrote a comment describing the global variable that overwrites the "bracketSameLine" option.
2023-10-06refactor: add global variable for bracketSameLineVictor S
Added a global variable for the bracketSameLine option. It is set to the user's defined value and uses the Prettier default as reserve. This is part of a plan to compose the CLI command from an object with details about the flags
2021-06-28feat: Adding support for prettier svelte pluginDmitriy
2021-03-01Remove PipeWylie Fowler
This resolves #284
2021-02-07Autoformat MDXRogin Farrer
2020-12-24Stop blowing away the BufWritePre augroup in ftpluginsJohan Venter
2020-09-07Version bump1.0.0-betamitermayer
2020-09-07Merge branch 'master' into issue/232-adding-support-for-prettier-2.xMitermayer Reis
2020-08-13Adds Prettier CLI document referencesEthan Nguyen
2020-08-13Uses default configs from Prettier CLI documentEthan Nguyen
2020-05-06Fix string concatenation typoNoah
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-07Force reevaluation of autoformat settings at buffer write timeChris LaRose
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.
2019-10-09Toggle the autoformat setting based on config file presence.Adam Macumber
2019-09-14making-auto-format-disabled-by-default - Updating comment descriptionmitermayer
- updating comment description to match new behaviour
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-14issues/184-fixing-undo-step - Ensuring that autoformat does not getsmitermayer
trigger autoformat
2019-09-13issues/184-fixing-undo-step - Removing previous naive implementation ofmitermayer
requirePragma - This commit ensures that we use `prettier` default way to identify pragmas for the auto save and remove our previous naive implementation
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-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-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-05Bumping 1.0 tag to alphamitermayer
2018-11-05Merge branch 'master' into release/1.xmitermayer
2018-06-03Enabling partial formatting but still maintaining support for fragmentmitermayer
formatting
2018-05-250.2.7 patch release0.2.7mitermayer
2018-05-16Adding presetsmitermayer
- adding facebook presets as a configurable option to overwrite prettier defaults
2018-05-04Adding support for neovimmitermayer
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-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-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-24don't change focus to the quicklistChristian Höltje
Add an option to restore the cursor's window & position after calling `setqflist()`.
2018-01-18Support the `--arrow-parens` configuration optionNick Thurow
2018-01-15Disabling nvim async by default under feature flagmitermayer
- The new nvim async had some bugs reported, while we are still investigating fixes for it we will then disable it by default, users should be able to still use it by enabling the flag on their .vimrc in the meantime `g:prettier#nvim_unstable_async`
2017-12-12Add --prose-wrap optionFranky Chung
2017-12-08release 0.2.60.2.6mitermayer
2017-11-080.2.5 release0.2.5mitermayer
2017-10-19version 0.2.4 release0.2.4mitermayer
2017-10-070.2.3 release0.2.3mitermayer
2017-10-070.2.2 release0.2.2mitermayer
2017-10-070.2.1 release0.2.1mitermayer
2017-10-03Bumping plugin0.2.0mitermayer
2017-09-29changelog and plugin bumpmitermayer
2017-09-25Version bump 0.1.2mitermayer
2017-09-25issue/56 - Allowing user path overwrite configurationmitermayer
2017-09-17Bumping version0.1.1mitermayer
2017-09-17feature: Adding more commandsmitermayer
This includes more commands to interact with the prettier CLI from within vim itself
2017-09-05minor bump with breaking changes with older prettier versionsmitermayer
2017-09-05Adding support for prettier configurationmitermayer