summaryrefslogtreecommitdiffstats
path: root/ftplugin/dhall.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2021-06-09 09:50:19 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2021-06-09 09:50:19 +0200
commitff8c1d76741f148d5f6efb9a57119dcf11afaec6 (patch)
tree2717f611f45d2a82d83ae1e320af4f3aa33b4264 /ftplugin/dhall.vim
parent27756b129b7a1f9763a0062aafa8fd35b0181b19 (diff)
downloadvim-polyglot-ff8c1d76741f148d5f6efb9a57119dcf11afaec6.tar.gz
vim-polyglot-ff8c1d76741f148d5f6efb9a57119dcf11afaec6.zip
Update
Diffstat (limited to 'ftplugin/dhall.vim')
-rw-r--r--ftplugin/dhall.vim2
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