aboutsummaryrefslogtreecommitdiff
path: root/autoload/prettier.vim
diff options
context:
space:
mode:
authormitermayer <mitermayer.reis@gmail.com>2017-12-15 14:41:55 -0800
committermitermayer <mitermayer.reis@gmail.com>2017-12-15 14:41:55 -0800
commitdc97d2994b29bdd4e9ef5caf8901e7a26ce9f4ab (patch)
tree39e5ac3b465ec52971a80f417c58958bf67e81cd /autoload/prettier.vim
parent5899c6f71bd24f0b0fdb8017aec4d09ada0b1ec8 (diff)
downloadvim-prettier-dc97d2994b29bdd4e9ef5caf8901e7a26ce9f4ab.tar.xz
bugfix - fixing error on prettier async since we should not include
quotes for bash args
Diffstat (limited to 'autoload/prettier.vim')
-rw-r--r--autoload/prettier.vim2
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