diff --git a/plugin/gnupg.vim b/plugin/gnupg.vim index 3fe1ba9..f9cece0 100644 --- a/plugin/gnupg.vim +++ b/plugin/gnupg.vim @@ -414,9 +414,9 @@ function s:GPGEncrypt() set bin " guard for unencrypted files - if (exists("b:GPGEncrypted") && b:GPGEncrypted == 0) - echohl GPGWarning - echom "File is not encrypted, all GPG functions disabled!" + if (!exists("b:GPGEncrypted") || b:GPGEncrypted == 0) + echohl GPGError + let blackhole = input("Message could not be encrypted! File might be empty! (Press ENTER)") echohl None return endif