Mercurial > vim
annotate src/gvim.exe.mnf @ 3875:8235ccf121bb v7.3.694
updated for version 7.3.694
Problem: Now that 'shiftwidth' may use the value of 'tabstop' it is not so
easy to use in indent files.
Solution: Add the shiftwidth() function. (so8res)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sun, 21 Oct 2012 00:45:18 +0200 |
parents | 3c51864309bc |
children | 6ec6b7ff2d43 |
rev | line source |
---|---|
7 | 1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
1908 | 2 <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" > |
7 | 3 <assemblyIdentity |
1072 | 4 processorArchitecture="*" |
2499
3c51864309bc
Update version number in gvim.exe manifest. (Michael Wookey)
Bram Moolenaar <bram@vim.org>
parents:
1908
diff
changeset
|
5 version="7.3.0.0" |
7 | 6 type="win32" |
7 name="Vim" | |
8 /> | |
9 <description>Vi Improved - A Text Editor</description> | |
10 <dependency> | |
11 <dependentAssembly> | |
12 <assemblyIdentity | |
13 type="win32" | |
14 name="Microsoft.Windows.Common-Controls" | |
15 version="6.0.0.0" | |
16 publicKeyToken="6595b64144ccf1df" | |
17 language="*" | |
1072 | 18 processorArchitecture="*" |
7 | 19 /> |
20 </dependentAssembly> | |
21 </dependency> | |
1702 | 22 <!-- Vista security requirements --> |
23 <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> | |
24 <security> | |
25 <requestedPrivileges> | |
26 <requestedExecutionLevel | |
27 level="asInvoker" | |
28 uiAccess="false"/> | |
29 </requestedPrivileges> | |
30 </security> | |
31 </trustInfo> | |
1908 | 32 <!-- Vista High DPI aware --> |
33 <asmv3:application> | |
34 <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> | |
35 <dpiAware>true</dpiAware> | |
36 </asmv3:windowsSettings> | |
37 </asmv3:application> | |
7 | 38 </assembly> |