diff runtime/doc/options.txt @ 15192:690da0a83419 v8.1.0606

patch 8.1.0606: 'cryptmethod' defaults to a very old method commit https://github.com/vim/vim/commit/a86187b9cd529754ad85cd621169876317eb3a69 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 16 18:20:00 2018 +0100 patch 8.1.0606: 'cryptmethod' defaults to a very old method Problem: 'cryptmethod' defaults to a very old method. Solution: Default to "blowfish2", it is now widely available.
author Bram Moolenaar <Bram@vim.org>
date Sun, 16 Dec 2018 18:30:05 +0100
parents bc1a8d21c811
children 8b334e4cb97f
line wrap: on
line diff
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -2370,7 +2370,7 @@ A jump table for the options with a shor
 
 
 						*'cryptmethod'* *'cm'*
-'cryptmethod' 'cm'	string	(default "zip")
+'cryptmethod' 'cm'	string	(default "blowfish2")
 			global or local to buffer |global-local|
 			{not in Vi}
 	Method used for encryption when the buffer is written to a file:
@@ -2401,8 +2401,8 @@ A jump table for the options with a shor
 	modifications.  Also see |:X|.
 
 	When setting the global value to an empty string, it will end up with
-	the value "zip".  When setting the local value to an empty string the
-	buffer will use the global value.
+	the value "blowfish2".  When setting the local value to an empty
+	string the buffer will use the global value.
 
 	When a new encryption method is added in a later version of Vim, and
 	the current version does not recognize it, you will get	*E821* .