aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWylie Fowler <wyliefowler@gmail.com>2021-03-01 17:44:11 -0500
committerGitHub <noreply@github.com>2021-03-01 17:44:11 -0500
commit147a1d9719dc026ac29e696f4004d917ad39f9cb (patch)
treee948d2f51a82adceb27cfd23198a2a5bb97c0c76
parentd55fa4e5571d2058e7da67dc430ed142d23ee7c9 (diff)
downloadvim-prettier-147a1d9719dc026ac29e696f4004d917ad39f9cb.tar.xz
Remove Pipe
This resolves #284
-rw-r--r--plugin/prettier.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/prettier.vim b/plugin/prettier.vim
index 3326f26..a49a2ad 100644
--- a/plugin/prettier.vim
+++ b/plugin/prettier.vim
@@ -174,5 +174,5 @@ nnoremap <silent> <Plug>(PrettierCliPath) :PrettierCliPath<CR>
augroup Prettier
autocmd!
- autocmd BufWritePre *.js,*.jsx,*.mjs,*.ts,*.tsx,*.css,*.less,*.scss,*.json,*.graphql,*.gql,*.markdown,*.md,*.mdown,*.mkd,*.mkdn,*.mdx,*.vue,*.yml,*.yaml,*.html,*.php,*.rb,*.ruby,*.xml noautocmd | call prettier#Autoformat()
+ autocmd BufWritePre *.js,*.jsx,*.mjs,*.ts,*.tsx,*.css,*.less,*.scss,*.json,*.graphql,*.gql,*.markdown,*.md,*.mdown,*.mkd,*.mkdn,*.mdx,*.vue,*.yml,*.yaml,*.html,*.php,*.rb,*.ruby,*.xml noautocmd call prettier#Autoformat()
augroup end