diff options
| author | mitermayer <mitermayer.reis@gmail.com> | 2017-12-15 14:41:55 -0800 |
|---|---|---|
| committer | mitermayer <mitermayer.reis@gmail.com> | 2017-12-15 14:41:55 -0800 |
| commit | dc97d2994b29bdd4e9ef5caf8901e7a26ce9f4ab (patch) | |
| tree | 39e5ac3b465ec52971a80f417c58958bf67e81cd /autoload | |
| parent | 5899c6f71bd24f0b0fdb8017aec4d09ada0b1ec8 (diff) | |
| download | vim-prettier-dc97d2994b29bdd4e9ef5caf8901e7a26ce9f4ab.tar.xz | |
bugfix - fixing error on prettier async since we should not include
quotes for bash args
Diffstat (limited to 'autoload')
| -rw-r--r-- | autoload/prettier.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/prettier.vim b/autoload/prettier.vim index 4d5e918..c929927 100644 --- a/autoload/prettier.vim +++ b/autoload/prettier.vim @@ -262,7 +262,7 @@ function! s:Get_Prettier_Exec_Args(config) abort \ ' --stdin-filepath ' . \ simplify(expand("%:p")) . \ ' --no-editorconfig '. - \ ' --loglevel "error" '. + \ ' --loglevel error '. \ ' --stdin ' return l:cmd endfunction |
