Mercurial > vim
annotate runtime/doc/os_win32.txt @ 27150:2d0ea3f9ffe1 v8.2.4104
patch 8.2.4104: Vim9: lower casing the autoload prefix causes problems
Commit: https://github.com/vim/vim/commit/bfac409d0b24d212a6d846edb651c49dac03745f
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jan 16 11:12:12 2022 +0000
patch 8.2.4104: Vim9: lower casing the autoload prefix causes problems
Problem: Vim9: lower casing the autoload prefix causes problems.
Solution: Always store the prefix with case preserved.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 16 Jan 2022 12:15:04 +0100 |
parents | 54425c665ba9 |
children | 8fc68ce4a097 |
rev | line source |
---|---|
24387 | 1 *os_win32.txt* For Vim version 8.2. Last change: 2021 Apr 05 |
7 | 2 |
3 | |
4 VIM REFERENCE MANUAL by George Reilly | |
5 | |
6 | |
7 *win32* *Win32* *MS-Windows* | |
8 This file documents the idiosyncrasies of the Win32 version of Vim. | |
9 | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
10 The Win32 version of Vim works on Windows XP, Vista, 7, 8 and 10. There are |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
11 both console and GUI versions. |
2364
151b037b7e74
Fix hang when resizing in diff mode and there are concealed items.
Bram Moolenaar <bram@vim.org>
parents:
2345
diff
changeset
|
12 |
151b037b7e74
Fix hang when resizing in diff mode and there are concealed items.
Bram Moolenaar <bram@vim.org>
parents:
2345
diff
changeset
|
13 The 32 bit version also runs on 64 bit MS-Windows systems. |
151b037b7e74
Fix hang when resizing in diff mode and there are concealed items.
Bram Moolenaar <bram@vim.org>
parents:
2345
diff
changeset
|
14 |
7 | 15 1. Known problems |win32-problems| |
16 2. Startup |win32-startup| | |
17 3. Restore screen contents |win32-restore| | |
18 4. Using the mouse |win32-mouse| | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
19 5. Running under Windows 95 |win32-win95| |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
20 6. Running under Windows 3.1 |win32-win3.1| |
25354
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
21 7. Installation package |win32-installer| |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
22 8. Win32 mini FAQ |win32-faq| |
7 | 23 |
24 Additionally, there are a number of common Win32 and DOS items: | |
25 File locations |dos-locations| | |
26 Using backslashes |dos-backslash| | |
27 Standard mappings |dos-standard-mappings| | |
28 Screen output and colors |dos-colors| | |
29 File formats |dos-file-formats| | |
30 :cd command |dos-:cd| | |
31 Interrupting |dos-CTRL-Break| | |
32 Temp files |dos-temp-files| | |
33 Shell option default |dos-shell| | |
25084
beff72446e2e
patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents:
24387
diff
changeset
|
34 PowerShell defaults |dos-powershell| |
7 | 35 |
36 Win32 GUI |gui-w32| | |
37 | |
38 Credits: | |
39 The Win32 version was written by George V. Reilly <george@reilly.org>. | |
40 The original Windows NT port was done by Roger Knobbe <RogerK@wonderware.com>. | |
41 The GUI version was made by George V. Reilly and Robert Webb. | |
42 | |
2217
120502692d82
Improve the MS-Windows installer.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
43 For compiling see "src/INSTALLpc.txt". *win32-compiling* |
7 | 44 |
45 ============================================================================== | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
46 1. Known problems *win32-problems* |
7 | 47 |
48 When doing file name completion, Vim also finds matches for the short file | |
49 name. But Vim will still find and use the corresponding long file name. For | |
50 example, if you have the long file name "this_is_a_test" with the short file | |
51 name "this_i~1", the command ":e *1" will start editing "this_is_a_test". | |
52 | |
53 ============================================================================== | |
54 2. Startup *win32-startup* | |
55 | |
56 Current directory *win32-curdir* | |
57 | |
58 If Vim is started with a single file name argument, and it has a full path | |
59 (starts with "x:\"), Vim assumes it was started from the file explorer and | |
60 will set the current directory to where that file is. To avoid this when | |
61 typing a command to start Vim, use a forward slash instead of a backslash. | |
62 Example: > | |
63 | |
64 vim c:\text\files\foo.txt | |
65 | |
66 Will change to the "C:\text\files" directory. > | |
67 | |
68 vim c:/text\files\foo.txt | |
69 | |
70 Will use the current directory. | |
71 | |
72 | |
73 Term option *win32-term* | |
74 | |
75 The only kind of terminal type that the Win32 version of Vim understands is | |
76 "win32", which is built-in. If you set 'term' to anything else, you will | |
77 probably get very strange behavior from Vim. Therefore Vim does not obtain | |
78 the default value of 'term' from the environment variable "TERM". | |
79 | |
819 | 80 $PATH *win32-PATH* |
81 | |
82 The directory of the Vim executable is appended to $PATH. This is mostly to | |
5400 | 83 make "!xxd" work, as it is in the Tools menu. And it also means that when |
819 | 84 executable() returns 1 the executable can actually be executed. |
85 | |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
86 Command line arguments *win32-cmdargs* |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
87 |
24387 | 88 Analysis of a command line into parameters is not standardised in MS-Windows. |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
89 Vim and gvim used to use different logic to parse it (before 7.4.432), and the |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
90 logic was also depended on what it was compiled with. Now Vim and gvim both |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
91 use the CommandLineToArgvW() Win32 API, so they behave in the same way. |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
92 |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
93 The basic rules are: *win32-backslashes* |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
94 a) A parameter is a sequence of graphic characters. |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
95 b) Parameters are separated by white space. |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
96 c) A parameter can be enclosed in double quotes to include white space. |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
97 d) A sequence of zero or more backslashes (\) and a double quote (") |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
98 is special. The effective number of backslashes is halved, rounded |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
99 down. An even number of backslashes reverses the acceptability of |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
100 spaces and tabs, an odd number of backslashes produces a literal |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
101 double quote. |
8440
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
102 |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
103 So: |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
104 " is a special double quote |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
105 \" is a literal double quote |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
106 \\" is a literal backslash and a special double quote |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
107 \\\" is a literal backslash and a literal double quote |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
108 \\\\" is 2 literal backslashes and a special double quote |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
109 \\\\\" is 2 literal backslashes and a literal double quote |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
110 etc. |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
111 |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
112 Example: > |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
113 vim "C:\My Music\freude" +"set ignorecase" +/"\"foo\\" +\"bar\\\" |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
114 |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
115 opens "C:\My Music\freude" and executes the line mode commands: > |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
116 set ignorecase; /"foo\ and /bar\" |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
117 |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
118 These rules are also described in the reference of the CommandLineToArgvW API: |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
119 https://msdn.microsoft.com/en-us/library/windows/desktop/bb776391.aspx |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
120 |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
121 *win32-quotes* |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
122 There are additional rules for quotes (which are not well documented). |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
123 As described above, quotes inside a file name (or any other command line |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
124 argument) can be escaped with a backslash. E.g. > |
8440
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
125 vim -c "echo 'foo\"bar'" |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
126 |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
127 Alternatively use three quotes to get one: > |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
128 vim -c "echo 'foo"""bar'" |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
129 |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
130 The quotation rules are: |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
131 |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
132 1. A `"` starts quotation. |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
133 2. Another `"` or `""` ends quotation. If the quotation ends with `""`, a `"` |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
134 is produced at the end of the quoted string. |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
135 |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
136 Examples, with [] around an argument: |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
137 "foo" -> [foo] |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
138 "foo"" -> [foo"] |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
139 "foo"bar -> [foobar] |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
140 "foo" bar -> [foo], [bar] |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
141 "foo""bar -> [foo"bar] |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
142 "foo"" bar -> [foo"], [bar] |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
143 "foo"""bar" -> [foo"bar] |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
144 |
4c6ad81d41fe
commit https://github.com/vim/vim/commit/5f148ec0b5a6cedd9129b3abac351034b83cc4f7
Christian Brabandt <cb@256bit.org>
parents:
6259
diff
changeset
|
145 |
7 | 146 ============================================================================== |
147 3. Restore screen contents *win32-restore* | |
148 | |
149 When 'restorescreen' is set (which is the default), Vim will restore the | |
150 original contents of the console when exiting or when executing external | |
151 commands. If you don't want this, use ":set nors". |'restorescreen'| | |
152 | |
153 ============================================================================== | |
154 4. Using the mouse *win32-mouse* | |
155 | |
156 The Win32 version of Vim supports using the mouse. If you have a two-button | |
157 mouse, the middle button can be emulated by pressing both left and right | |
158 buttons simultaneously - but note that in the Win32 GUI, if you have the right | |
159 mouse button pop-up menu enabled (see 'mouse'), you should err on the side of | |
160 pressing the left button first. |mouse-using| | |
161 | |
162 When the mouse doesn't work, try disabling the "Quick Edit Mode" feature of | |
163 the console. | |
164 | |
165 ============================================================================== | |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
166 5. Running under Windows 95 *win32-win95* |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
167 *windows95* *windows98* *windowsme* |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
168 Windows 95/98/ME support was removed in patch 8.0.0029 If you want to use it |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
169 you will need to get a version older than that. |
7 | 170 |
10264
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
171 ============================================================================== |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
172 6. Running under Windows 3.1 *win32-win3.1* |
c036c0f636d5
commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
173 |
14123 | 174 *win32s* *windows-3.1* *gui-w32s* *win16* |
11473 | 175 There was a special version of gvim that runs under Windows 3.1 and 3.11. |
19125
286aa7c0c9ab
patch 8.2.0122: readme files still mention MS-DOS
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
176 Support was removed in patch 7.4.1364. |
7 | 177 |
178 ============================================================================== | |
25354
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
179 7. Installation package *win32-installer* |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
180 |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
181 A simple installer for windows is available at http://www.vim.org/download.php |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
182 (stable version) and nightly builds are also available at |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
183 https://github.com/vim/vim-win32-installer/releases/ |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
184 |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
185 The nightly builds include 32bit and 64bit builds, have most features enabled |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
186 and usually also contain an extra cryptographic signed installer, so Windows |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
187 will not complain. |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
188 |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
189 To use the installer, simply run the exe file. The following switches are |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
190 also supported: > |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
191 |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
192 gvim_<version>.exe /S -> silent install without any dialogues |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
193 gvim_<version>.exe /D=C:\vim -> Install into directory c:\vim |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
194 -> /D must be the last argument |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
195 gvim_<version>.exe /S /D=c:\vim -> silent install into c:\vim |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
196 < |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
197 The default installation directory can alternatively be given by setting the |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
198 $VIM environment variable. |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
199 |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
200 ============================================================================== |
54425c665ba9
patch 8.2.3214: MS-Windows: passing /D does not set the install location
Bram Moolenaar <Bram@vim.org>
parents:
25084
diff
changeset
|
201 8. Win32 mini FAQ *win32-faq* |
7 | 202 |
203 Q. How do I change the font? | |
22 | 204 A. In the GUI version, you can use the 'guifont' option. Example: > |
205 :set guifont=Lucida_Console:h15:cDEFAULT | |
206 < In the console version, you need to set the font of the console itself. | |
7 | 207 You cannot do this from within Vim. |
208 | |
209 Q. How do I type dead keys on Windows NT? | |
210 A. Dead keys work on NT 3.51. Just type them as you would in any other | |
211 application. | |
212 On NT 4.0, you need to make sure that the default locale (set in the | |
213 Keyboard part of the Control Panel) is the same as the currently active | |
214 locale. Otherwise the NT code will get confused and crash! This is a NT | |
215 4.0 problem, not really a Vim problem. | |
216 | |
217 Q. I'm using Vim to edit a symbolically linked file on a Unix NFS file server. | |
218 When I write the file, Vim does not "write through" the symlink. Instead, | |
219 it deletes the symbolic link and creates a new file in its place. Why? | |
220 A. On Unix, Vim is prepared for links (symbolic or hard). A backup copy of | |
221 the original file is made and then the original file is overwritten. This | |
222 assures that all properties of the file remain the same. On non-Unix | |
223 systems, the original file is renamed and a new file is written. Only the | |
224 protection bits are set like the original file. However, this doesn't work | |
225 properly when working on an NFS-mounted file system where links and other | |
226 things exist. The only way to fix this in the current version is not | |
227 making a backup file, by ":set nobackup nowritebackup" |'writebackup'| | |
228 | |
22 | 229 Q. I'm using Vim to edit a file on a Unix file server through Samba. When I |
230 write the file, the owner of the file is changed. Why? | |
231 A. When writing a file Vim renames the original file, this is a backup (in | |
232 case writing the file fails halfway). Then the file is written as a new | |
233 file. Samba then gives it the default owner for the file system, which may | |
234 differ from the original owner. | |
235 To avoid this set the 'backupcopy' option to "yes". Vim will then make a | |
236 copy of the file for the backup, and overwrite the original file. The | |
237 owner isn't changed then. | |
238 | |
7 | 239 Q. How do I get to see the output of ":make" while it's running? |
240 A. Basically what you need is to put a tee program that will copy its input | |
241 (the output from make) to both stdout and to the errorfile. You can find a | |
1125 | 242 copy of tee (and a number of other GNU tools) at |
7 | 243 http://gnuwin32.sourceforge.net or http://unxutils.sourceforge.net |
244 Alternatively, try the more recent Cygnus version of the GNU tools at | |
245 http://www.cygwin.com Other Unix-style tools for Win32 are listed at | |
246 http://directory.google.com/Top/Computers/Software/Operating_Systems/Unix/Win32/ | |
247 When you do get a copy of tee, you'll need to add > | |
248 :set shellpipe=\|\ tee | |
249 < to your _vimrc. | |
250 | |
251 Q. I'm storing files on a remote machine that works with VisionFS, and files | |
252 disappear! | |
253 A. VisionFS can't handle certain dot (.) three letter extension file names. | |
254 SCO declares this behavior required for backwards compatibility with 16bit | |
255 DOS/Windows environments. The two commands below demonstrate the behavior: | |
256 > | |
20241 | 257 echo Hello > file.bat~ |
7 | 258 dir > file.bat |
259 < | |
260 The result is that the "dir" command updates the "file.bat~" file, instead | |
237 | 261 of creating a new "file.bat" file. This same behavior is exhibited in Vim |
7 | 262 when editing an existing file named "foo.bat" because the default behavior |
263 of Vim is to create a temporary file with a '~' character appended to the | |
264 name. When the file is written, it winds up being deleted. | |
265 | |
266 Solution: Add this command to your _vimrc file: > | |
267 :set backupext=.temporary | |
268 | |
269 Q. How do I change the blink rate of the cursor? | |
270 A. You can't! This is a limitation of the NT console. NT 5.0 is reported to | |
271 be able to set the blink rate for all console windows at the same time. | |
272 | |
273 *:!start* | |
11230
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
274 Q. How can I asynchronously run an external command or program, or open a |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
275 document or URL with its default program? |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
276 A. When using :! to run an external command, you can run it with "start". For |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
277 example, to run notepad: > |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
278 :!start notepad |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
279 < To open "image.jpg" with the default image viewer: > |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
280 :!start image.jpg |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
281 < To open the folder of the current file in Windows Explorer: > |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
282 :!start %:h |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
283 < To open the Vim home page with the default browser: > |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
284 :!start http://www.vim.org/ |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
285 < |
a3ea65af63cf
patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents:
10264
diff
changeset
|
286 Using "start" stops Vim switching to another screen, opening a new console, |
7 | 287 or waiting for the program to complete; it indicates that you are running a |
1624 | 288 program that does not affect the files you are editing. Programs begun |
7 | 289 with :!start do not get passed Vim's open file handles, which means they do |
290 not have to be closed before Vim. | |
291 To avoid this special treatment, use ":! start". | |
2859 | 292 There are two optional arguments (see the next Q): |
3513 | 293 /min the window will be minimized |
294 /b no console window will be opened | |
3082 | 295 You can use only one of these flags at a time. A second one will be |
2859 | 296 treated as the start of the command. |
297 | |
298 Q. How do I avoid getting a window for programs that I run asynchronously? | |
3082 | 299 A. You have two possible solutions depending on what you want: |
2908 | 300 1) You may use the /min flag in order to run program in a minimized state |
301 with no other changes. It will work equally for console and GUI | |
302 applications. | |
303 2) You can use the /b flag to run console applications without creating a | |
2859 | 304 console window for them (GUI applications are not affected). But you |
2908 | 305 should use this flag only if the application you run doesn't require any |
306 input. Otherwise it will get an EOF error because its input stream | |
3082 | 307 (stdin) would be redirected to \\.\NUL (stdout and stderr too). |
2859 | 308 |
309 Example for a console application, run Exuberant ctags: > | |
310 :!start /min ctags -R . | |
311 < When it has finished you should see file named "tags" in your current | |
312 directory. You should notice the window title blinking on your taskbar. | |
6180 | 313 This is more noticeable for commands that take longer. |
2859 | 314 Now delete the "tags" file and run this command: > |
315 :!start /b ctags -R . | |
316 < You should have the same "tags" file, but this time there will be no | |
317 blinking on the taskbar. | |
318 Example for a GUI application: > | |
319 :!start /min notepad | |
320 :!start /b notepad | |
321 < The first command runs notepad minimized and the second one runs it | |
322 normally. | |
7 | 323 |
6259 | 324 *windows-icon* |
325 Q. I don't like the Vim icon, can I change it? | |
326 A. Yes, place your favorite icon in bitmaps/vim.ico in a directory of | |
327 'runtimepath'. For example ~/vimfiles/bitmaps/vim.ico. | |
328 | |
329 | |
14945 | 330 vim:tw=78:ts=8:noet:ft=help:norl: |