diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2021-06-09 09:50:19 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2021-06-09 09:50:19 +0200 |
commit | ff8c1d76741f148d5f6efb9a57119dcf11afaec6 (patch) | |
tree | 2717f611f45d2a82d83ae1e320af4f3aa33b4264 /ftplugin/dhall.vim | |
parent | 27756b129b7a1f9763a0062aafa8fd35b0181b19 (diff) | |
download | vim-polyglot-ff8c1d76741f148d5f6efb9a57119dcf11afaec6.tar.gz vim-polyglot-ff8c1d76741f148d5f6efb9a57119dcf11afaec6.zip |
Update
Diffstat (limited to 'ftplugin/dhall.vim')
-rw-r--r-- | ftplugin/dhall.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftplugin/dhall.vim b/ftplugin/dhall.vim index a484585b..9a662090 100644 --- a/ftplugin/dhall.vim +++ b/ftplugin/dhall.vim @@ -33,7 +33,7 @@ endif function! DhallFormat() let cursor = getpos('.') exec 'normal! gg' - exec 'silent !dhall format --inplace ' . expand('%') + exec 'silent !dhall format ' . expand('%') exec 'e' call setpos('.', cursor) endfunction |