Only use ":'[,']w" for FileWriteCmd

BufWriteCmd writes the whole buffer, so it can use the bare ":w".  Other
plugins may manipulate the '[/'] marks on save, which can cause the
write with marks to not write the entire buffer.

Closes: jamessan/vim-gnupg#96
Signed-off-by: James McCoy <jamessan@jamessan.com>
This commit is contained in:
James McCoy 2018-11-18 09:57:15 -05:00
parent 22cbc6b6ab
commit 161485e835
No known key found for this signature in database
GPG Key ID: DFE691AE331BA3DB

View File

@ -1,5 +1,5 @@
" Name: gnupg.vim " Name: gnupg.vim
" Last Change: 2018 Aug 06 " Last Change: 2018 Nov 18
" Maintainer: James McCoy <jamessan@jamessan.com> " Maintainer: James McCoy <jamessan@jamessan.com>
" Original Author: Markus Braun <markus.braun@krawel.de> " Original Author: Markus Braun <markus.braun@krawel.de>
" Summary: Vim plugin for transparent editing of gpg encrypted files. " Summary: Vim plugin for transparent editing of gpg encrypted files.
@ -746,7 +746,12 @@ function s:GPGEncrypt()
" encrypt the buffer " encrypt the buffer
let destfile = tempname() let destfile = tempname()
let cmd = { 'level': 1, 'ex': "'[,']write !" } let cmd = { 'level': 1, 'ex': "write !" }
" Only use '[,'] for FileWriteCmd since other plugins may need to change
" them for a normal BufWriteCmd.
if auType == 'FileWrite'
let cmd.ex = "'[,']" . cmd.ex
endif
let cmd.args = '--quiet --no-encrypt-to ' . options let cmd.args = '--quiet --no-encrypt-to ' . options
let cmd.redirect = '>' . s:shellescape(destfile, { 'special': 1, 'cygpath': 1 }) let cmd.redirect = '>' . s:shellescape(destfile, { 'special': 1, 'cygpath': 1 })
silent call s:GPGExecute(cmd) silent call s:GPGExecute(cmd)