comparison runtime/doc/editing.txt @ 6070:32a77cc160d9

Update runtime files. Make matchparen plugin backwards compatible. Add json filetype.
author Bram Moolenaar <bram@vim.org>
date Sat, 19 Jul 2014 14:04:47 +0200
parents 32de51778c27
children 18ac55444b37
comparison
equal deleted inserted replaced
6069:febc041c984b 6070:32a77cc160d9
1 *editing.txt* For Vim version 7.4. Last change: 2014 May 02 1 *editing.txt* For Vim version 7.4. Last change: 2014 Jul 19
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1360 Vim is able to write files encrypted, and read them back. The encrypted text 1360 Vim is able to write files encrypted, and read them back. The encrypted text
1361 cannot be read without the right key. 1361 cannot be read without the right key.
1362 {only available when compiled with the |+cryptv| feature} *E833* 1362 {only available when compiled with the |+cryptv| feature} *E833*
1363 1363
1364 The text in the swap file and the undo file is also encrypted. *E843* 1364 The text in the swap file and the undo file is also encrypted. *E843*
1365 However, this is done block-by-block and may reduce the time needed to crack a
1366 password. You can disable the swap file, but then a crash will cause you to
1367 lose your work. The undo file can be disabled without much disadvantage. >
1368 :set noundofile
1369 :noswapfile edit secrets
1365 1370
1366 Note: The text in memory is not encrypted. A system administrator may be able 1371 Note: The text in memory is not encrypted. A system administrator may be able
1367 to see your text while you are editing it. When filtering text with 1372 to see your text while you are editing it. When filtering text with
1368 ":!filter" or using ":w !command" the text is not encrypted, this may reveal 1373 ":!filter" or using ":w !command" the text is not encrypted, this may reveal
1369 it to others. The 'viminfo' file is not encrypted. 1374 it to others. The 'viminfo' file is not encrypted.