comparison runtime/doc/options.txt @ 21676:1b345fb68ae3

Update runtime files. Commit: https://github.com/vim/vim/commit/e7b1ea0276cc83cd5c612f3189a174a60d57b5ed Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 7 19:54:59 2020 +0200 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Fri, 07 Aug 2020 20:00:05 +0200
parents 3a1ed539ae2a
children 0db0640e16e0
comparison
equal deleted inserted replaced
21675:49ed426f3fb5 21676:1b345fb68ae3
1 *options.txt* For Vim version 8.2. Last change: 2020 Jul 18 1 *options.txt* For Vim version 8.2. Last change: 2020 Aug 07
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
2713 'directory' 'dir' string (default for Amiga: ".,t:", 2713 'directory' 'dir' string (default for Amiga: ".,t:",
2714 for Win32: ".,$TEMP,c:\tmp,c:\temp" 2714 for Win32: ".,$TEMP,c:\tmp,c:\temp"
2715 for Unix: ".,~/tmp,/var/tmp,/tmp") 2715 for Unix: ".,~/tmp,/var/tmp,/tmp")
2716 global 2716 global
2717 List of directory names for the swap file, separated with commas. 2717 List of directory names for the swap file, separated with commas.
2718 Recommended value: ".,~/vimswap//" - this will put the swap file next
2719 to the edited file if possible, and in your personal swap directory
2720 otherwise. Make sure "~/vimswap//" is only readable for you.
2721
2722 Possible items:
2718 - The swap file will be created in the first directory where this is 2723 - The swap file will be created in the first directory where this is
2719 possible. 2724 possible.
2720 - Empty means that no swap file will be used (recovery is 2725 - Empty means that no swap file will be used (recovery is
2721 impossible!) and no |E303| error will be given. 2726 impossible!) and no |E303| error will be given.
2722 - A directory "." means to put the swap file in the same directory as 2727 - A directory "." means to put the swap file in the same directory as
2747 of the option is removed. 2752 of the option is removed.
2748 Using "." first in the list is recommended. This means that editing 2753 Using "." first in the list is recommended. This means that editing
2749 the same file twice will result in a warning. Using "/tmp" on Unix is 2754 the same file twice will result in a warning. Using "/tmp" on Unix is
2750 discouraged: When the system crashes you lose the swap file. 2755 discouraged: When the system crashes you lose the swap file.
2751 "/var/tmp" is often not cleared when rebooting, thus is a better 2756 "/var/tmp" is often not cleared when rebooting, thus is a better
2752 choice than "/tmp". But it can contain a lot of files, your swap 2757 choice than "/tmp". But others on the computer may be able to see the
2753 files get lost in the crowd. That is why a "tmp" directory in your 2758 files, and it can contain a lot of files, your swap files get lost in
2754 home directory is tried first. 2759 the crowd. That is why a "tmp" directory in your home directory is
2760 tried first.
2755 The use of |:set+=| and |:set-=| is preferred when adding or removing 2761 The use of |:set+=| and |:set-=| is preferred when adding or removing
2756 directories from the list. This avoids problems when a future version 2762 directories from the list. This avoids problems when a future version
2757 uses another default. 2763 uses another default.
2758 This option cannot be set from a |modeline| or in the |sandbox|, for 2764 This option cannot be set from a |modeline| or in the |sandbox|, for
2759 security reasons. 2765 security reasons.
8366 >= 12 Every executed function. 8372 >= 12 Every executed function.
8367 >= 13 When an exception is thrown, caught, finished, or discarded. 8373 >= 13 When an exception is thrown, caught, finished, or discarded.
8368 >= 14 Anything pending in a ":finally" clause. 8374 >= 14 Anything pending in a ":finally" clause.
8369 >= 15 Every executed Ex command from a script (truncated at 200 8375 >= 15 Every executed Ex command from a script (truncated at 200
8370 characters). 8376 characters).
8371 >= 16 Every executed Ex command 8377 >= 16 Every executed Ex command.
8372 8378
8373 This option can also be set with the "-V" argument. See |-V|. 8379 This option can also be set with the "-V" argument. See |-V|.
8374 This option is also set by the |:verbose| command. 8380 This option is also set by the |:verbose| command.
8375 8381
8376 When the 'verbosefile' option is set then the verbose messages are not 8382 When the 'verbosefile' option is set then the verbose messages are not
8905 'winptydll' string (default "winpty32.dll" or "winpty64.dll") 8911 'winptydll' string (default "winpty32.dll" or "winpty64.dll")
8906 global 8912 global
8907 {only available when compiled with the |terminal| 8913 {only available when compiled with the |terminal|
8908 feature on MS-Windows} 8914 feature on MS-Windows}
8909 Specifies the name of the winpty shared library, used for the 8915 Specifies the name of the winpty shared library, used for the
8910 |:terminal| command. The default depends on whether was build as a 8916 |:terminal| command. The default depends on whether Vim was built as a
8911 32-bit or 64-bit executable. If not found, "winpty.dll" is tried as 8917 32-bit or 64-bit executable. If not found, "winpty.dll" is tried as
8912 a fallback. 8918 a fallback.
8913 Environment variables are expanded |:set_env|. 8919 Environment variables are expanded |:set_env|.
8914 This option cannot be set from a |modeline| or in the |sandbox|, for 8920 This option cannot be set from a |modeline| or in the |sandbox|, for
8915 security reasons. 8921 security reasons.