Ensure buftype=acwrite is always set for the buffer
The user may be a) editing an existing encrypted file, b) creating a new encrypted file, c) editing an unnamed buffer and saving it as an encrypted file. In all cases, 'buftype' should be set correctly once we know the buffer is intended to be encrypted. Signed-off-by: James McCoy <jamessan@jamessan.com>
This commit is contained in:
parent
e7b6648ab2
commit
ae1b31965e
@ -1,5 +1,5 @@
|
|||||||
" Name: gnupg.vim
|
" Name: gnupg.vim
|
||||||
" Last Change: 2017 May 31
|
" Last Change: 2017 Oct 22
|
||||||
" 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.
|
||||||
@ -478,6 +478,8 @@ function s:GPGDecrypt(bufread)
|
|||||||
silent execute ':doautocmd BufNewFile ' . fnameescape(autocmd_filename)
|
silent execute ':doautocmd BufNewFile ' . fnameescape(autocmd_filename)
|
||||||
call s:GPGDebug(2, 'called BufNewFile autocommand for ' . autocmd_filename)
|
call s:GPGDebug(2, 'called BufNewFile autocommand for ' . autocmd_filename)
|
||||||
|
|
||||||
|
set buftype=acwrite
|
||||||
|
|
||||||
" This is a new file, so force the user to edit the recipient list if
|
" This is a new file, so force the user to edit the recipient list if
|
||||||
" they open a new file and public keys are preferred
|
" they open a new file and public keys are preferred
|
||||||
if (g:GPGPreferSymmetric == 0)
|
if (g:GPGPreferSymmetric == 0)
|
||||||
@ -752,6 +754,7 @@ function s:GPGEncrypt()
|
|||||||
|
|
||||||
if auType == 'BufWrite'
|
if auType == 'BufWrite'
|
||||||
setl nomodified
|
setl nomodified
|
||||||
|
setl buftype=acwrite
|
||||||
let &readonly = filereadable(filename) && filewritable(filename) == 0
|
let &readonly = filereadable(filename) && filewritable(filename) == 0
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user