diff options
| author | Mitermayer Reis <mitermayer.reis@gmail.com> | 2018-01-15 09:23:11 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-15 09:23:11 -0800 |
| commit | ee3cb64ef5e0af9f0d293960a8ae33989fbc6469 (patch) | |
| tree | 358e5800e5e9c3bd24768d2d982aad99402ff3c3 /plugin/prettier.vim | |
| parent | 9e4fb5a9c9eafff143f32a655218052127b5ccc8 (diff) | |
| parent | 1e2a63bbda85ac6fc713f3651de603aedffc012b (diff) | |
| download | vim-prettier-ee3cb64ef5e0af9f0d293960a8ae33989fbc6469.tar.xz | |
Merge pull request #98 from prettier/adding-unstable-flag-for-nvim-async
Disabling nvim async by default under feature flag
Diffstat (limited to 'plugin/prettier.vim')
| -rw-r--r-- | plugin/prettier.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/prettier.vim b/plugin/prettier.vim index bd33cd2..bd02c3c 100644 --- a/plugin/prettier.vim +++ b/plugin/prettier.vim @@ -20,6 +20,9 @@ let g:loaded_prettier = 1 " autoformating enabled by default upon saving let g:prettier#autoformat = get(g:, 'prettier#autoformat', 1) +" experimental async flag will be disabled by default until is stable +let g:prettier#nvim_unstable_async = get(g:,'prettier#nvim_unstable_async', 0) + " path to prettier cli let g:prettier#exec_cmd_path = get(g:, 'prettier#exec_cmd_path', 0) |
