diff options
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 |