jamessan / vim-gnupg

This script implements transparent editing of gpg encrypted files.
http://www.vim.org/scripts/script.php?script_id=3645
729 stars 73 forks source link

option to turn off gpg #78

Closed akostadinov closed 2 years ago

akostadinov commented 7 years ago

Hi, if I create a new file like vi newfile.gpg, then I try to save it, then I am asked for a password. If I just want to paste GPG encrypted content then this will double encrypt it.

There needs to be a option to turn off encryption when user desires.

jamessan commented 7 years ago

:noau w will save the buffer without running autocommands.

akostadinov commented 7 years ago

Thank you!