annotate src/os_win32.c @ 31962:4efcb5c68112 v9.0.1313

patch 9.0.1313: some settings use the current codepage instead of 'encoding' Commit: https://github.com/vim/vim/commit/ce3189d56e867a2ffc077893b62f530d5b09150f Author: K.Takata <kentkt@csc.jp> Date: Wed Feb 15 19:13:43 2023 +0000 patch 9.0.1313: some settings use the current codepage instead of 'encoding' Problem: Some settings use the current codepage instead of 'encoding'. Solution: Adjust how options are initialized. (Ken Takata, closes https://github.com/vim/vim/issues/11992)
author Bram Moolenaar <Bram@vim.org>
date Wed, 15 Feb 2023 20:15:03 +0100
parents d156287184f6
children 04d9dff67d99
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10042
4aead6a9b7a9 commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents: 10025
diff changeset
1 /* vi:set ts=8 sts=4 sw=4 noet:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 * See README.txt for an overview of the Vim source code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 * os_win32.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 * Used for both the console version and the Win32 GUI. A lot of code is for
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15866
diff changeset
13 * the console version only, so there is a lot of "#ifndef FEAT_GUI_MSWIN".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 * Win32 (Windows NT and Windows 95) system-dependent routines.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 * Portions lifted from the Win32 SDK samples, the MSDOS-dependent code,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 * NetHack 3.1.3, GNU Emacs 19.30, and Vile 5.5.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19 * George V. Reilly <george@reilly.org> wrote most of this.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 * Roger Knobbe <rogerk@wonderware.com> did the initial port of Vim 3.0.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23 #include "vim.h"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24
14
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
25 #ifdef FEAT_MZSCHEME
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
26 # include "if_mzsch.h"
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
27 #endif
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
28
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29 #include <sys/types.h>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30 #include <signal.h>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 #include <limits.h>
3927
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
32
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
33 // cproto fails on missing include files
3927
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
34 #ifndef PROTO
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
35 # include <process.h>
23819
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
36 # include <winternl.h>
3927
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
37 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39 #undef chdir
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40 #ifdef __GNUC__
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41 # ifndef __MINGW32__
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
42 # include <dirent.h>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
43 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
44 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
45 # include <direct.h>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
46 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47
3927
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
48 #ifndef PROTO
26336
a2e6da79274d patch 8.2.3699: the +title feature adds a lot of #ifdef but little code
Bram Moolenaar <Bram@vim.org>
parents: 26171
diff changeset
49 # if !defined(FEAT_GUI_MSWIN)
3927
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
50 # include <shellapi.h>
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
51 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
52 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
53
10317
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
54 #ifdef FEAT_JOB_CHANNEL
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
55 # include <tlhelp32.h>
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
56 #endif
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
57
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
58 #ifdef __MINGW32__
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59 # ifndef FROM_LEFT_1ST_BUTTON_PRESSED
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
60 # define FROM_LEFT_1ST_BUTTON_PRESSED 0x0001
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
61 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
62 # ifndef RIGHTMOST_BUTTON_PRESSED
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63 # define RIGHTMOST_BUTTON_PRESSED 0x0002
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
64 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
65 # ifndef FROM_LEFT_2ND_BUTTON_PRESSED
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
66 # define FROM_LEFT_2ND_BUTTON_PRESSED 0x0004
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
67 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68 # ifndef FROM_LEFT_3RD_BUTTON_PRESSED
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
69 # define FROM_LEFT_3RD_BUTTON_PRESSED 0x0008
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
70 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71 # ifndef FROM_LEFT_4TH_BUTTON_PRESSED
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 # define FROM_LEFT_4TH_BUTTON_PRESSED 0x0010
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
75 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
76 * EventFlags
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
77 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 # ifndef MOUSE_MOVED
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79 # define MOUSE_MOVED 0x0001
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
80 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
81 # ifndef DOUBLE_CLICK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 # define DOUBLE_CLICK 0x0002
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
86 // Record all output and all keyboard & mouse input
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
87 // #define MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
88
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90 FILE* fdDump = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94 * When generating prototypes for Win32 on Unix, these lines make the syntax
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
95 * errors disappear. They do not need to be correct.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
97 #ifdef PROTO
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
98 # define WINAPI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
99 typedef char * LPCSTR;
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
100 typedef char * LPWSTR;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
101 typedef int ACCESS_MASK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
102 typedef int BOOL;
29071
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
103 typedef int BOOLEAN;
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
104 typedef int CALLBACK;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
105 typedef int COLORREF;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
106 typedef int CONSOLE_CURSOR_INFO;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
107 typedef int COORD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
108 typedef int DWORD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
109 typedef int HANDLE;
7668
21b0a39d13ed commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents: 7657
diff changeset
110 typedef int LPHANDLE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
111 typedef int HDC;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
112 typedef int HFONT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
113 typedef int HICON;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
114 typedef int HINSTANCE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
115 typedef int HWND;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
116 typedef int INPUT_RECORD;
11929
3457728d1a58 patch 8.0.0844: wrong function prototype because of missing static
Christian Brabandt <cb@256bit.org>
parents: 11921
diff changeset
117 typedef int INT;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
118 typedef int KEY_EVENT_RECORD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119 typedef int LOGFONT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
120 typedef int LPBOOL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
121 typedef int LPCTSTR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
122 typedef int LPDWORD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
123 typedef int LPSTR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
124 typedef int LPTSTR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
125 typedef int LPVOID;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
126 typedef int MOUSE_EVENT_RECORD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
127 typedef int PACL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
128 typedef int PDWORD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
129 typedef int PHANDLE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
130 typedef int PRINTDLG;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
131 typedef int PSECURITY_DESCRIPTOR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
132 typedef int PSID;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
133 typedef int SECURITY_INFORMATION;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
134 typedef int SHORT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
135 typedef int SMALL_RECT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
136 typedef int TEXTMETRIC;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
137 typedef int TOKEN_INFORMATION_CLASS;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
138 typedef int TRUSTEE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
139 typedef int WORD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
140 typedef int WCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
141 typedef void VOID;
3927
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
142 typedef int BY_HANDLE_FILE_INFORMATION;
5112
f063be86b632 updated for version 7.3.1299
Bram Moolenaar <bram@vim.org>
parents: 5049
diff changeset
143 typedef int SE_OBJECT_TYPE;
f063be86b632 updated for version 7.3.1299
Bram Moolenaar <bram@vim.org>
parents: 5049
diff changeset
144 typedef int PSNSECINFO;
f063be86b632 updated for version 7.3.1299
Bram Moolenaar <bram@vim.org>
parents: 5049
diff changeset
145 typedef int PSNSECINFOW;
6359
9f9058aeba0d updated for version 7.4.512
Bram Moolenaar <bram@vim.org>
parents: 6345
diff changeset
146 typedef int STARTUPINFO;
9f9058aeba0d updated for version 7.4.512
Bram Moolenaar <bram@vim.org>
parents: 6345
diff changeset
147 typedef int PROCESS_INFORMATION;
10025
068f397d0da4 commit https://github.com/vim/vim/commit/d90b6c02e2900576fb37d95b5e4f4a32b2d7383f
Christian Brabandt <cb@256bit.org>
parents: 9959
diff changeset
148 typedef int LPSECURITY_ATTRIBUTES;
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
149 # define __stdcall // empty
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
150 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
151
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
152 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
153 // Win32 Console handles for input and output
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
154 static HANDLE g_hConIn = INVALID_HANDLE_VALUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
155 static HANDLE g_hConOut = INVALID_HANDLE_VALUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
156
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
157 // Win32 Screen buffer,coordinate,console I/O information
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
158 static SMALL_RECT g_srScrollRegion;
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
159 static COORD g_coord; // 0-based, but external coords are 1-based
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
160
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
161 // The attribute of the screen when the editor was started
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
162 static WORD g_attrDefault = 7; // lightgray text on black background
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
163 static WORD g_attrCurrent;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
164
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
165 static int g_fCBrkPressed = FALSE; // set by ctrl-break interrupt
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
166 static int g_fCtrlCPressed = FALSE; // set when ctrl-C or ctrl-break detected
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
167 static int g_fForceExit = FALSE; // set when forcefully exiting
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
168
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
169 static void scroll(unsigned cLines);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
170 static void set_scroll_region(unsigned left, unsigned top,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
171 unsigned right, unsigned bottom);
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
172 static void set_scroll_region_tb(unsigned top, unsigned bottom);
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
173 static void set_scroll_region_lr(unsigned left, unsigned right);
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
174 static void insert_lines(unsigned cLines);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175 static void delete_lines(unsigned cLines);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
176 static void gotoxy(unsigned x, unsigned y);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
177 static void standout(void);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
178 static int s_cursor_visible = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
179 static int did_create_conin = FALSE;
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
180 // The 'input_record_buffer' is an internal dynamic fifo queue of MS-Windows
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
181 // console INPUT_RECORD events that are normally read from the console input
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
182 // buffer. This provides an injection point for testing the low-level handling
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
183 // of INPUT_RECORDs.
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
184 typedef struct input_record_buffer_node_S
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
185 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
186 INPUT_RECORD ir;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
187 struct input_record_buffer_node_S *next;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
188 } input_record_buffer_node_T;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
189 typedef struct input_record_buffer_S
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
190 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
191 input_record_buffer_node_T *head;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
192 input_record_buffer_node_T *tail;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
193 int length;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
194 } input_record_buffer_T;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
195 static input_record_buffer_T input_record_buffer;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
196 static int read_input_record_buffer(INPUT_RECORD* irEvents, int nMaxLength);
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
197 static int write_input_record_buffer(INPUT_RECORD* irEvents, int nLength);
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
198 #endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
199 #ifdef FEAT_GUI_MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
200 static int s_dont_use_vimrun = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
201 static int need_vimrun_warning = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
202 static char *vimrun_path = "vimrun ";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
203 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
204
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
205 static int win32_getattrs(char_u *name);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
206 static int win32_setattrs(char_u *name, int attrs);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
207 static int win32_set_archive(char_u *name);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
208
15804
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
209 static int conpty_working = 0;
18064
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
210 static int conpty_type = 0;
15804
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
211 static int conpty_stable = 0;
20201
304015471ae9 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed
Bram Moolenaar <Bram@vim.org>
parents: 20183
diff changeset
212 static int conpty_fix_type = 0;
15725
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
213 static void vtp_flag_init();
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
214
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
215 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
15848
cea7a0fde805 patch 8.1.0931: vtp_working included in GUI build but unused
Bram Moolenaar <Bram@vim.org>
parents: 15804
diff changeset
216 static int vtp_working = 0;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
217 static void vtp_init();
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
218 static void vtp_exit();
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
219 static void vtp_sgr_bulk(int arg);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
220 static void vtp_sgr_bulks(int argc, int *argv);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
221
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
222 static int wt_working = 0;
31067
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
223 static void wt_init(void);
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
224
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
225 static int g_color_index_bg = 0;
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
226 static int g_color_index_fg = 7;
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
227
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
228 # ifdef FEAT_TERMGUICOLORS
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
229 static guicolor_T save_console_bg_rgb;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
230 static guicolor_T save_console_fg_rgb;
19239
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
231 static guicolor_T store_console_bg_rgb;
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
232 static guicolor_T store_console_fg_rgb;
30013
11cfe4c6d677 patch 9.0.0344: MS-Windows: background color wrong in Console
Bram Moolenaar <Bram@vim.org>
parents: 29732
diff changeset
233 static int default_console_color_bg = 0x000000; // black
14650
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
234 static int default_console_color_fg = 0xc0c0c0; // white
31839
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
235 # define USE_VTP (vtp_working && is_term_win32() \
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
236 && (p_tgc || t_colors >= 256))
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
237 # define USE_WT (wt_working)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
238 # else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
239 # define USE_VTP 0
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
240 # define USE_WT 0
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
241 # endif
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
242
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
243 static void set_console_color_rgb(void);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
244 static void reset_console_color_rgb(void);
19239
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
245 static void restore_console_color_rgb(void);
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
246 #endif // !FEAT_GUI_MSWIN || VIMDLL
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
247
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
248 // This flag is newly created from Windows 10
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
249 #ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
250 # define ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x0004
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
251 #endif
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
252
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
253 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
254 static int suppress_winsize = 1; // don't fiddle with console
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
255 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
256
31962
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
257 static WCHAR *exe_pathw = NULL;
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
258
5633
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
259 static BOOL win8_or_later = FALSE;
31507
26a32a3f05af patch 9.0.1086: display wrong in Windows terminal after exiting Vim
Bram Moolenaar <Bram@vim.org>
parents: 31505
diff changeset
260 static BOOL win10_22H2_or_later = FALSE;
31511
90d7dfb0003d patch 9.0.1088: clang warns for unused variable
Bram Moolenaar <Bram@vim.org>
parents: 31507
diff changeset
261 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
31507
26a32a3f05af patch 9.0.1086: display wrong in Windows terminal after exiting Vim
Bram Moolenaar <Bram@vim.org>
parents: 31505
diff changeset
262 static BOOL use_alternate_screen_buffer = FALSE;
31511
90d7dfb0003d patch 9.0.1088: clang warns for unused variable
Bram Moolenaar <Bram@vim.org>
parents: 31507
diff changeset
263 #endif
5633
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
264
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
265 /*
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
266 * Get version number including build number
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
267 */
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
268 typedef BOOL (WINAPI *PfnRtlGetVersion)(LPOSVERSIONINFOW);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
269 #define MAKE_VER(major, minor, build) \
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
270 (((major) << 24) | ((minor) << 16) | (build))
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
271
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
272 static DWORD
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
273 get_build_number(void)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
274 {
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29096
diff changeset
275 OSVERSIONINFOW osver;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
276 HMODULE hNtdll;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
277 PfnRtlGetVersion pRtlGetVersion;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
278 DWORD ver = MAKE_VER(0, 0, 0);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
279
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29096
diff changeset
280 osver.dwOSVersionInfoSize = sizeof(OSVERSIONINFOW);
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
281 hNtdll = GetModuleHandle("ntdll.dll");
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
282 if (hNtdll == NULL)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
283 return ver;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
284
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
285 pRtlGetVersion =
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
286 (PfnRtlGetVersion)GetProcAddress(hNtdll, "RtlGetVersion");
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
287 pRtlGetVersion(&osver);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
288 ver = MAKE_VER(min(osver.dwMajorVersion, 255),
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
289 min(osver.dwMinorVersion, 255),
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
290 min(osver.dwBuildNumber, 32767));
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
291 return ver;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
292 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
293
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
294 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
295 static BOOL
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
296 is_ambiwidth_event(
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
297 INPUT_RECORD *ir)
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
298 {
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
299 return ir->EventType == KEY_EVENT
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
300 && ir->Event.KeyEvent.bKeyDown
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
301 && ir->Event.KeyEvent.wRepeatCount == 1
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
302 && ir->Event.KeyEvent.wVirtualKeyCode == 0x12
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
303 && ir->Event.KeyEvent.wVirtualScanCode == 0x38
27533
4f1c67a5f446 patch 8.2.4294: MS-Windows: #ifdefs for Cygwin are too complicated
Bram Moolenaar <Bram@vim.org>
parents: 27523
diff changeset
304 && ir->Event.KeyEvent.uChar.UnicodeChar == 0
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
305 && ir->Event.KeyEvent.dwControlKeyState == 2;
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
306 }
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
307
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
308 static void
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
309 make_ambiwidth_event(
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
310 INPUT_RECORD *down,
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
311 INPUT_RECORD *up)
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
312 {
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
313 down->Event.KeyEvent.wVirtualKeyCode = 0;
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
314 down->Event.KeyEvent.wVirtualScanCode = 0;
27533
4f1c67a5f446 patch 8.2.4294: MS-Windows: #ifdefs for Cygwin are too complicated
Bram Moolenaar <Bram@vim.org>
parents: 27523
diff changeset
315 down->Event.KeyEvent.uChar.UnicodeChar
4f1c67a5f446 patch 8.2.4294: MS-Windows: #ifdefs for Cygwin are too complicated
Bram Moolenaar <Bram@vim.org>
parents: 27523
diff changeset
316 = up->Event.KeyEvent.uChar.UnicodeChar;
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
317 down->Event.KeyEvent.dwControlKeyState = 0;
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
318 }
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
319
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
320 /*
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
321 * Version of ReadConsoleInput() that works with IME.
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
322 * Works around problems on Windows 8.
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
323 */
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
324 static BOOL
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
325 read_console_input(
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
326 HANDLE hInput,
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
327 INPUT_RECORD *lpBuffer,
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29096
diff changeset
328 int nLength,
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
329 LPDWORD lpEvents)
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
330 {
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
331 enum
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
332 {
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
333 IRSIZE = 10
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
334 };
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
335 static INPUT_RECORD s_irCache[IRSIZE];
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
336 static DWORD s_dwIndex = 0;
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
337 static DWORD s_dwMax = 0;
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
338 DWORD dwEvents;
5635
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
339 int head;
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
340 int tail;
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
341 int i;
20183
5888cce49574 patch 8.2.0647: MS-Windows: repeat count for events was not used
Bram Moolenaar <Bram@vim.org>
parents: 20087
diff changeset
342 static INPUT_RECORD s_irPseudo;
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
343
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
344 if (s_dwMax == 0 && input_record_buffer.length > 0)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
345 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
346 dwEvents = read_input_record_buffer(s_irCache, IRSIZE);
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
347 s_dwIndex = 0;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
348 s_dwMax = dwEvents;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
349 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
350
6981
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
351 if (nLength == -2)
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
352 return (s_dwMax > 0) ? TRUE : FALSE;
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
353
5633
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
354 if (!win8_or_later)
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
355 {
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
356 if (nLength == -1)
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
357 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
358 return ReadConsoleInputW(hInput, lpBuffer, 1, &dwEvents);
5633
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
359 }
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
360
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
361 if (s_dwMax == 0)
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
362 {
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
363 if (!vtp_working && nLength == -1)
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
364 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
365 GetNumberOfConsoleInputEvents(hInput, &dwEvents);
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
366 if (dwEvents == 0 && nLength == -1)
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
367 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
368 ReadConsoleInputW(hInput, s_irCache, IRSIZE, &dwEvents);
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
369 s_dwIndex = 0;
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
370 s_dwMax = dwEvents;
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
371 if (dwEvents == 0)
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
372 {
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
373 *lpEvents = 0;
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
374 return TRUE;
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
375 }
5635
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
376
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
377 for (i = s_dwIndex; i < (int)s_dwMax - 1; ++i)
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
378 if (is_ambiwidth_event(&s_irCache[i]))
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
379 make_ambiwidth_event(&s_irCache[i], &s_irCache[i + 1]);
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
380
5635
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
381 if (s_dwMax > 1)
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
382 {
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
383 head = 0;
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
384 tail = s_dwMax - 1;
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
385 while (head != tail)
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
386 {
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
387 if (s_irCache[head].EventType == WINDOW_BUFFER_SIZE_EVENT
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
388 && s_irCache[head + 1].EventType
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
389 == WINDOW_BUFFER_SIZE_EVENT)
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
390 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
391 // Remove duplicate event to avoid flicker.
5635
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
392 for (i = head; i < tail; ++i)
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
393 s_irCache[i] = s_irCache[i + 1];
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
394 --tail;
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
395 continue;
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
396 }
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
397 head++;
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
398 }
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
399 s_dwMax = tail + 1;
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
400 }
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
401 }
5635
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
402
20183
5888cce49574 patch 8.2.0647: MS-Windows: repeat count for events was not used
Bram Moolenaar <Bram@vim.org>
parents: 20087
diff changeset
403 if (s_irCache[s_dwIndex].EventType == KEY_EVENT)
5888cce49574 patch 8.2.0647: MS-Windows: repeat count for events was not used
Bram Moolenaar <Bram@vim.org>
parents: 20087
diff changeset
404 {
5888cce49574 patch 8.2.0647: MS-Windows: repeat count for events was not used
Bram Moolenaar <Bram@vim.org>
parents: 20087
diff changeset
405 if (s_irCache[s_dwIndex].Event.KeyEvent.wRepeatCount > 1)
5888cce49574 patch 8.2.0647: MS-Windows: repeat count for events was not used
Bram Moolenaar <Bram@vim.org>
parents: 20087
diff changeset
406 {
5888cce49574 patch 8.2.0647: MS-Windows: repeat count for events was not used
Bram Moolenaar <Bram@vim.org>
parents: 20087
diff changeset
407 s_irPseudo = s_irCache[s_dwIndex];
5888cce49574 patch 8.2.0647: MS-Windows: repeat count for events was not used
Bram Moolenaar <Bram@vim.org>
parents: 20087
diff changeset
408 s_irPseudo.Event.KeyEvent.wRepeatCount = 1;
5888cce49574 patch 8.2.0647: MS-Windows: repeat count for events was not used
Bram Moolenaar <Bram@vim.org>
parents: 20087
diff changeset
409 s_irCache[s_dwIndex].Event.KeyEvent.wRepeatCount--;
5888cce49574 patch 8.2.0647: MS-Windows: repeat count for events was not used
Bram Moolenaar <Bram@vim.org>
parents: 20087
diff changeset
410 *lpBuffer = s_irPseudo;
5888cce49574 patch 8.2.0647: MS-Windows: repeat count for events was not used
Bram Moolenaar <Bram@vim.org>
parents: 20087
diff changeset
411 *lpEvents = 1;
5888cce49574 patch 8.2.0647: MS-Windows: repeat count for events was not used
Bram Moolenaar <Bram@vim.org>
parents: 20087
diff changeset
412 return TRUE;
5888cce49574 patch 8.2.0647: MS-Windows: repeat count for events was not used
Bram Moolenaar <Bram@vim.org>
parents: 20087
diff changeset
413 }
5888cce49574 patch 8.2.0647: MS-Windows: repeat count for events was not used
Bram Moolenaar <Bram@vim.org>
parents: 20087
diff changeset
414 }
5888cce49574 patch 8.2.0647: MS-Windows: repeat count for events was not used
Bram Moolenaar <Bram@vim.org>
parents: 20087
diff changeset
415
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
416 *lpBuffer = s_irCache[s_dwIndex];
6981
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
417 if (!(nLength == -1 || nLength == -2) && ++s_dwIndex >= s_dwMax)
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
418 s_dwMax = 0;
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
419 *lpEvents = 1;
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
420 return TRUE;
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
421 }
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
422
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
423 /*
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
424 * Version of PeekConsoleInput() that works with IME.
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
425 */
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
426 static BOOL
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
427 peek_console_input(
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
428 HANDLE hInput,
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
429 INPUT_RECORD *lpBuffer,
18139
59bc3cd42cf5 patch 8.1.2064: MS-Windows: compiler warnings for unused arguments
Bram Moolenaar <Bram@vim.org>
parents: 18133
diff changeset
430 DWORD nLength UNUSED,
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
431 LPDWORD lpEvents)
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
432 {
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29096
diff changeset
433 return read_console_input(hInput, lpBuffer, -1, lpEvents);
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
434 }
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
435
8090
54cfe888c627 commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents: 8084
diff changeset
436 # ifdef FEAT_CLIENTSERVER
6981
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
437 static DWORD
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
438 msg_wait_for_multiple_objects(
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
439 DWORD nCount,
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
440 LPHANDLE pHandles,
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
441 BOOL fWaitAll,
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
442 DWORD dwMilliseconds,
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
443 DWORD dwWakeMask)
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
444 {
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29096
diff changeset
445 if (read_console_input(NULL, NULL, -2, NULL))
6981
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
446 return WAIT_OBJECT_0;
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
447 return MsgWaitForMultipleObjects(nCount, pHandles, fWaitAll,
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
448 dwMilliseconds, dwWakeMask);
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
449 }
8090
54cfe888c627 commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents: 8084
diff changeset
450 # endif
54cfe888c627 commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents: 8084
diff changeset
451
54cfe888c627 commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents: 8084
diff changeset
452 # ifndef FEAT_CLIENTSERVER
6981
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
453 static DWORD
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
454 wait_for_single_object(
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
455 HANDLE hHandle,
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
456 DWORD dwMilliseconds)
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
457 {
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29096
diff changeset
458 if (read_console_input(NULL, NULL, -2, NULL))
6981
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
459 return WAIT_OBJECT_0;
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
460 return WaitForSingleObject(hHandle, dwMilliseconds);
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
461 }
8090
54cfe888c627 commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents: 8084
diff changeset
462 # endif
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
463 #endif // !FEAT_GUI_MSWIN || VIMDLL
6981
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
464
31962
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
465 void
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
466 mch_get_exe_name(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
467 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
468 // Maximum length of $PATH is more than MAXPATHL. 8191 is often mentioned
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
469 // as the maximum length that works (plus a NUL byte).
2630
0de47f0d731e updated for version 7.3.051
Bram Moolenaar <bram@vim.org>
parents: 2615
diff changeset
470 #define MAX_ENV_PATH_LEN 8192
0de47f0d731e updated for version 7.3.051
Bram Moolenaar <bram@vim.org>
parents: 2615
diff changeset
471 char temp[MAX_ENV_PATH_LEN];
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
472 char_u *p;
31962
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
473 WCHAR buf[MAX_PATH];
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
474 int updated = FALSE;
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
475 static int enc_prev = -1;
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
476
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
477 if (exe_name == NULL || exe_pathw == NULL || enc_prev != enc_codepage)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
478 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
479 // store the name of the executable, may be used for $VIM
31962
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
480 GetModuleFileNameW(NULL, buf, MAX_PATH);
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
481 if (*buf != NUL)
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
482 {
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
483 if (enc_codepage == -1)
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
484 enc_codepage = GetACP();
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
485 if (exe_name != NULL)
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
486 vim_free(exe_name);
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
487 exe_name = utf16_to_enc(buf, NULL);
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
488 enc_prev = enc_codepage;
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
489
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
490 WCHAR *wp = wcsrchr(buf, '\\');
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
491 if (wp != NULL)
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
492 *wp = NUL;
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
493 if (exe_pathw != NULL)
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
494 vim_free(exe_pathw);
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
495 exe_pathw = _wcsdup(buf);
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
496 updated = TRUE;
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
497 }
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
498 }
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
499
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
500 if (exe_pathw == NULL || !updated)
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
501 return;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
502
31962
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
503 char_u *exe_path = utf16_to_enc(exe_pathw, NULL);
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
504 if (exe_path == NULL)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
505 return;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
506
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
507 // Append our starting directory to $PATH, so that when doing
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
508 // "!xxd" it's found in our starting directory. Needed because
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
509 // SearchPath() also looks there.
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
510 p = mch_getenv("PATH");
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
511 if (p == NULL
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
512 || STRLEN(p) + STRLEN(exe_path) + 2 < MAX_ENV_PATH_LEN)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
513 {
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
514 if (p == NULL || *p == NUL)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
515 temp[0] = NUL;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
516 else
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
517 {
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
518 STRCPY(temp, p);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
519 STRCAT(temp, ";");
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
520 }
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
521 STRCAT(temp, exe_path);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
522 vim_setenv((char_u *)"PATH", (char_u *)temp);
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
523 }
31962
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
524 vim_free(exe_path);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
525 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
526
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
527 /*
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
528 * Unescape characters in "p" that appear in "escaped".
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
529 */
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
530 static void
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
531 unescape_shellxquote(char_u *p, char_u *escaped)
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
532 {
3386
cb2ae92ce106 updated for version 7.3.459
Bram Moolenaar <bram@vim.org>
parents: 3367
diff changeset
533 int l = (int)STRLEN(p);
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
534 int n;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
535
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
536 while (*p != NUL)
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
537 {
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
538 if (*p == '^' && vim_strchr(escaped, p[1]) != NULL)
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
539 mch_memmove(p, p + 1, l--);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
540 n = (*mb_ptr2len)(p);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
541 p += n;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
542 l -= n;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
543 }
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
544 }
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
545
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
546 /*
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
547 * Load library "name".
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
548 */
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
549 HINSTANCE
27657
a077948be0f4 patch 8.2.4354: dynamic loading of libsodium not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 27581
diff changeset
550 vimLoadLib(const char *name)
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
551 {
3902
d24d309c365f updated for version 7.3.707
Bram Moolenaar <bram@vim.org>
parents: 3889
diff changeset
552 HINSTANCE dll = NULL;
3889
48af86560945 updated for version 7.3.701
Bram Moolenaar <bram@vim.org>
parents: 3720
diff changeset
553
24563
30ad18017e1c patch 8.2.2821: MS-Windows: unnessarily loading libraries when registering OLE
Bram Moolenaar <Bram@vim.org>
parents: 24506
diff changeset
554 // No need to load any library when registering OLE.
30ad18017e1c patch 8.2.2821: MS-Windows: unnessarily loading libraries when registering OLE
Bram Moolenaar <Bram@vim.org>
parents: 24506
diff changeset
555 if (found_register_arg)
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
556 return NULL;
24563
30ad18017e1c patch 8.2.2821: MS-Windows: unnessarily loading libraries when registering OLE
Bram Moolenaar <Bram@vim.org>
parents: 24506
diff changeset
557
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
558 // NOTE: Do not use mch_dirname() and mch_chdir() here, they may call
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
559 // vimLoadLib() recursively, which causes a stack overflow.
31962
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
560 if (exe_pathw == NULL)
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
561 mch_get_exe_name();
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
562
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
563 if (exe_pathw == NULL)
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
564 return NULL;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
565
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
566 WCHAR old_dirw[MAXPATHL];
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
567
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
568 if (GetCurrentDirectoryW(MAXPATHL, old_dirw) == 0)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
569 return NULL;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
570
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
571 // Change directory to where the executable is, both to make
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
572 // sure we find a .dll there and to avoid looking for a .dll
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
573 // in the current directory.
31962
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
574 SetCurrentDirectoryW(exe_pathw);
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
575 dll = LoadLibrary(name);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
576 SetCurrentDirectoryW(old_dirw);
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
577 return dll;
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
578 }
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
579
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
580 #if defined(VIMDLL) || defined(PROTO)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
581 /*
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
582 * Check if the current executable file is for the GUI subsystem.
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
583 */
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
584 int
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
585 mch_is_gui_executable(void)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
586 {
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
587 PBYTE pImage = (PBYTE)GetModuleHandle(NULL);
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
588 PIMAGE_DOS_HEADER pDOS = (PIMAGE_DOS_HEADER)pImage;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
589 PIMAGE_NT_HEADERS pPE;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
590
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
591 if (pDOS->e_magic != IMAGE_DOS_SIGNATURE)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
592 return FALSE;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
593 pPE = (PIMAGE_NT_HEADERS)(pImage + pDOS->e_lfanew);
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
594 if (pPE->Signature != IMAGE_NT_SIGNATURE)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
595 return FALSE;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
596 if (pPE->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
597 return TRUE;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
598 return FALSE;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
599 }
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
600 #endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
601
27581
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
602 #if defined(DYNAMIC_ICONV) || defined(DYNAMIC_GETTEXT) \
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
603 || defined(FEAT_PYTHON3) || defined(PROTO)
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
604 /*
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
605 * Get related information about 'funcname' which is imported by 'hInst'.
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
606 * If 'info' is 0, return the function address.
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
607 * If 'info' is 1, return the module name which the function is imported from.
27581
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
608 * If 'info' is 2, hook the function with 'ptr', and return the original
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
609 * function address.
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
610 */
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
611 static void *
27581
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
612 get_imported_func_info(HINSTANCE hInst, const char *funcname, int info,
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
613 const void *ptr)
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
614 {
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
615 PBYTE pImage = (PBYTE)hInst;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
616 PIMAGE_DOS_HEADER pDOS = (PIMAGE_DOS_HEADER)hInst;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
617 PIMAGE_NT_HEADERS pPE;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
618 PIMAGE_IMPORT_DESCRIPTOR pImpDesc;
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
619 PIMAGE_THUNK_DATA pIAT; // Import Address Table
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
620 PIMAGE_THUNK_DATA pINT; // Import Name Table
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
621 PIMAGE_IMPORT_BY_NAME pImpName;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
622
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
623 if (pDOS->e_magic != IMAGE_DOS_SIGNATURE)
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
624 return NULL;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
625 pPE = (PIMAGE_NT_HEADERS)(pImage + pDOS->e_lfanew);
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
626 if (pPE->Signature != IMAGE_NT_SIGNATURE)
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
627 return NULL;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
628 pImpDesc = (PIMAGE_IMPORT_DESCRIPTOR)(pImage
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
629 + pPE->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_IMPORT]
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
630 .VirtualAddress);
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
631 for (; pImpDesc->FirstThunk; ++pImpDesc)
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
632 {
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
633 if (!pImpDesc->OriginalFirstThunk)
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
634 continue;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
635 pIAT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->FirstThunk);
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
636 pINT = (PIMAGE_THUNK_DATA)(pImage + pImpDesc->OriginalFirstThunk);
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
637 for (; pIAT->u1.Function; ++pIAT, ++pINT)
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
638 {
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
639 if (IMAGE_SNAP_BY_ORDINAL(pINT->u1.Ordinal))
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
640 continue;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
641 pImpName = (PIMAGE_IMPORT_BY_NAME)(pImage
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
642 + (UINT_PTR)(pINT->u1.AddressOfData));
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
643 if (strcmp((char *)pImpName->Name, funcname) == 0)
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
644 {
27581
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
645 void *original;
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
646 DWORD old, new = PAGE_READWRITE;
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
647
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
648 switch (info)
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
649 {
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
650 case 0:
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
651 return (void *)pIAT->u1.Function;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
652 case 1:
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
653 return (void *)(pImage + pImpDesc->Name);
27581
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
654 case 2:
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
655 original = (void *)pIAT->u1.Function;
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
656 VirtualProtect(&pIAT->u1.Function, sizeof(void *),
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
657 new, &old);
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
658 pIAT->u1.Function = (UINT_PTR)ptr;
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
659 VirtualProtect(&pIAT->u1.Function, sizeof(void *),
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
660 old, &new);
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
661 return original;
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
662 default:
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
663 return NULL;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
664 }
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
665 }
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
666 }
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
667 }
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
668 return NULL;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
669 }
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
670
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
671 /*
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
672 * Get the module handle which 'funcname' in 'hInst' is imported from.
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
673 */
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
674 HINSTANCE
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
675 find_imported_module_by_funcname(HINSTANCE hInst, const char *funcname)
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
676 {
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
677 char *modulename;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
678
27581
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
679 modulename = (char *)get_imported_func_info(hInst, funcname, 1, NULL);
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
680 if (modulename != NULL)
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
681 return GetModuleHandleA(modulename);
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
682 return NULL;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
683 }
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
684
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
685 /*
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
686 * Get the address of 'funcname' which is imported by 'hInst' DLL.
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
687 */
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
688 void *
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
689 get_dll_import_func(HINSTANCE hInst, const char *funcname)
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
690 {
27581
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
691 return get_imported_func_info(hInst, funcname, 0, NULL);
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
692 }
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
693
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
694 /*
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
695 * Hook the function named 'funcname' which is imported by 'hInst' DLL,
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
696 * and return the original function address.
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
697 */
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
698 void *
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
699 hook_dll_import_func(HINSTANCE hInst, const char *funcname, const void *hook)
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
700 {
78e3b38b0d33 patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents: 27533
diff changeset
701 return get_imported_func_info(hInst, funcname, 2, hook);
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
702 }
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
703 #endif
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
704
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
705 #if defined(DYNAMIC_GETTEXT) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
706 # ifndef GETTEXT_DLL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
707 # define GETTEXT_DLL "libintl.dll"
14881
35aff6b8a2c7 patch 8.1.0452: MS-Windows: not finding intl.dll
Bram Moolenaar <Bram@vim.org>
parents: 14879
diff changeset
708 # define GETTEXT_DLL_ALT1 "libintl-8.dll"
35aff6b8a2c7 patch 8.1.0452: MS-Windows: not finding intl.dll
Bram Moolenaar <Bram@vim.org>
parents: 14879
diff changeset
709 # define GETTEXT_DLL_ALT2 "intl.dll"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
710 # endif
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
711 // Dummy functions
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
712 static char *null_libintl_gettext(const char *);
9754
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
713 static char *null_libintl_ngettext(const char *, const char *, unsigned long n);
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
714 static char *null_libintl_textdomain(const char *);
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
715 static char *null_libintl_bindtextdomain(const char *, const char *);
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
716 static char *null_libintl_bind_textdomain_codeset(const char *, const char *);
10781
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
717 static int null_libintl_wputenv(const wchar_t *);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
718
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
719 static HINSTANCE hLibintlDLL = NULL;
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
720 char *(*dyn_libintl_gettext)(const char *) = null_libintl_gettext;
9754
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
721 char *(*dyn_libintl_ngettext)(const char *, const char *, unsigned long n)
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
722 = null_libintl_ngettext;
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
723 char *(*dyn_libintl_textdomain)(const char *) = null_libintl_textdomain;
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
724 char *(*dyn_libintl_bindtextdomain)(const char *, const char *)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
725 = null_libintl_bindtextdomain;
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
726 char *(*dyn_libintl_bind_textdomain_codeset)(const char *, const char *)
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
727 = null_libintl_bind_textdomain_codeset;
10781
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
728 int (*dyn_libintl_wputenv)(const wchar_t *) = null_libintl_wputenv;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
729
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
730 int
7833
c079097365f3 commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents: 7797
diff changeset
731 dyn_libintl_init(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
732 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
733 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
734 static struct
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
735 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
736 char *name;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
737 FARPROC *ptr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
738 } libintl_entry[] =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
739 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
740 {"gettext", (FARPROC*)&dyn_libintl_gettext},
9754
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
741 {"ngettext", (FARPROC*)&dyn_libintl_ngettext},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
742 {"textdomain", (FARPROC*)&dyn_libintl_textdomain},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
743 {"bindtextdomain", (FARPROC*)&dyn_libintl_bindtextdomain},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
744 {NULL, NULL}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
745 };
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
746 HINSTANCE hmsvcrt;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
747
14881
35aff6b8a2c7 patch 8.1.0452: MS-Windows: not finding intl.dll
Bram Moolenaar <Bram@vim.org>
parents: 14879
diff changeset
748 // No need to initialize twice.
35aff6b8a2c7 patch 8.1.0452: MS-Windows: not finding intl.dll
Bram Moolenaar <Bram@vim.org>
parents: 14879
diff changeset
749 if (hLibintlDLL != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
750 return 1;
14881
35aff6b8a2c7 patch 8.1.0452: MS-Windows: not finding intl.dll
Bram Moolenaar <Bram@vim.org>
parents: 14879
diff changeset
751 // Load gettext library (libintl.dll and other names).
7784
29d4ee3f009a commit https://github.com/vim/vim/commit/923e43b837ca4c8edb7998743f142823eaeaf588
Christian Brabandt <cb@256bit.org>
parents: 7734
diff changeset
752 hLibintlDLL = vimLoadLib(GETTEXT_DLL);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
753 # ifdef GETTEXT_DLL_ALT1
7613
4456fa2d22e8 commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents: 7460
diff changeset
754 if (!hLibintlDLL)
14881
35aff6b8a2c7 patch 8.1.0452: MS-Windows: not finding intl.dll
Bram Moolenaar <Bram@vim.org>
parents: 14879
diff changeset
755 hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT1);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
756 # endif
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
757 # ifdef GETTEXT_DLL_ALT2
14881
35aff6b8a2c7 patch 8.1.0452: MS-Windows: not finding intl.dll
Bram Moolenaar <Bram@vim.org>
parents: 14879
diff changeset
758 if (!hLibintlDLL)
35aff6b8a2c7 patch 8.1.0452: MS-Windows: not finding intl.dll
Bram Moolenaar <Bram@vim.org>
parents: 14879
diff changeset
759 hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT2);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
760 # endif
7734
616769d423fc commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents: 7668
diff changeset
761 if (!hLibintlDLL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
762 {
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
763 if (p_verbose > 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
764 {
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
765 verbose_enter();
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
766 semsg(_(e_could_not_load_library_str_str), GETTEXT_DLL, GetWin32Error());
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
767 verbose_leave();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
768 }
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
769 return 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
770 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
771 for (i = 0; libintl_entry[i].name != NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
772 && libintl_entry[i].ptr != NULL; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
773 {
27523
4c7bb6fd383f patch 8.2.4289: warnings reported by MSVC
Bram Moolenaar <Bram@vim.org>
parents: 27521
diff changeset
774 if ((*libintl_entry[i].ptr = GetProcAddress(hLibintlDLL,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
775 libintl_entry[i].name)) == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
776 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
777 dyn_libintl_end();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
778 if (p_verbose > 0)
292
bf6ee000a80c updated for version 7.0077
vimboss
parents: 203
diff changeset
779 {
bf6ee000a80c updated for version 7.0077
vimboss
parents: 203
diff changeset
780 verbose_enter();
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
781 semsg(_(e_could_not_load_library_function_str), libintl_entry[i].name);
292
bf6ee000a80c updated for version 7.0077
vimboss
parents: 203
diff changeset
782 verbose_leave();
bf6ee000a80c updated for version 7.0077
vimboss
parents: 203
diff changeset
783 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
784 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
785 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
786 }
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
787
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
788 // The bind_textdomain_codeset() function is optional.
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29096
diff changeset
789 dyn_libintl_bind_textdomain_codeset = (char *(*)(const char *, const char *))
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29096
diff changeset
790 GetProcAddress(hLibintlDLL, "bind_textdomain_codeset");
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
791 if (dyn_libintl_bind_textdomain_codeset == NULL)
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
792 dyn_libintl_bind_textdomain_codeset =
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
793 null_libintl_bind_textdomain_codeset;
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
794
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
795 // _wputenv() function for the libintl.dll is optional.
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
796 hmsvcrt = find_imported_module_by_funcname(hLibintlDLL, "getenv");
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
797 if (hmsvcrt != NULL)
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29096
diff changeset
798 dyn_libintl_wputenv = (int (*)(const wchar_t *))
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29096
diff changeset
799 GetProcAddress(hmsvcrt, "_wputenv");
10781
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
800 if (dyn_libintl_wputenv == NULL || dyn_libintl_wputenv == _wputenv)
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
801 dyn_libintl_wputenv = null_libintl_wputenv;
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
802
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
803 return 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
804 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
805
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
806 void
7833
c079097365f3 commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents: 7797
diff changeset
807 dyn_libintl_end(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
808 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
809 if (hLibintlDLL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
810 FreeLibrary(hLibintlDLL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
811 hLibintlDLL = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
812 dyn_libintl_gettext = null_libintl_gettext;
9754
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
813 dyn_libintl_ngettext = null_libintl_ngettext;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
814 dyn_libintl_textdomain = null_libintl_textdomain;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
815 dyn_libintl_bindtextdomain = null_libintl_bindtextdomain;
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
816 dyn_libintl_bind_textdomain_codeset = null_libintl_bind_textdomain_codeset;
10781
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
817 dyn_libintl_wputenv = null_libintl_wputenv;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
818 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
819
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
820 static char *
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
821 null_libintl_gettext(const char *msgid)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
822 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
823 return (char*)msgid;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
824 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
825
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
826 static char *
9754
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
827 null_libintl_ngettext(
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
828 const char *msgid,
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
829 const char *msgid_plural,
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
830 unsigned long n)
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
831 {
9762
93dcc4329c74 commit https://github.com/vim/vim/commit/c90f2aedd0a5dc2cc75bc9b5f475f8a3e3fe36b1
Christian Brabandt <cb@256bit.org>
parents: 9754
diff changeset
832 return (char *)(n == 1 ? msgid : msgid_plural);
9754
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
833 }
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
834
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
835 static char *
10783
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
836 null_libintl_bindtextdomain(
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
837 const char *domainname UNUSED,
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
838 const char *dirname UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
839 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
840 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
841 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
842
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
843 static char *
10783
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
844 null_libintl_bind_textdomain_codeset(
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
845 const char *domainname UNUSED,
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
846 const char *codeset UNUSED)
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
847 {
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
848 return NULL;
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
849 }
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
850
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
851 static char *
10783
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
852 null_libintl_textdomain(const char *domainname UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
853 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
854 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
855 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
856
11929
3457728d1a58 patch 8.0.0844: wrong function prototype because of missing static
Christian Brabandt <cb@256bit.org>
parents: 11921
diff changeset
857 static int
10783
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
858 null_libintl_wputenv(const wchar_t *envstring UNUSED)
10781
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
859 {
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
860 return 0;
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
861 }
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
862
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
863 #endif // DYNAMIC_GETTEXT
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
864
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
865 // This symbol is not defined in older versions of the SDK or Visual C++
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
866
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
867 #ifndef VER_PLATFORM_WIN32_WINDOWS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
868 # define VER_PLATFORM_WIN32_WINDOWS 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
869 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
870
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
871 #ifdef HAVE_ACL
3927
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
872 # ifndef PROTO
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
873 # include <aclapi.h>
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
874 # endif
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
875 # ifndef PROTECTED_DACL_SECURITY_INFORMATION
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
876 # define PROTECTED_DACL_SECURITY_INFORMATION 0x80000000L
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
877 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
878 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
879
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
880 #ifdef HAVE_ACL
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
881 /*
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
882 * Enables or disables the specified privilege.
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
883 */
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
884 static BOOL
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
885 win32_enable_privilege(LPTSTR lpszPrivilege, BOOL bEnable)
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
886 {
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
887 BOOL bResult;
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
888 LUID luid;
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
889 HANDLE hToken;
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
890 TOKEN_PRIVILEGES tokenPrivileges;
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
891
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
892 if (!OpenProcessToken(GetCurrentProcess(),
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
893 TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken))
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
894 return FALSE;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
895
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
896 if (!LookupPrivilegeValue(NULL, lpszPrivilege, &luid))
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
897 {
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
898 CloseHandle(hToken);
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
899 return FALSE;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
900 }
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
901
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 5782
diff changeset
902 tokenPrivileges.PrivilegeCount = 1;
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
903 tokenPrivileges.Privileges[0].Luid = luid;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
904 tokenPrivileges.Privileges[0].Attributes = bEnable ?
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
905 SE_PRIVILEGE_ENABLED : 0;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
906
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
907 bResult = AdjustTokenPrivileges(hToken, FALSE, &tokenPrivileges,
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
908 sizeof(TOKEN_PRIVILEGES), NULL, NULL);
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
909
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
910 CloseHandle(hToken);
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
911
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
912 return bResult && GetLastError() == ERROR_SUCCESS;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
913 }
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
914 #endif
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
915
23090
fb27d3a7a24b patch 8.2.2091: MS-Windows: build warnings
Bram Moolenaar <Bram@vim.org>
parents: 23060
diff changeset
916 #ifdef _MSC_VER
fb27d3a7a24b patch 8.2.2091: MS-Windows: build warnings
Bram Moolenaar <Bram@vim.org>
parents: 23060
diff changeset
917 // Suppress the deprecation warning for using GetVersionEx().
fb27d3a7a24b patch 8.2.2091: MS-Windows: build warnings
Bram Moolenaar <Bram@vim.org>
parents: 23060
diff changeset
918 // It is needed for implementing "windowsversion()".
fb27d3a7a24b patch 8.2.2091: MS-Windows: build warnings
Bram Moolenaar <Bram@vim.org>
parents: 23060
diff changeset
919 # pragma warning(push)
fb27d3a7a24b patch 8.2.2091: MS-Windows: build warnings
Bram Moolenaar <Bram@vim.org>
parents: 23060
diff changeset
920 # pragma warning(disable: 4996)
fb27d3a7a24b patch 8.2.2091: MS-Windows: build warnings
Bram Moolenaar <Bram@vim.org>
parents: 23060
diff changeset
921 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
922 /*
20478
af8feeaf167a patch 8.2.0793: MS-Windows: cannot build GUI with small features
Bram Moolenaar <Bram@vim.org>
parents: 20439
diff changeset
923 * Set "win8_or_later" and fill in "windowsVersion" if possible.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
924 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
925 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
926 PlatformId(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
927 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
928 static int done = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
929
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
930 if (done)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
931 return;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
932
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
933 OSVERSIONINFO ovi;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
934
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
935 ovi.dwOSVersionInfoSize = sizeof(ovi);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
936 GetVersionEx(&ovi);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
937
20478
af8feeaf167a patch 8.2.0793: MS-Windows: cannot build GUI with small features
Bram Moolenaar <Bram@vim.org>
parents: 20439
diff changeset
938 #ifdef FEAT_EVAL
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
939 vim_snprintf(windowsVersion, sizeof(windowsVersion), "%d.%d",
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
940 (int)ovi.dwMajorVersion, (int)ovi.dwMinorVersion);
20478
af8feeaf167a patch 8.2.0793: MS-Windows: cannot build GUI with small features
Bram Moolenaar <Bram@vim.org>
parents: 20439
diff changeset
941 #endif
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
942 if ((ovi.dwMajorVersion == 6 && ovi.dwMinorVersion >= 2)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
943 || ovi.dwMajorVersion > 6)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
944 win8_or_later = TRUE;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
945
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
946 if ((ovi.dwMajorVersion == 10 && ovi.dwBuildNumber >= 19045)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
947 || ovi.dwMajorVersion > 10)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
948 win10_22H2_or_later = TRUE;
31067
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
949
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
950 #ifdef HAVE_ACL
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
951 // Enable privilege for getting or setting SACLs.
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
952 win32_enable_privilege(SE_SECURITY_NAME, TRUE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
953 #endif
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
954 done = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
955 }
23090
fb27d3a7a24b patch 8.2.2091: MS-Windows: build warnings
Bram Moolenaar <Bram@vim.org>
parents: 23060
diff changeset
956 #ifdef _MSC_VER
fb27d3a7a24b patch 8.2.2091: MS-Windows: build warnings
Bram Moolenaar <Bram@vim.org>
parents: 23060
diff changeset
957 # pragma warning(pop)
fb27d3a7a24b patch 8.2.2091: MS-Windows: build warnings
Bram Moolenaar <Bram@vim.org>
parents: 23060
diff changeset
958 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
959
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
960 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
961
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
962 # define SHIFT (SHIFT_PRESSED)
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
963 # define CTRL (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED)
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
964 # define ALT (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED)
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
965 # define ALT_GR (RIGHT_ALT_PRESSED | LEFT_CTRL_PRESSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
966
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
967
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
968 // When uChar.AsciiChar is 0, then we need to look at wVirtualKeyCode.
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
969 // We map function keys to their ANSI terminal equivalents, as produced
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
970 // by ANSI.SYS, for compatibility with the MS-DOS version of Vim. Any
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
971 // ANSI key with a value >= '\300' is nonstandard, but provided anyway
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
972 // so that the user can have access to all SHIFT-, CTRL-, and ALT-
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
973 // combinations of function/arrow/etc keys.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
974
297
9a1c2a8186b7 updated for version 7.0078
vimboss
parents: 292
diff changeset
975 static const struct
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
976 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
977 WORD wVirtKey;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
978 BOOL fAnsiKey;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
979 int chAlone;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
980 int chShift;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
981 int chCtrl;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
982 int chAlt;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
983 } VirtKeyMap[] =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
984 {
14891
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
985 // Key ANSI alone shift ctrl alt
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
986 { VK_ESCAPE,FALSE, ESC, ESC, ESC, ESC, },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
987
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
988 { VK_F1, TRUE, ';', 'T', '^', 'h', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
989 { VK_F2, TRUE, '<', 'U', '_', 'i', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
990 { VK_F3, TRUE, '=', 'V', '`', 'j', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
991 { VK_F4, TRUE, '>', 'W', 'a', 'k', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
992 { VK_F5, TRUE, '?', 'X', 'b', 'l', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
993 { VK_F6, TRUE, '@', 'Y', 'c', 'm', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
994 { VK_F7, TRUE, 'A', 'Z', 'd', 'n', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
995 { VK_F8, TRUE, 'B', '[', 'e', 'o', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
996 { VK_F9, TRUE, 'C', '\\', 'f', 'p', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
997 { VK_F10, TRUE, 'D', ']', 'g', 'q', },
14891
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
998 { VK_F11, TRUE, '\205', '\207', '\211', '\213', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
999 { VK_F12, TRUE, '\206', '\210', '\212', '\214', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1000
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1001 { VK_HOME, TRUE, 'G', '\302', 'w', '\303', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1002 { VK_UP, TRUE, 'H', '\304', '\305', '\306', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1003 { VK_PRIOR, TRUE, 'I', '\307', '\204', '\310', }, // PgUp
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1004 { VK_LEFT, TRUE, 'K', '\311', 's', '\312', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1005 { VK_RIGHT, TRUE, 'M', '\313', 't', '\314', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1006 { VK_END, TRUE, 'O', '\315', 'u', '\316', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1007 { VK_DOWN, TRUE, 'P', '\317', '\320', '\321', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1008 { VK_NEXT, TRUE, 'Q', '\322', 'v', '\323', }, // PgDn
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1009 { VK_INSERT,TRUE, 'R', '\324', '\325', '\326', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1010 { VK_DELETE,TRUE, 'S', '\327', '\330', '\331', },
16182
bed0d7200635 patch 8.1.1096: MS-Windows: cannot distinguish BS and CTRL-H
Bram Moolenaar <Bram@vim.org>
parents: 16180
diff changeset
1011 { VK_BACK, TRUE, 'x', 'y', 'z', '{', }, // Backspace
14891
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1012
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1013 { VK_SNAPSHOT,TRUE, 0, 0, 0, 'r', }, // PrtScrn
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1014
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
1015 # if 0
14891
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1016 // Most people don't have F13-F20, but what the hell...
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1017 { VK_F13, TRUE, '\332', '\333', '\334', '\335', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1018 { VK_F14, TRUE, '\336', '\337', '\340', '\341', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1019 { VK_F15, TRUE, '\342', '\343', '\344', '\345', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1020 { VK_F16, TRUE, '\346', '\347', '\350', '\351', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1021 { VK_F17, TRUE, '\352', '\353', '\354', '\355', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1022 { VK_F18, TRUE, '\356', '\357', '\360', '\361', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1023 { VK_F19, TRUE, '\362', '\363', '\364', '\365', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1024 { VK_F20, TRUE, '\366', '\367', '\370', '\371', },
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
1025 # endif
14891
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1026 { VK_ADD, TRUE, 'N', 'N', 'N', 'N', }, // keyp '+'
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1027 { VK_SUBTRACT, TRUE,'J', 'J', 'J', 'J', }, // keyp '-'
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1028 // { VK_DIVIDE, TRUE,'N', 'N', 'N', 'N', }, // keyp '/'
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1029 { VK_MULTIPLY, TRUE,'7', '7', '7', '7', }, // keyp '*'
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1030
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1031 { VK_NUMPAD0,TRUE, '\332', '\333', '\334', '\335', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1032 { VK_NUMPAD1,TRUE, '\336', '\337', '\340', '\341', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1033 { VK_NUMPAD2,TRUE, '\342', '\343', '\344', '\345', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1034 { VK_NUMPAD3,TRUE, '\346', '\347', '\350', '\351', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1035 { VK_NUMPAD4,TRUE, '\352', '\353', '\354', '\355', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1036 { VK_NUMPAD5,TRUE, '\356', '\357', '\360', '\361', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1037 { VK_NUMPAD6,TRUE, '\362', '\363', '\364', '\365', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1038 { VK_NUMPAD7,TRUE, '\366', '\367', '\370', '\371', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1039 { VK_NUMPAD8,TRUE, '\372', '\373', '\374', '\375', },
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
1040 // Sorry, out of number space! <negri>
16182
bed0d7200635 patch 8.1.1096: MS-Windows: cannot distinguish BS and CTRL-H
Bram Moolenaar <Bram@vim.org>
parents: 16180
diff changeset
1041 { VK_NUMPAD9,TRUE, '\376', '\377', '|', '}', },
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1042 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1043
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1044
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1045 /*
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1046 * The return code indicates key code size.
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1047 */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1048 static int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1049 win32_kbd_patch_key(
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
1050 KEY_EVENT_RECORD *pker)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1051 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1052 UINT uMods = pker->dwControlKeyState;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1053 static int s_iIsDead = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1054 static WORD awAnsiCode[2];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1055 static BYTE abKeystate[256];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1056
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1057
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1058 if (s_iIsDead == 2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1059 {
27533
4f1c67a5f446 patch 8.2.4294: MS-Windows: #ifdefs for Cygwin are too complicated
Bram Moolenaar <Bram@vim.org>
parents: 27523
diff changeset
1060 pker->uChar.UnicodeChar = (WCHAR) awAnsiCode[1];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1061 s_iIsDead = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1062 return 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1063 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1064
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1065 // check if it already has a valid unicode character.
31674
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1066 if (pker->uChar.UnicodeChar != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1067 return 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1068
20007
aadd1cae2ff5 patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents: 19983
diff changeset
1069 CLEAR_FIELD(abKeystate);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1070
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1071 // Clear any pending dead keys
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1072 ToUnicode(VK_SPACE, MapVirtualKey(VK_SPACE, 0), abKeystate, awAnsiCode, 2, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1073
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1074 if (uMods & SHIFT_PRESSED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1075 abKeystate[VK_SHIFT] = 0x80;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1076 if (uMods & CAPSLOCK_ON)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1077 abKeystate[VK_CAPITAL] = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1078
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1079 if ((uMods & ALT_GR) == ALT_GR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1080 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1081 abKeystate[VK_CONTROL] = abKeystate[VK_LCONTROL] =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1082 abKeystate[VK_MENU] = abKeystate[VK_RMENU] = 0x80;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1083 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1084
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1085 s_iIsDead = ToUnicode(pker->wVirtualKeyCode, pker->wVirtualScanCode,
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1086 abKeystate, awAnsiCode, 2, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1087
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1088 if (s_iIsDead > 0)
27533
4f1c67a5f446 patch 8.2.4294: MS-Windows: #ifdefs for Cygwin are too complicated
Bram Moolenaar <Bram@vim.org>
parents: 27523
diff changeset
1089 pker->uChar.UnicodeChar = (WCHAR) awAnsiCode[0];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1090
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1091 return s_iIsDead;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1092 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1093
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1094 static BOOL g_fJustGotFocus = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1095
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1096 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1097 * Decode a KEY_EVENT into one or two keystrokes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1098 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1099 static BOOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1100 decode_key_event(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1101 KEY_EVENT_RECORD *pker,
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1102 WCHAR *pch,
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1103 WCHAR *pch2,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1104 int *pmodifiers,
18139
59bc3cd42cf5 patch 8.1.2064: MS-Windows: compiler warnings for unused arguments
Bram Moolenaar <Bram@vim.org>
parents: 18133
diff changeset
1105 BOOL fDoPost UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1106 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1107 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1108 const int nModifs = pker->dwControlKeyState & (SHIFT | ALT | CTRL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1109
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1110 *pch = *pch2 = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1111 g_fJustGotFocus = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1112
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1113 // ignore key up events
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1114 if (!pker->bKeyDown)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1115 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1116
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1117 // ignore some keystrokes
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1118 switch (pker->wVirtualKeyCode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1119 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1120 // modifiers
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1121 case VK_SHIFT:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1122 case VK_CONTROL:
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1123 case VK_MENU: // Alt key
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1124 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1125
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1126 default:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1127 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1128 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1129
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1130 // Shift-TAB
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1131 if (pker->wVirtualKeyCode == VK_TAB && (nModifs & SHIFT_PRESSED))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1132 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1133 *pch = K_NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1134 *pch2 = '\017';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1135 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1136 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1137
24768
7334bf933510 patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents: 24749
diff changeset
1138 for (i = ARRAY_LENGTH(VirtKeyMap); --i >= 0; )
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1139 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1140 if (VirtKeyMap[i].wVirtKey == pker->wVirtualKeyCode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1141 {
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1142 *pch = VirtKeyMap[i].chAlone;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1143 if ((nModifs & SHIFT) != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1144 *pch = VirtKeyMap[i].chShift;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1145 else if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1146 *pch = VirtKeyMap[i].chCtrl;
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1147 else if ((nModifs & ALT) != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1148 *pch = VirtKeyMap[i].chAlt;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1149
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1150 if (*pch != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1151 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1152 if (VirtKeyMap[i].fAnsiKey)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1153 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1154 *pch2 = *pch;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1155 *pch = K_NUL;
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1156 if (pmodifiers)
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1157 {
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1158 if (pker->wVirtualKeyCode >= VK_F1
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1159 && pker->wVirtualKeyCode <= VK_F12)
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1160 {
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1161 if ((nModifs & ALT) != 0)
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1162 {
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1163 *pmodifiers |= MOD_MASK_ALT;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1164 if ((nModifs & SHIFT) == 0)
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1165 *pch2 = VirtKeyMap[i].chAlone;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1166 }
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1167 if ((nModifs & CTRL) != 0)
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1168 {
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1169 *pmodifiers |= MOD_MASK_CTRL;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1170 if ((nModifs & SHIFT) == 0)
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1171 *pch2 = VirtKeyMap[i].chAlone;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1172 }
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1173 }
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1174 else if (pker->wVirtualKeyCode >= VK_END
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1175 && pker->wVirtualKeyCode <= VK_DOWN)
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1176 {
31674
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1177 // (0x23 - 0x28): VK_END, VK_HOME,
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1178 // VK_LEFT, VK_UP, VK_RIGHT, VK_DOWN
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1179
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1180 *pmodifiers = 0;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1181 *pch2 = VirtKeyMap[i].chAlone;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1182 if ((nModifs & SHIFT) != 0
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1183 && (nModifs & ~SHIFT) == 0)
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1184 {
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1185 *pch2 = VirtKeyMap[i].chShift;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1186 }
31674
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1187 if ((nModifs & CTRL) != 0
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1188 && (nModifs & ~CTRL) == 0)
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1189 {
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1190 *pch2 = VirtKeyMap[i].chCtrl;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1191 if (pker->wVirtualKeyCode == VK_UP
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1192 || pker->wVirtualKeyCode == VK_DOWN)
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1193 {
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1194 *pmodifiers |= MOD_MASK_CTRL;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1195 *pch2 = VirtKeyMap[i].chAlone;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1196 }
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1197 }
31674
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1198 if ((nModifs & SHIFT) != 0
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1199 && (nModifs & CTRL) != 0)
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1200 {
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1201 *pmodifiers |= MOD_MASK_CTRL;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1202 *pch2 = VirtKeyMap[i].chShift;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1203 }
31674
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1204 if ((nModifs & ALT) != 0)
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1205 {
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1206 *pch2 = VirtKeyMap[i].chAlt;
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1207 *pmodifiers |= MOD_MASK_ALT;
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1208 if ((nModifs & ~ALT) == 0)
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1209 {
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1210 *pch2 = VirtKeyMap[i].chAlone;
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1211 }
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1212 else if ((nModifs & SHIFT) != 0)
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1213 {
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1214 *pch2 = VirtKeyMap[i].chShift;
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1215 }
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1216 else if ((nModifs & CTRL) != 0)
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1217 {
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1218 if (pker->wVirtualKeyCode == VK_UP
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1219 || pker->wVirtualKeyCode == VK_DOWN)
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1220 {
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1221 *pmodifiers |= MOD_MASK_CTRL;
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1222 *pch2 = VirtKeyMap[i].chAlone;
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1223 }
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1224 else
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1225 {
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1226 *pch2 = VirtKeyMap[i].chCtrl;
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1227 }
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1228 }
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1229 }
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1230 }
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1231 else
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1232 {
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1233 *pch2 = VirtKeyMap[i].chAlone;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1234 if ((nModifs & SHIFT) != 0)
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1235 *pmodifiers |= MOD_MASK_SHIFT;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1236 if ((nModifs & CTRL) != 0)
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1237 *pmodifiers |= MOD_MASK_CTRL;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1238 if ((nModifs & ALT) != 0)
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1239 *pmodifiers |= MOD_MASK_ALT;
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1240 }
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1241 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1242 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1243
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1244 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1245 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1246 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1247 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1248
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1249 i = win32_kbd_patch_key(pker);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1250
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1251 if (i < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1252 *pch = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1253 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1254 {
27533
4f1c67a5f446 patch 8.2.4294: MS-Windows: #ifdefs for Cygwin are too complicated
Bram Moolenaar <Bram@vim.org>
parents: 27523
diff changeset
1255 *pch = (i > 0) ? pker->uChar.UnicodeChar : NUL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1256
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1257 if (pmodifiers != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1258 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1259 // Pass on the ALT key as a modifier, but only when not combined
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1260 // with CTRL (which is ALTGR).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1261 if ((nModifs & ALT) != 0 && (nModifs & CTRL) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1262 *pmodifiers |= MOD_MASK_ALT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1263
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1264 // Pass on SHIFT only for special keys, because we don't know when
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1265 // it's already included with the character.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1266 if ((nModifs & SHIFT) != 0 && *pch <= 0x20)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1267 *pmodifiers |= MOD_MASK_SHIFT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1268
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1269 // Pass on CTRL only for non-special keys, because we don't know
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1270 // when it's already included with the character. And not when
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1271 // combined with ALT (which is ALTGR).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1272 if ((nModifs & CTRL) != 0 && (nModifs & ALT) == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1273 && *pch >= 0x20 && *pch < 0x80)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1274 *pmodifiers |= MOD_MASK_CTRL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1275 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1276 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1277
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1278 return (*pch != NUL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1279 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1280
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1281 # if defined(FEAT_EVAL)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1282 static int
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1283 encode_key_event(dict_T *args, INPUT_RECORD *ir)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1284 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1285 static int s_dwMods = 0;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1286
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1287 char_u *action = dict_get_string(args, "event", TRUE);
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1288 if (action && (STRICMP(action, "keydown") == 0
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1289 || STRICMP(action, "keyup") == 0))
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1290 {
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1291 BOOL isKeyDown = STRICMP(action, "keydown") == 0;
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1292 WORD vkCode = dict_get_number_def(args, "keycode", 0);
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1293 if (vkCode <= 0 || vkCode >= 0xFF)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1294 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1295 semsg(_(e_invalid_argument_nr), (long)vkCode);
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1296 return FALSE;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1297 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1298
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1299 ir->EventType = KEY_EVENT;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1300 KEY_EVENT_RECORD ker;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1301 ZeroMemory(&ker, sizeof(ker));
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1302 ker.bKeyDown = isKeyDown;
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1303 ker.wRepeatCount = 1;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1304 ker.wVirtualScanCode = 0;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1305 ker.dwControlKeyState = 0;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1306 int mods = (int)dict_get_number(args, "modifiers");
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1307 // Encode the win32 console key modifiers from Vim keyboard modifiers.
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1308 if (mods)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1309 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1310 // If "modifiers" is explicitly set in the args, then we reset any
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1311 // remembered modifer key state that may have been set from earlier
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1312 // mod-key-down events, even if they are not yet unset by earlier
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1313 // mod-key-up events.
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1314 s_dwMods = 0;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1315 if (mods & MOD_MASK_SHIFT)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1316 ker.dwControlKeyState |= SHIFT_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1317 if (mods & MOD_MASK_CTRL)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1318 ker.dwControlKeyState |= LEFT_CTRL_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1319 if (mods & MOD_MASK_ALT)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1320 ker.dwControlKeyState |= LEFT_ALT_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1321 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1322
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1323 if (vkCode == VK_LSHIFT || vkCode == VK_RSHIFT || vkCode == VK_SHIFT)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1324 {
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1325 if (isKeyDown)
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1326 s_dwMods |= SHIFT_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1327 else
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1328 s_dwMods &= ~SHIFT_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1329 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1330 else if (vkCode == VK_LCONTROL || vkCode == VK_CONTROL)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1331 {
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1332 if (isKeyDown)
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1333 s_dwMods |= LEFT_CTRL_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1334 else
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1335 s_dwMods &= ~LEFT_CTRL_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1336 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1337 else if (vkCode == VK_RCONTROL)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1338 {
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1339 if (isKeyDown)
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1340 s_dwMods |= RIGHT_CTRL_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1341 else
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1342 s_dwMods &= ~RIGHT_CTRL_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1343 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1344 else if (vkCode == VK_LMENU || vkCode == VK_MENU)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1345 {
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1346 if (isKeyDown)
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1347 s_dwMods |= LEFT_ALT_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1348 else
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1349 s_dwMods &= ~LEFT_ALT_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1350 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1351 else if (vkCode == VK_RMENU)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1352 {
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1353 if (isKeyDown)
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1354 s_dwMods |= RIGHT_ALT_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1355 else
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1356 s_dwMods &= ~RIGHT_ALT_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1357 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1358 ker.dwControlKeyState |= s_dwMods;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1359 ker.wVirtualKeyCode = vkCode;
31674
edbadc330871 patch 9.0.1169: some key+modifier tests fail on some AppVeyor images
Bram Moolenaar <Bram@vim.org>
parents: 31628
diff changeset
1360 ker.uChar.UnicodeChar = 0;
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1361 ir->Event.KeyEvent = ker;
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1362 vim_free(action);
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1363 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1364 else
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1365 {
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1366 if (action == NULL)
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1367 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1368 semsg(_(e_missing_argument_str), "event");
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1369 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1370 else
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1371 {
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1372 semsg(_(e_invalid_value_for_argument_str_str), "event", action);
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
1373 vim_free(action);
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1374 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1375 return FALSE;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1376 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1377 return TRUE;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1378 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1379 # endif // FEAT_EVAL
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1380 #endif // !FEAT_GUI_MSWIN || VIMDLL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1381
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1382
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1383 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1384 * For the GUI the mouse handling is in gui_w32.c.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1385 */
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18275
diff changeset
1386 #if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1387 void
10783
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
1388 mch_setmouse(int on UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1389 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1390 }
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1391 #else // !FEAT_GUI_MSWIN || VIMDLL
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1392 static int g_fMouseAvail = FALSE; // mouse present
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1393 static int g_fMouseActive = FALSE; // mouse enabled
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1394 static int g_nMouseClick = -1; // mouse status
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1395 static int g_xMouse; // mouse x coordinate
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1396 static int g_yMouse; // mouse y coordinate
28844
c0403cd5ca06 patch 8.2.4945: inconsistent use of white space
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
1397 static DWORD g_cmodein = 0; // Original console input mode
c0403cd5ca06 patch 8.2.4945: inconsistent use of white space
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
1398 static DWORD g_cmodeout = 0; // Original console output mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1399
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1400 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1401 * Enable or disable mouse input
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1402 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1403 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
1404 mch_setmouse(int on)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1405 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1406 DWORD cmodein;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1407
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18275
diff changeset
1408 # ifdef VIMDLL
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
1409 if (gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
1410 return;
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18275
diff changeset
1411 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1412 if (!g_fMouseAvail)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1413 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1414
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1415 g_fMouseActive = on;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1416 GetConsoleMode(g_hConIn, &cmodein);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1417
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1418 if (g_fMouseActive)
24749
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
1419 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1420 cmodein |= ENABLE_MOUSE_INPUT;
24749
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
1421 cmodein &= ~ENABLE_QUICK_EDIT_MODE;
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
1422 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1423 else
24749
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
1424 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1425 cmodein &= ~ENABLE_MOUSE_INPUT;
24749
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
1426 cmodein |= g_cmodein & ENABLE_QUICK_EDIT_MODE;
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
1427 }
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
1428
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
1429 SetConsoleMode(g_hConIn, cmodein | ENABLE_EXTENDED_FLAGS);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1430 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1431
13416
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1432
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18275
diff changeset
1433 # if defined(FEAT_BEVAL_TERM) || defined(PROTO)
13416
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1434 /*
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1435 * Called when 'balloonevalterm' changed.
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1436 */
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1437 void
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1438 mch_bevalterm_changed(void)
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1439 {
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1440 mch_setmouse(g_fMouseActive);
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1441 }
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18275
diff changeset
1442 # endif
13416
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1443
30882
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1444 /*
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1445 * Win32 console mouse scroll event handler.
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1446 * Console version of the _OnMouseWheel() function in gui_w32.c
30882
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1447 *
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1448 * This encodes the mouse scroll direction and keyboard modifiers into
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1449 * g_nMouseClick, and the mouse position into g_xMouse and g_yMouse
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1450 *
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1451 * The direction of the scroll is decoded from two fields of the win32 console
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1452 * mouse event record;
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1453 * 1. The orientation - vertical or horizontal flag - from dwEventFlags
30882
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1454 * 2. The sign - positive or negative (aka delta flag) - from dwButtonState
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1455 *
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1456 * When scroll orientation is HORIZONTAL
30882
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1457 * - If the high word of the dwButtonState member contains a positive
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1458 * value, the wheel was rotated to the right.
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1459 * - Otherwise, the wheel was rotated to the left.
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1460 * When scroll orientation is VERTICAL
30882
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1461 * - If the high word of the dwButtonState member contains a positive value,
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1462 * the wheel was rotated forward, away from the user.
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1463 * - Otherwise, the wheel was rotated backward, toward the user.
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1464 */
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1465 static void
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1466 decode_mouse_wheel(MOUSE_EVENT_RECORD *pmer)
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1467 {
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1468 int horizontal = (pmer->dwEventFlags == MOUSE_HWHEELED);
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1469 int zDelta = pmer->dwButtonState;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1470
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1471 g_xMouse = pmer->dwMousePosition.X;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1472 g_yMouse = pmer->dwMousePosition.Y;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1473
31091
551ce1a137da patch 9.0.0880: preprocessor indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 31067
diff changeset
1474 # ifdef FEAT_PROP_POPUP
30918
6a2a38b26caf patch 9.0.0793: MS-Windows: mouse scroll events only work with the dll
Bram Moolenaar <Bram@vim.org>
parents: 30916
diff changeset
1475 int lcol = g_xMouse;
6a2a38b26caf patch 9.0.0793: MS-Windows: mouse scroll events only work with the dll
Bram Moolenaar <Bram@vim.org>
parents: 30916
diff changeset
1476 int lrow = g_yMouse;
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
1477 win_T *wp = mouse_find_win(&lrow, &lcol, FIND_POPUP);
30882
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1478 if (wp != NULL && popup_is_popup(wp))
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1479 {
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1480 g_nMouseClick = -1;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1481 cmdarg_T cap;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1482 oparg_T oa;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1483 CLEAR_FIELD(cap);
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1484 clear_oparg(&oa);
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1485 cap.oap = &oa;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1486 if (horizontal)
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1487 {
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1488 cap.arg = zDelta < 0 ? MSCR_LEFT : MSCR_RIGHT;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1489 cap.cmdchar = zDelta < 0 ? K_MOUSELEFT : K_MOUSERIGHT;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1490 }
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1491 else
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1492 {
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1493 cap.cmdchar = zDelta < 0 ? K_MOUSEUP : K_MOUSEDOWN;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1494 cap.arg = zDelta < 0 ? MSCR_UP : MSCR_DOWN;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1495 }
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1496
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1497 // Mouse hovers over popup window, scroll it if possible.
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1498 mouse_row = wp->w_winrow;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1499 mouse_col = wp->w_wincol;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1500 nv_mousescroll(&cap);
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1501 update_screen(0);
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1502 setcursor();
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1503 out_flush();
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1504 return;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1505 }
31091
551ce1a137da patch 9.0.0880: preprocessor indenting is off
Bram Moolenaar <Bram@vim.org>
parents: 31067
diff changeset
1506 # endif
30882
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1507 mouse_col = g_xMouse;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1508 mouse_row = g_yMouse;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1509
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1510 char_u modifiers = 0;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1511 char_u direction = 0;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1512
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1513 // Decode the direction into an event that Vim can process
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1514 if (horizontal)
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1515 direction = zDelta >= 0 ? KE_MOUSELEFT : KE_MOUSERIGHT;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1516 else
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1517 direction = zDelta >= 0 ? KE_MOUSEDOWN : KE_MOUSEUP;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1518
30986
360f286b5869 patch 9.0.0828: various typos
Bram Moolenaar <Bram@vim.org>
parents: 30936
diff changeset
1519 // Decode the win32 console key modifiers into Vim mouse modifiers.
30882
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1520 if (pmer->dwControlKeyState & SHIFT_PRESSED)
30918
6a2a38b26caf patch 9.0.0793: MS-Windows: mouse scroll events only work with the dll
Bram Moolenaar <Bram@vim.org>
parents: 30916
diff changeset
1521 modifiers |= MOD_MASK_SHIFT; // MOUSE_SHIFT;
30882
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1522 if (pmer->dwControlKeyState & (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED))
30918
6a2a38b26caf patch 9.0.0793: MS-Windows: mouse scroll events only work with the dll
Bram Moolenaar <Bram@vim.org>
parents: 30916
diff changeset
1523 modifiers |= MOD_MASK_CTRL; // MOUSE_CTRL;
30882
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1524 if (pmer->dwControlKeyState & (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED))
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1525 modifiers |= MOD_MASK_ALT; // MOUSE_ALT;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1526
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1527 // add (bitwise or) the scroll direction and the key modifier chars
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1528 // together.
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1529 g_nMouseClick = ((direction << 8) | modifiers);
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1530
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1531 return;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1532 }
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1533
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1534 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1535 * Decode a MOUSE_EVENT. If it's a valid event, return MOUSE_LEFT,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1536 * MOUSE_MIDDLE, or MOUSE_RIGHT for a click; MOUSE_DRAG for a mouse
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1537 * move with a button held down; and MOUSE_RELEASE after a MOUSE_DRAG
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1538 * or a MOUSE_LEFT, _MIDDLE, or _RIGHT. We encode the button type,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1539 * the number of clicks, and the Shift/Ctrl/Alt modifiers in g_nMouseClick,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1540 * and we return the mouse position in g_xMouse and g_yMouse.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1541 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1542 * Every MOUSE_LEFT, _MIDDLE, or _RIGHT will be followed by zero or more
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1543 * MOUSE_DRAGs and one MOUSE_RELEASE. MOUSE_RELEASE will be followed only
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1544 * by MOUSE_LEFT, _MIDDLE, or _RIGHT.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1545 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1546 * For multiple clicks, we send, say, MOUSE_LEFT/1 click, MOUSE_RELEASE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1547 * MOUSE_LEFT/2 clicks, MOUSE_RELEASE, MOUSE_LEFT/3 clicks, MOUSE_RELEASE, ....
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1548 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1549 * Windows will send us MOUSE_MOVED notifications whenever the mouse
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1550 * moves, even if it stays within the same character cell. We ignore
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1551 * all MOUSE_MOVED messages if the position hasn't really changed, and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1552 * we ignore all MOUSE_MOVED messages where no button is held down (i.e.,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1553 * we're only interested in MOUSE_DRAG).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1554 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1555 * All of this is complicated by the code that fakes MOUSE_MIDDLE on
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1556 * 2-button mouses by pressing the left & right buttons simultaneously.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1557 * In practice, it's almost impossible to click both at the same time,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1558 * so we need to delay a little. Also, we tend not to get MOUSE_RELEASE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1559 * in such cases, if the user is clicking quickly.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1560 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1561 static BOOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1562 decode_mouse_event(
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
1563 MOUSE_EVENT_RECORD *pmer)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1564 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1565 static int s_nOldButton = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1566 static int s_nOldMouseClick = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1567 static int s_xOldMouse = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1568 static int s_yOldMouse = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1569 static linenr_T s_old_topline = 0;
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18275
diff changeset
1570 # ifdef FEAT_DIFF
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1571 static int s_old_topfill = 0;
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18275
diff changeset
1572 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1573 static int s_cClicks = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1574 static BOOL s_fReleased = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1575 static DWORD s_dwLastClickTime = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1576 static BOOL s_fNextIsMiddle = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1577
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1578 static DWORD cButtons = 0; // number of buttons supported
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1579
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1580 const DWORD LEFT = FROM_LEFT_1ST_BUTTON_PRESSED;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1581 const DWORD MIDDLE = FROM_LEFT_2ND_BUTTON_PRESSED;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1582 const DWORD RIGHT = RIGHTMOST_BUTTON_PRESSED;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1583 const DWORD LEFT_RIGHT = LEFT | RIGHT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1584
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1585 int nButton;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1586
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1587 if (cButtons == 0 && !GetNumberOfConsoleMouseButtons(&cButtons))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1588 cButtons = 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1589
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1590 if (!g_fMouseAvail || !g_fMouseActive)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1591 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1592 g_nMouseClick = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1593 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1594 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1595
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1596 // get a spurious MOUSE_EVENT immediately after receiving focus; ignore
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1597 if (g_fJustGotFocus)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1598 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1599 g_fJustGotFocus = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1600 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1601 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1602
30918
6a2a38b26caf patch 9.0.0793: MS-Windows: mouse scroll events only work with the dll
Bram Moolenaar <Bram@vim.org>
parents: 30916
diff changeset
1603 // If there is an unprocessed mouse click drop this one.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1604 if (g_nMouseClick != -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1605 return TRUE;
30918
6a2a38b26caf patch 9.0.0793: MS-Windows: mouse scroll events only work with the dll
Bram Moolenaar <Bram@vim.org>
parents: 30916
diff changeset
1606
30882
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1607 if (pmer->dwEventFlags == MOUSE_WHEELED
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1608 || pmer->dwEventFlags == MOUSE_HWHEELED)
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1609 {
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1610 decode_mouse_wheel(pmer);
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1611 return TRUE; // we now should have a mouse scroll in g_nMouseClick
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
1612 }
30918
6a2a38b26caf patch 9.0.0793: MS-Windows: mouse scroll events only work with the dll
Bram Moolenaar <Bram@vim.org>
parents: 30916
diff changeset
1613
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1614 nButton = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1615 g_xMouse = pmer->dwMousePosition.X;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1616 g_yMouse = pmer->dwMousePosition.Y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1617
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1618 if (pmer->dwEventFlags == MOUSE_MOVED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1619 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1620 // Ignore MOUSE_MOVED events if (x, y) hasn't changed. (We get these
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1621 // events even when the mouse moves only within a char cell.)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1622 if (s_xOldMouse == g_xMouse && s_yOldMouse == g_yMouse)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1623 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1624 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1625
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1626 // If no buttons are pressed...
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1627 if ((pmer->dwButtonState & ((1 << cButtons) - 1)) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1628 {
13416
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1629 nButton = MOUSE_RELEASE;
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1630
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1631 // If the last thing returned was MOUSE_RELEASE, ignore this
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1632 if (s_fReleased)
13416
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1633 {
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18275
diff changeset
1634 # ifdef FEAT_BEVAL_TERM
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1635 // do return mouse move events when we want them
13416
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1636 if (p_bevalterm)
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1637 nButton = MOUSE_DRAG;
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1638 else
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18275
diff changeset
1639 # endif
13416
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1640 return FALSE;
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1641 }
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1642
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1643 s_fReleased = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1644 }
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1645 else // one or more buttons pressed
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1646 {
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1647 // on a 2-button mouse, hold down left and right buttons
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1648 // simultaneously to get MIDDLE.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1649
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1650 if (cButtons == 2 && s_nOldButton != MOUSE_DRAG)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1651 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1652 DWORD dwLR = (pmer->dwButtonState & LEFT_RIGHT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1653
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1654 // if either left or right button only is pressed, see if the
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1655 // next mouse event has both of them pressed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1656 if (dwLR == LEFT || dwLR == RIGHT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1657 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1658 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1659 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1660 // wait a short time for next input event
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1661 if (WaitForSingleObject(g_hConIn, p_mouset / 3)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1662 != WAIT_OBJECT_0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1663 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1664 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1665 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1666 DWORD cRecords = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1667 INPUT_RECORD ir;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1668 MOUSE_EVENT_RECORD* pmer2 = &ir.Event.MouseEvent;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1669
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
1670 peek_console_input(g_hConIn, &ir, 1, &cRecords);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1671
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1672 if (cRecords == 0 || ir.EventType != MOUSE_EVENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1673 || !(pmer2->dwButtonState & LEFT_RIGHT))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1674 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1675 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1676 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1677 if (pmer2->dwEventFlags != MOUSE_MOVED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1678 {
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
1679 read_console_input(g_hConIn, &ir, 1, &cRecords);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1680
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1681 return decode_mouse_event(pmer2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1682 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1683 else if (s_xOldMouse == pmer2->dwMousePosition.X &&
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1684 s_yOldMouse == pmer2->dwMousePosition.Y)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1685 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1686 // throw away spurious mouse move
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
1687 read_console_input(g_hConIn, &ir, 1, &cRecords);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1688
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1689 // are there any more mouse events in queue?
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
1690 peek_console_input(g_hConIn, &ir, 1, &cRecords);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1691
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1692 if (cRecords==0 || ir.EventType != MOUSE_EVENT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1693 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1694 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1695 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1696 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1697 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1698 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1699 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1700 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1701 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1702
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1703 if (s_fNextIsMiddle)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1704 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1705 nButton = (pmer->dwEventFlags == MOUSE_MOVED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1706 ? MOUSE_DRAG : MOUSE_MIDDLE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1707 s_fNextIsMiddle = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1708 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1709 else if (cButtons == 2 &&
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1710 ((pmer->dwButtonState & LEFT_RIGHT) == LEFT_RIGHT))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1711 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1712 nButton = MOUSE_MIDDLE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1713
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1714 if (! s_fReleased && pmer->dwEventFlags != MOUSE_MOVED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1715 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1716 s_fNextIsMiddle = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1717 nButton = MOUSE_RELEASE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1718 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1719 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1720 else if ((pmer->dwButtonState & LEFT) == LEFT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1721 nButton = MOUSE_LEFT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1722 else if ((pmer->dwButtonState & MIDDLE) == MIDDLE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1723 nButton = MOUSE_MIDDLE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1724 else if ((pmer->dwButtonState & RIGHT) == RIGHT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1725 nButton = MOUSE_RIGHT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1726
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1727 if (! s_fReleased && ! s_fNextIsMiddle
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1728 && nButton != s_nOldButton && s_nOldButton != MOUSE_DRAG)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1729 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1730
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1731 s_fReleased = s_fNextIsMiddle;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1732 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1733
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1734 if (pmer->dwEventFlags == 0 || pmer->dwEventFlags == DOUBLE_CLICK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1735 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1736 // button pressed or released, without mouse moving
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1737 if (nButton != -1 && nButton != MOUSE_RELEASE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1738 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1739 DWORD dwCurrentTime = GetTickCount();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1740
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1741 if (s_xOldMouse != g_xMouse
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1742 || s_yOldMouse != g_yMouse
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1743 || s_nOldButton != nButton
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1744 || s_old_topline != curwin->w_topline
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18275
diff changeset
1745 # ifdef FEAT_DIFF
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1746 || s_old_topfill != curwin->w_topfill
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18275
diff changeset
1747 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1748 || (int)(dwCurrentTime - s_dwLastClickTime) > p_mouset)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1749 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1750 s_cClicks = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1751 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1752 else if (++s_cClicks > 4)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1753 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1754 s_cClicks = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1755 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1756
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1757 s_dwLastClickTime = dwCurrentTime;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1758 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1759 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1760 else if (pmer->dwEventFlags == MOUSE_MOVED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1761 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1762 if (nButton != -1 && nButton != MOUSE_RELEASE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1763 nButton = MOUSE_DRAG;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1764
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1765 s_cClicks = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1766 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1767
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1768 if (nButton == -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1769 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1770
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1771 if (nButton != MOUSE_RELEASE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1772 s_nOldButton = nButton;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1773
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1774 g_nMouseClick = nButton;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1775
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1776 if (pmer->dwControlKeyState & SHIFT_PRESSED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1777 g_nMouseClick |= MOUSE_SHIFT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1778 if (pmer->dwControlKeyState & (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1779 g_nMouseClick |= MOUSE_CTRL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1780 if (pmer->dwControlKeyState & (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1781 g_nMouseClick |= MOUSE_ALT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1782
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1783 if (nButton != MOUSE_DRAG && nButton != MOUSE_RELEASE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1784 SET_NUM_MOUSE_CLICKS(g_nMouseClick, s_cClicks);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1785
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
1786 // only pass on interesting (i.e., different) mouse events
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1787 if (s_xOldMouse == g_xMouse
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1788 && s_yOldMouse == g_yMouse
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1789 && s_nOldMouseClick == g_nMouseClick)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1790 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1791 g_nMouseClick = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1792 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1793 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1794
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1795 s_xOldMouse = g_xMouse;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1796 s_yOldMouse = g_yMouse;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1797 s_old_topline = curwin->w_topline;
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18275
diff changeset
1798 # ifdef FEAT_DIFF
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1799 s_old_topfill = curwin->w_topfill;
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18275
diff changeset
1800 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1801 s_nOldMouseClick = g_nMouseClick;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1802
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1803 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1804 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1805
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1806 # ifdef FEAT_EVAL
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1807 static int
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1808 encode_mouse_event(dict_T *args, INPUT_RECORD *ir)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1809 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1810 int button;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1811 int row;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1812 int col;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1813 int repeated_click;
31505
dc282943639c patch 9.0.1085: compiler warns for uninitialized variable
Bram Moolenaar <Bram@vim.org>
parents: 31503
diff changeset
1814 int_u mods = 0;
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1815 int move;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1816
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1817 if (!dict_has_key(args, "row") || !dict_has_key(args, "col"))
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1818 return FALSE;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1819
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1820 // Note: "move" is optional, requires fewer arguments
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1821 move = (int)dict_get_bool(args, "move", FALSE);
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1822 if (!move && (!dict_has_key(args, "button")
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1823 || !dict_has_key(args, "multiclick")
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1824 || !dict_has_key(args, "modifiers")))
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1825 return FALSE;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1826
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1827 row = (int)dict_get_number(args, "row") - 1;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1828 col = (int)dict_get_number(args, "col") - 1;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1829
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1830 ir->EventType = MOUSE_EVENT;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1831 MOUSE_EVENT_RECORD mer;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1832 ZeroMemory(&mer, sizeof(mer));
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1833 mer.dwMousePosition.X = col;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1834 mer.dwMousePosition.Y = row;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1835
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1836 if (move)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1837 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1838 mer.dwButtonState = 0;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1839 mer.dwEventFlags = MOUSE_MOVED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1840 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1841 else
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1842 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1843 button = (int)dict_get_number(args, "button");
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1844 repeated_click = (int)dict_get_number(args, "multiclick");
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1845 mods = (int)dict_get_number(args, "modifiers");
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1846 // Reset the scroll values to known values.
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1847 // XXX: Remove this when/if the scroll step is made configurable.
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1848 mouse_set_hor_scroll_step(6);
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1849 mouse_set_vert_scroll_step(3);
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1850
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1851 switch (button)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1852 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1853 case MOUSE_LEFT:
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1854 mer.dwButtonState = FROM_LEFT_1ST_BUTTON_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1855 mer.dwEventFlags = repeated_click == 1 ? DOUBLE_CLICK : 0;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1856 break;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1857 case MOUSE_MIDDLE:
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1858 mer.dwButtonState = FROM_LEFT_2ND_BUTTON_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1859 mer.dwEventFlags = repeated_click == 1 ? DOUBLE_CLICK : 0;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1860 break;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1861 case MOUSE_RIGHT:
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1862 mer.dwButtonState = RIGHTMOST_BUTTON_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1863 mer.dwEventFlags = repeated_click == 1 ? DOUBLE_CLICK : 0;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1864 break;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1865 case MOUSE_RELEASE:
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1866 // umm? Assume Left Release?
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1867 mer.dwEventFlags = 0;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1868
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1869 case MOUSE_MOVE:
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1870 mer.dwButtonState = 0;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1871 mer.dwEventFlags = MOUSE_MOVED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1872 break;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1873 case MOUSE_X1:
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1874 mer.dwButtonState = FROM_LEFT_3RD_BUTTON_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1875 break;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1876 case MOUSE_X2:
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1877 mer.dwButtonState = FROM_LEFT_4TH_BUTTON_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1878 break;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1879 case MOUSE_4: // KE_MOUSEDOWN;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1880 mer.dwButtonState = -1;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1881 mer.dwEventFlags = MOUSE_WHEELED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1882 break;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1883 case MOUSE_5: // KE_MOUSEUP;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1884 mer.dwButtonState = +1;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1885 mer.dwEventFlags = MOUSE_WHEELED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1886 break;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1887 case MOUSE_6: // KE_MOUSELEFT;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1888 mer.dwButtonState = -1;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1889 mer.dwEventFlags = MOUSE_HWHEELED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1890 break;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1891 case MOUSE_7: // KE_MOUSERIGHT;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1892 mer.dwButtonState = +1;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1893 mer.dwEventFlags = MOUSE_HWHEELED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1894 break;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1895 default:
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1896 semsg(_(e_invalid_argument_str), "button");
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1897 return FALSE;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1898 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1899 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1900
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1901 mer.dwControlKeyState = 0;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1902 if (mods != 0)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1903 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1904 // Encode the win32 console key modifiers from Vim MOUSE modifiers.
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1905 if (mods & MOUSE_SHIFT)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1906 mer.dwControlKeyState |= SHIFT_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1907 if (mods & MOUSE_CTRL)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1908 mer.dwControlKeyState |= LEFT_CTRL_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1909 if (mods & MOUSE_ALT)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1910 mer.dwControlKeyState |= LEFT_ALT_PRESSED;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1911 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1912 ir->Event.MouseEvent = mer;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1913 return TRUE;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1914 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1915 # endif // FEAT_EVAL
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1916
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1917 static int
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1918 write_input_record_buffer(INPUT_RECORD* irEvents, int nLength)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1919 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1920 int nCount = 0;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1921 while (nCount < nLength)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1922 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1923 input_record_buffer.length++;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1924 input_record_buffer_node_T *event_node =
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1925 malloc(sizeof(input_record_buffer_node_T));
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1926 event_node->ir = irEvents[nCount++];
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1927 event_node->next = NULL;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1928 if (input_record_buffer.tail == NULL)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1929 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1930 input_record_buffer.head = event_node;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1931 input_record_buffer.tail = event_node;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1932 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1933 else
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1934 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1935 input_record_buffer.tail->next = event_node;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1936 input_record_buffer.tail = input_record_buffer.tail->next;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1937 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1938 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1939 return nCount;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1940 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1941
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1942 static int
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1943 read_input_record_buffer(INPUT_RECORD* irEvents, int nMaxLength)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1944 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1945 int nCount = 0;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1946 while (nCount < nMaxLength && input_record_buffer.head != NULL)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1947 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1948 input_record_buffer.length--;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1949 input_record_buffer_node_T *pop_head = input_record_buffer.head;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1950 irEvents[nCount++] = pop_head->ir;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1951 input_record_buffer.head = pop_head->next;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1952 vim_free(pop_head);
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1953 if (input_record_buffer.length == 0)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1954 input_record_buffer.tail = NULL;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1955 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1956 return nCount;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1957 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1958 #endif // !FEAT_GUI_MSWIN || VIMDLL
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1959
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1960 #ifdef FEAT_EVAL
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1961 /*
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1962 * The 'test_mswin_event' function is for testing Vim's low-level handling of
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1963 * user input events. ie, this manages the encoding of INPUT_RECORD events
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1964 * so that we have a way to test how Vim decodes INPUT_RECORD events in Windows
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1965 * consoles.
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1966 *
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1967 * The 'test_mswin_event' function is based on 'test_gui_event'. In fact, when
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1968 * the Windows GUI is running, the arguments; 'event' and 'args', are the same.
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1969 * So, it acts as an alias for 'test_gui_event' for the Windows GUI.
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1970 *
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1971 * When the Windows console is running, the arguments; 'event' and 'args', are
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1972 * a subset of what 'test_gui_event' handles, ie, only "key" and "mouse"
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1973 * events are encoded as INPUT_RECORD events.
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1974 *
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1975 * Note: INPUT_RECORDs are only used by the Windows console, not the GUI. The
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1976 * GUI sends MSG structs instead.
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1977 */
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1978 int
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1979 test_mswin_event(char_u *event, dict_T *args)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1980 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1981 int lpEventsWritten = 0;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1982
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1983 # if defined(VIMDLL) || defined(FEAT_GUI_MSWIN)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1984 if (gui.in_use)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1985 return test_gui_w32_sendevent(event, args);
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1986 # endif
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1987
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1988 # if defined(VIMDLL) || !defined(FEAT_GUI_MSWIN)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1989
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1990 // Currently implemented event record types are; KEY_EVENT and MOUSE_EVENT
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1991 // Potentially could also implement: FOCUS_EVENT and WINDOW_BUFFER_SIZE_EVENT
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1992 // Maybe also: MENU_EVENT
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1993
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1994 INPUT_RECORD ir;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1995 BOOL input_encoded = FALSE;
31559
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
1996 BOOL execute = FALSE;
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
1997 if (STRCMP(event, "key") == 0)
31559
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
1998 {
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
1999 execute = dict_get_bool(args, "execute", FALSE);
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2000 if (dict_has_key(args, "event"))
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2001 input_encoded = encode_key_event(args, &ir);
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2002 else if (!execute)
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2003 {
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2004 semsg(_(e_missing_argument_str), "event");
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2005 return FALSE;
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2006 }
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2007 }
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2008 else if (STRCMP(event, "mouse") == 0)
31559
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2009 {
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2010 execute = TRUE;
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2011 input_encoded = encode_mouse_event(args, &ir);
31559
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2012 }
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2013 else
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2014 {
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2015 semsg(_(e_invalid_value_for_argument_str_str), "event", event);
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2016 return FALSE;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2017 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2018
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2019 // Ideally, WriteConsoleInput would be used to inject these low-level
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2020 // events. But, this doesnt work well in the CI test environment. So
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2021 // implementing an input_record_buffer instead.
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2022 if (input_encoded)
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2023 lpEventsWritten = write_input_record_buffer(&ir, 1);
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2024
31559
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2025 // Set flags to execute the event, ie. like feedkeys mode X.
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2026 if (execute)
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2027 {
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2028 int save_msg_scroll = msg_scroll;
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2029 // Avoid a 1 second delay when the keys start Insert mode.
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2030 msg_scroll = FALSE;
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2031 ch_log(NULL, "test_mswin_event() executing");
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2032 exec_normal(TRUE, TRUE, TRUE);
31559
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2033 msg_scroll |= save_msg_scroll;
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2034 }
31503
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2035
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2036 # endif
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2037 return lpEventsWritten;
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2038 }
b9a4699d6a35 patch 9.0.1084: code handling low level MS-Windows events cannot be tested
Bram Moolenaar <Bram@vim.org>
parents: 31287
diff changeset
2039 #endif // FEAT_EVAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2040
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2041 #ifdef MCH_CURSOR_SHAPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2042 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2043 * Set the shape of the cursor.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2044 * 'thickness' can be from 1 (thin) to 99 (block)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2045 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2046 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2047 mch_set_cursor_shape(int thickness)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2048 {
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
2049 if (vtp_working)
30019
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2050 {
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2051 if (*T_CSI == NUL)
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2052 {
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2053 // If 't_SI' is not set, use the default cursor styles.
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2054 if (thickness < 50)
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2055 vtp_printf("\033[3 q"); // underline
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2056 else
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2057 vtp_printf("\033[0 q"); // default
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2058 }
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2059 }
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2060 else
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2061 {
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2062 CONSOLE_CURSOR_INFO ConsoleCursorInfo;
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2063 ConsoleCursorInfo.dwSize = thickness;
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2064 ConsoleCursorInfo.bVisible = s_cursor_visible;
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2065
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2066 SetConsoleCursorInfo(g_hConOut, &ConsoleCursorInfo);
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2067 if (s_cursor_visible)
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2068 SetConsoleCursorPosition(g_hConOut, g_coord);
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
2069 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2070 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2071
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2072 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2073 mch_update_cursor(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2074 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2075 int idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2076 int thickness;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2077
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2078 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2079 if (gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2080 return;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2081 # endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2082
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2083 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2084 * How the cursor is drawn depends on the current mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2085 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2086 idx = get_shape_idx(FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2087
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2088 if (shape_table[idx].shape == SHAPE_BLOCK)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2089 thickness = 99; // 100 doesn't work on W95
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2090 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2091 thickness = shape_table[idx].percentage;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2092 mch_set_cursor_shape(thickness);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2093 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2094 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2095
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2096 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2097 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2098 * Handle FOCUS_EVENT.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2099 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2100 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2101 handle_focus_event(INPUT_RECORD ir)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2102 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2103 g_fJustGotFocus = ir.Event.FocusEvent.bSetFocus;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2104 ui_focus_change((int)g_fJustGotFocus);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2105 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2106
15866
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
2107 static void ResizeConBuf(HANDLE hConsole, COORD coordScreen);
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
2108
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2109 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2110 * Wait until console input from keyboard or mouse is available,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2111 * or the time is up.
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2112 * When "ignore_input" is TRUE even wait when input is available.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2113 * Return TRUE if something is available FALSE if not.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2114 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2115 static int
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2116 WaitForChar(long msec, int ignore_input)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2117 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2118 DWORD dwNow = 0, dwEndTime = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2119 INPUT_RECORD ir;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2120 DWORD cRecords;
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2121 WCHAR ch, ch2;
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2122 # ifdef FEAT_TIMERS
8947
c07caeb90a35 commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents: 8589
diff changeset
2123 int tb_change_cnt = typebuf.tb_change_cnt;
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2124 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2125
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2126 if (msec > 0)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2127 // Wait until the specified time has elapsed.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2128 dwEndTime = GetTickCount() + msec;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2129 else if (msec < 0)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2130 // Wait forever.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2131 dwEndTime = INFINITE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2132
15725
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
2133 // We need to loop until the end of the time period, because
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
2134 // we might get multiple unusable mouse events in that time.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2135 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2136 {
14673
f1b7d308de2f patch 8.1.0349: crash when wiping buffer in a callback
Christian Brabandt <cb@256bit.org>
parents: 14650
diff changeset
2137 // Only process messages when waiting.
f1b7d308de2f patch 8.1.0349: crash when wiping buffer in a callback
Christian Brabandt <cb@256bit.org>
parents: 14650
diff changeset
2138 if (msec != 0)
f1b7d308de2f patch 8.1.0349: crash when wiping buffer in a callback
Christian Brabandt <cb@256bit.org>
parents: 14650
diff changeset
2139 {
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2140 # ifdef MESSAGE_QUEUE
14673
f1b7d308de2f patch 8.1.0349: crash when wiping buffer in a callback
Christian Brabandt <cb@256bit.org>
parents: 14650
diff changeset
2141 parse_queued_messages();
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2142 # endif
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2143 # ifdef FEAT_MZSCHEME
14673
f1b7d308de2f patch 8.1.0349: crash when wiping buffer in a callback
Christian Brabandt <cb@256bit.org>
parents: 14650
diff changeset
2144 mzvim_check_threads();
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2145 # endif
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2146 # ifdef FEAT_CLIENTSERVER
14673
f1b7d308de2f patch 8.1.0349: crash when wiping buffer in a callback
Christian Brabandt <cb@256bit.org>
parents: 14650
diff changeset
2147 serverProcessPendingMessages();
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2148 # endif
14673
f1b7d308de2f patch 8.1.0349: crash when wiping buffer in a callback
Christian Brabandt <cb@256bit.org>
parents: 14650
diff changeset
2149 }
7797
0d46cea25641 commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents: 7784
diff changeset
2150
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18275
diff changeset
2151 if (g_nMouseClick != -1
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2152 # ifdef FEAT_CLIENTSERVER
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2153 || (!ignore_input && input_available())
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2154 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2155 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2156 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2157
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2158 if (msec > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2159 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2160 // If the specified wait time has passed, return. Beware that
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2161 // GetTickCount() may wrap around (overflow).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2162 dwNow = GetTickCount();
5292
d5d6b78cff09 updated for version 7.4b.022
Bram Moolenaar <bram@vim.org>
parents: 5229
diff changeset
2163 if ((int)(dwNow - dwEndTime) >= 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2164 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2165 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2166 if (msec != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2167 {
14
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
2168 DWORD dwWaitTime = dwEndTime - dwNow;
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
2169
23060
ab8a9b9bd349 patch 8.2.2076: MS-Windows console: sometimes drops typed characters
Bram Moolenaar <Bram@vim.org>
parents: 22856
diff changeset
2170 // Don't wait for more than 11 msec to avoid dropping characters,
ab8a9b9bd349 patch 8.2.2076: MS-Windows console: sometimes drops typed characters
Bram Moolenaar <Bram@vim.org>
parents: 22856
diff changeset
2171 // check channel while waiting for input and handle a callback from
ab8a9b9bd349 patch 8.2.2076: MS-Windows console: sometimes drops typed characters
Bram Moolenaar <Bram@vim.org>
parents: 22856
diff changeset
2172 // 'balloonexpr'.
ab8a9b9bd349 patch 8.2.2076: MS-Windows console: sometimes drops typed characters
Bram Moolenaar <Bram@vim.org>
parents: 22856
diff changeset
2173 if (dwWaitTime > 11)
ab8a9b9bd349 patch 8.2.2076: MS-Windows console: sometimes drops typed characters
Bram Moolenaar <Bram@vim.org>
parents: 22856
diff changeset
2174 dwWaitTime = 11;
ab8a9b9bd349 patch 8.2.2076: MS-Windows console: sometimes drops typed characters
Bram Moolenaar <Bram@vim.org>
parents: 22856
diff changeset
2175
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2176 # ifdef FEAT_MZSCHEME
23060
ab8a9b9bd349 patch 8.2.2076: MS-Windows console: sometimes drops typed characters
Bram Moolenaar <Bram@vim.org>
parents: 22856
diff changeset
2177 if (mzthreads_allowed() && p_mzq > 0 && (long)dwWaitTime > p_mzq)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2178 dwWaitTime = p_mzq; // don't wait longer than 'mzquantum'
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2179 # endif
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2180 # ifdef FEAT_TIMERS
15553
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2181 // When waiting very briefly don't trigger timers.
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2182 if (dwWaitTime > 10)
8589
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
2183 {
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
2184 long due_time;
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
2185
15553
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2186 // Trigger timers and then get the time in msec until the next
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2187 // one is due. Wait up to that time.
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2188 due_time = check_due_timer();
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2189 if (typebuf.tb_change_cnt != tb_change_cnt)
8589
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
2190 {
15553
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2191 // timer may have used feedkeys().
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2192 return FALSE;
8589
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
2193 }
15553
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2194 if (due_time > 0 && dwWaitTime > (DWORD)due_time)
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2195 dwWaitTime = due_time;
8589
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
2196 }
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2197 # endif
15553
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2198 if (
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2199 # ifdef FEAT_CLIENTSERVER
15553
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2200 // Wait for either an event on the console input or a
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2201 // message in the client-server window.
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2202 msg_wait_for_multiple_objects(1, &g_hConIn, FALSE,
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2203 dwWaitTime, QS_SENDMESSAGE) != WAIT_OBJECT_0
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2204 # else
15553
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2205 wait_for_single_object(g_hConIn, dwWaitTime)
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2206 != WAIT_OBJECT_0
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2207 # endif
15553
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2208 )
df198b298bff patch 8.1.0784: messy indent in if statement
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
2209 continue;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2210 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2211
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2212 cRecords = 0;
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
2213 peek_console_input(g_hConIn, &ir, 1, &cRecords);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2214
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2215 # ifdef FEAT_MBYTE_IME
24671
703bf1d19cfe patch 8.2.2874: MS-Windows: screen redraws too often
Bram Moolenaar <Bram@vim.org>
parents: 24604
diff changeset
2216 // May have to redraw if the cursor ends up in the wrong place.
703bf1d19cfe patch 8.2.2874: MS-Windows: screen redraws too often
Bram Moolenaar <Bram@vim.org>
parents: 24604
diff changeset
2217 // Only when not peeking.
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28763
diff changeset
2218 if (State == MODE_CMDLINE && msg_row == Rows - 1 && msec != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2219 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2220 CONSOLE_SCREEN_BUFFER_INFO csbi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2221
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2222 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2223 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2224 if (csbi.dwCursorPosition.Y != msg_row)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2225 {
24604
b1ba40ea418d patch 8.2.2841: MS-Windows: cursor wrong when 'lz' and 'stl' are set
Bram Moolenaar <Bram@vim.org>
parents: 24563
diff changeset
2226 // The screen is now messed up, must redraw the command
b1ba40ea418d patch 8.2.2841: MS-Windows: cursor wrong when 'lz' and 'stl' are set
Bram Moolenaar <Bram@vim.org>
parents: 24563
diff changeset
2227 // line and later all the windows.
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29245
diff changeset
2228 redraw_all_later(UPD_CLEAR);
24604
b1ba40ea418d patch 8.2.2841: MS-Windows: cursor wrong when 'lz' and 'stl' are set
Bram Moolenaar <Bram@vim.org>
parents: 24563
diff changeset
2229 compute_cmdrow();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2230 redrawcmd();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2231 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2232 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2233 }
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2234 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2235
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2236 if (cRecords > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2237 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2238 if (ir.EventType == KEY_EVENT && ir.Event.KeyEvent.bKeyDown)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2239 {
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2240 # ifdef FEAT_MBYTE_IME
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2241 // Windows IME sends two '\n's with only one 'ENTER'. First:
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2242 // wVirtualKeyCode == 13. second: wVirtualKeyCode == 0
27533
4f1c67a5f446 patch 8.2.4294: MS-Windows: #ifdefs for Cygwin are too complicated
Bram Moolenaar <Bram@vim.org>
parents: 27523
diff changeset
2243 if (ir.Event.KeyEvent.uChar.UnicodeChar == 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2244 && ir.Event.KeyEvent.wVirtualKeyCode == 13)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2245 {
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
2246 read_console_input(g_hConIn, &ir, 1, &cRecords);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2247 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2248 }
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2249 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2250 if (decode_key_event(&ir.Event.KeyEvent, &ch, &ch2,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2251 NULL, FALSE))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2252 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2253 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2254
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
2255 read_console_input(g_hConIn, &ir, 1, &cRecords);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2256
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2257 if (ir.EventType == FOCUS_EVENT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2258 handle_focus_event(ir);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2259 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
13260
ee1a1276a759 patch 8.0.1504: Win32: the screen may be cleared on startup
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2260 {
15866
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
2261 COORD dwSize = ir.Event.WindowBufferSizeEvent.dwSize;
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
2262
18876
44906eff69f9 patch 8.1.2424: MS-Windows: console buffer is resized unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 18810
diff changeset
2263 // Only call shell_resized() when the size actually changed to
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2264 // avoid the screen is cleared.
15866
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
2265 if (dwSize.X != Columns || dwSize.Y != Rows)
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
2266 {
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
2267 CONSOLE_SCREEN_BUFFER_INFO csbi;
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
2268 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
18876
44906eff69f9 patch 8.1.2424: MS-Windows: console buffer is resized unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 18810
diff changeset
2269 dwSize.X = csbi.srWindow.Right - csbi.srWindow.Left + 1;
15866
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
2270 dwSize.Y = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
18876
44906eff69f9 patch 8.1.2424: MS-Windows: console buffer is resized unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 18810
diff changeset
2271 if (dwSize.X != Columns || dwSize.Y != Rows)
44906eff69f9 patch 8.1.2424: MS-Windows: console buffer is resized unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 18810
diff changeset
2272 {
44906eff69f9 patch 8.1.2424: MS-Windows: console buffer is resized unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 18810
diff changeset
2273 ResizeConBuf(g_hConOut, dwSize);
44906eff69f9 patch 8.1.2424: MS-Windows: console buffer is resized unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 18810
diff changeset
2274 shell_resized();
44906eff69f9 patch 8.1.2424: MS-Windows: console buffer is resized unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 18810
diff changeset
2275 }
15866
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
2276 }
13260
ee1a1276a759 patch 8.0.1504: Win32: the screen may be cleared on startup
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
2277 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2278 else if (ir.EventType == MOUSE_EVENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2279 && decode_mouse_event(&ir.Event.MouseEvent))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2280 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2281 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2282 else if (msec == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2283 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2284 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2285
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2286 # ifdef FEAT_CLIENTSERVER
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2287 // Something might have been received while we were waiting.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2288 if (input_available())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2289 return TRUE;
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2290 # endif
7797
0d46cea25641 commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents: 7784
diff changeset
2291
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2292 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2293 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2294
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2295 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2296 * return non-zero if a character is available
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2297 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2298 int
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2299 mch_char_avail(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2300 {
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2301 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2302 if (gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2303 return TRUE;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2304 # endif
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2305 return WaitForChar(0L, FALSE);
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2306 }
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2307
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2308 # if defined(FEAT_TERMINAL) || defined(PROTO)
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2309 /*
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2310 * Check for any pending input or messages.
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2311 */
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2312 int
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2313 mch_check_messages(void)
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2314 {
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2315 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2316 if (gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2317 return TRUE;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2318 # endif
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2319 return WaitForChar(0L, TRUE);
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2320 }
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2321 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2322
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2323 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2324 * Create the console input. Used when reading stdin doesn't work.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2325 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2326 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2327 create_conin(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2328 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2329 g_hConIn = CreateFile("CONIN$", GENERIC_READ|GENERIC_WRITE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2330 FILE_SHARE_READ|FILE_SHARE_WRITE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2331 (LPSECURITY_ATTRIBUTES) NULL,
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 835
diff changeset
2332 OPEN_EXISTING, 0, (HANDLE)NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2333 did_create_conin = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2334 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2335
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2336 /*
8589
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
2337 * Get a keystroke or a mouse event, use a blocking wait.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2338 */
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2339 static WCHAR
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2340 tgetch(int *pmodifiers, WCHAR *pch2)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2341 {
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2342 WCHAR ch;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2343
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2344 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2345 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2346 INPUT_RECORD ir;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2347 DWORD cRecords = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2348
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2349 # ifdef FEAT_CLIENTSERVER
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2350 (void)WaitForChar(-1L, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2351 if (input_available())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2352 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2353 if (g_nMouseClick != -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2354 return 0;
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2355 # endif
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
2356 if (read_console_input(g_hConIn, &ir, 1, &cRecords) == 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2357 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2358 if (did_create_conin)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2359 read_error_exit();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2360 create_conin();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2361 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2362 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2363
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2364 if (ir.EventType == KEY_EVENT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2365 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2366 if (decode_key_event(&ir.Event.KeyEvent, &ch, pch2,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2367 pmodifiers, TRUE))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2368 return ch;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2369 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2370 else if (ir.EventType == FOCUS_EVENT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2371 handle_focus_event(ir);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2372 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2373 shell_resized();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2374 else if (ir.EventType == MOUSE_EVENT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2375 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2376 if (decode_mouse_event(&ir.Event.MouseEvent))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2377 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2378 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2379 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2380 }
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2381 #endif // !FEAT_GUI_MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2382
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2383
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2384 /*
3622
43fd3896fab7 updated for version 7.3.571
Bram Moolenaar <bram@vim.org>
parents: 3386
diff changeset
2385 * mch_inchar(): low-level input function.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2386 * Get one or more characters from the keyboard or the mouse.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2387 * If time == 0, do not wait for characters.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2388 * If time == n, wait a short time for characters.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2389 * If time == -1, wait forever for characters.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2390 * Returns the number of characters read into buf.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2391 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2392 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2393 mch_inchar(
10783
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
2394 char_u *buf UNUSED,
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
2395 int maxlen UNUSED,
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
2396 long time UNUSED,
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
2397 int tb_change_cnt UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2398 {
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2399 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2400
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2401 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2402 int c;
19599
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2403 # ifdef VIMDLL
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2404 // Extra space for maximum three CSIs. E.g. U+1B6DB -> 0xF0 0x9B 0x9B 0x9B.
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2405 # define TYPEAHEADSPACE 6
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2406 # else
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2407 # define TYPEAHEADSPACE 0
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2408 # endif
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2409 # define TYPEAHEADLEN (20 + TYPEAHEADSPACE)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2410 static char_u typeahead[TYPEAHEADLEN]; // previously typed bytes.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2411 static int typeaheadlen = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2412
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2413 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2414 if (gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2415 return 0;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2416 # endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2417
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2418 // First use any typeahead that was kept because "buf" was too small.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2419 if (typeaheadlen > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2420 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2421
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2422 if (time >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2423 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2424 if (!WaitForChar(time, FALSE)) // no character available
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2425 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2426 }
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2427 else // time == -1, wait forever
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2428 {
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2429 mch_set_winsize_now(); // Allow winsize changes from now on
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2430
203
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
2431 /*
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
2432 * If there is no character available within 2 seconds (default)
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
2433 * write the autoscript file to disk. Or cause the CursorHold event
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
2434 * to be triggered.
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
2435 */
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2436 if (!WaitForChar(p_ut, FALSE))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2437 {
609
ba54311bc43e updated for version 7.0173
vimboss
parents: 474
diff changeset
2438 if (trigger_cursorhold() && maxlen >= 3)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2439 {
203
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
2440 buf[0] = K_SPECIAL;
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
2441 buf[1] = KS_EXTRA;
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
2442 buf[2] = (int)KE_CURSORHOLD;
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
2443 return 3;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2444 }
368
a7d1d61e5417 updated for version 7.0095
vimboss
parents: 344
diff changeset
2445 before_blocking();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2446 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2447 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2448
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2449 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2450 * Try to read as many characters as there are, until the buffer is full.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2451 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2452
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2453 // we will get at least one key. Get more if they are available.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2454 g_fCBrkPressed = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2455
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2456 # ifdef MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2457 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2458 fputc('[', fdDump);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2459 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2460
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2461 // Keep looping until there is something in the typeahead buffer and more
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2462 // to get and still room in the buffer (up to two bytes for a char and
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2463 // three bytes for a modifier).
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
2464 while ((typeaheadlen == 0 || WaitForChar(0L, FALSE))
28844
c0403cd5ca06 patch 8.2.4945: inconsistent use of white space
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
2465 && typeaheadlen + 5 + TYPEAHEADSPACE <= TYPEAHEADLEN)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2466 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2467 if (typebuf_changed(tb_change_cnt))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2468 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2469 // "buf" may be invalid now if a client put something in the
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2470 // typeahead buffer and "buf" is in the typeahead buffer.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2471 typeaheadlen = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2472 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2473 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2474 if (g_nMouseClick != -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2475 {
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2476 # ifdef MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2477 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2478 fprintf(fdDump, "{%02x @ %d, %d}",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2479 g_nMouseClick, g_xMouse, g_yMouse);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2480 # endif
30882
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2481 char_u modifiers = ((char_u *)(&g_nMouseClick))[0];
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2482 char_u scroll_dir = ((char_u *)(&g_nMouseClick))[1];
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2483
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2484 if (scroll_dir == KE_MOUSEDOWN
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2485 || scroll_dir == KE_MOUSEUP
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2486 || scroll_dir == KE_MOUSELEFT
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2487 || scroll_dir == KE_MOUSERIGHT)
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2488 {
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2489 if (modifiers > 0)
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2490 {
31168
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31091
diff changeset
2491 // use K_SPECIAL instead of CSI to make mappings work
25f6c7f77c70 patch 9.0.0918: MS-Windows: modifier keys do not work with mouse scroll event
Bram Moolenaar <Bram@vim.org>
parents: 31091
diff changeset
2492 typeahead[typeaheadlen++] = K_SPECIAL;
30882
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2493 typeahead[typeaheadlen++] = KS_MODIFIER;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2494 typeahead[typeaheadlen++] = modifiers;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2495 }
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2496 typeahead[typeaheadlen++] = CSI;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2497 typeahead[typeaheadlen++] = KS_EXTRA;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2498 typeahead[typeaheadlen++] = scroll_dir;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2499 }
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2500 else
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2501 {
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2502 typeahead[typeaheadlen++] = ESC + 128;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2503 typeahead[typeaheadlen++] = 'M';
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2504 typeahead[typeaheadlen++] = g_nMouseClick;
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
2505 }
31194
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
2506
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
2507 // Pass the pointer coordinates of the mouse event in 2 bytes,
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
2508 // allowing for > 223 columns. Both for click and scroll events.
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
2509 // This is the same as what is used for the GUI.
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
2510 typeahead[typeaheadlen++] = (char_u)(g_xMouse / 128 + ' ' + 1);
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
2511 typeahead[typeaheadlen++] = (char_u)(g_xMouse % 128 + ' ' + 1);
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
2512 typeahead[typeaheadlen++] = (char_u)(g_yMouse / 128 + ' ' + 1);
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
2513 typeahead[typeaheadlen++] = (char_u)(g_yMouse % 128 + ' ' + 1);
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
2514
fa26d002eb2a patch 9.0.0931: MS-Windows: mouse column limited to 223
Bram Moolenaar <Bram@vim.org>
parents: 31168
diff changeset
2515 g_nMouseClick = -1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2516 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2517 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2518 {
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2519 WCHAR ch2 = NUL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2520 int modifiers = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2521
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2522 c = tgetch(&modifiers, &ch2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2523
31628
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
2524 c = simplify_key(c, &modifiers);
238f424acc6c patch 9.0.1146: MS-Windows: various special keys/modifiers are not mappable
Bram Moolenaar <Bram@vim.org>
parents: 31559
diff changeset
2525
31559
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2526 // Some chars need adjustment when the Ctrl modifier is used.
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2527 ++no_reduce_keys;
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2528 c = may_adjust_key_for_ctrl(modifiers, c);
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2529 --no_reduce_keys;
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2530
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2531 // remove the SHIFT modifier for keys where it's already included,
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2532 // e.g., '(' and '*'
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2533 modifiers = may_remove_shift_modifier(modifiers, c);
a3dca61f3ba3 patch 9.0.1112: test_mswin_event() can hang
Bram Moolenaar <Bram@vim.org>
parents: 31511
diff changeset
2534
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2535 if (typebuf_changed(tb_change_cnt))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2536 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2537 // "buf" may be invalid now if a client put something in the
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2538 // typeahead buffer and "buf" is in the typeahead buffer.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2539 typeaheadlen = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2540 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2541 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2542
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2543 if (c == Ctrl_C && ctrl_c_interrupts)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2544 {
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2545 # if defined(FEAT_CLIENTSERVER)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2546 trash_input_buf();
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2547 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2548 got_int = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2549 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2550
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2551 if (g_nMouseClick == -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2552 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2553 int n = 1;
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 5782
diff changeset
2554
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2555 if (ch2 == NUL)
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2556 {
19599
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2557 int i, j;
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2558 char_u *p;
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2559 WCHAR ch[2];
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2560
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2561 ch[0] = c;
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2562 if (c >= 0xD800 && c <= 0xDBFF) // High surrogate
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2563 {
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2564 ch[1] = tgetch(&modifiers, &ch2);
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2565 n++;
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2566 }
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2567 p = utf16_to_enc(ch, &n);
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2568 if (p != NULL)
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2569 {
19599
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2570 for (i = 0, j = 0; i < n; i++)
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2571 {
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2572 typeahead[typeaheadlen + j++] = p[i];
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2573 # ifdef VIMDLL
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2574 if (p[i] == CSI)
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2575 {
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2576 typeahead[typeaheadlen + j++] = KS_EXTRA;
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2577 typeahead[typeaheadlen + j++] = KE_CSI;
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2578 }
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2579 # endif
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2580 }
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2581 n = j;
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2582 vim_free(p);
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2583 }
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2584 }
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2585 else
19599
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2586 {
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
2587 typeahead[typeaheadlen] = c;
19599
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2588 # ifdef VIMDLL
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2589 if (c == CSI)
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2590 {
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2591 typeahead[typeaheadlen + 1] = KS_EXTRA;
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2592 typeahead[typeaheadlen + 2] = KE_CSI;
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2593 n = 3;
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2594 }
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2595 # endif
5eb0ead1415f patch 8.2.0356: MS-Windows: feedkeys() with VIMDLL cannot handle CSI
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
2596 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2597 if (ch2 != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2598 {
14891
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2599 if (c == K_NUL)
12990
ec86ba548446 patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 12958
diff changeset
2600 {
14891
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2601 switch (ch2)
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2602 {
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2603 case (WCHAR)'\324': // SHIFT+Insert
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2604 case (WCHAR)'\325': // CTRL+Insert
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2605 case (WCHAR)'\327': // SHIFT+Delete
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2606 case (WCHAR)'\330': // CTRL+Delete
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2607 typeahead[typeaheadlen + n] = (char_u)ch2;
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2608 n++;
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2609 break;
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2610
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2611 default:
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2612 typeahead[typeaheadlen + n] = 3;
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2613 typeahead[typeaheadlen + n + 1] = (char_u)ch2;
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2614 n += 2;
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2615 break;
66176f8735aa patch 8.1.0457: win32 console: key mappings don't work
Bram Moolenaar <Bram@vim.org>
parents: 14883
diff changeset
2616 }
12990
ec86ba548446 patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 12958
diff changeset
2617 }
ec86ba548446 patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 12958
diff changeset
2618 else
ec86ba548446 patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 12958
diff changeset
2619 {
ec86ba548446 patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 12958
diff changeset
2620 typeahead[typeaheadlen + n] = 3;
ec86ba548446 patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 12958
diff changeset
2621 typeahead[typeaheadlen + n + 1] = (char_u)ch2;
ec86ba548446 patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 12958
diff changeset
2622 n += 2;
ec86ba548446 patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 12958
diff changeset
2623 }
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 5782
diff changeset
2624 }
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 5782
diff changeset
2625
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2626 // Use the ALT key to set the 8th bit of the character
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2627 // when it's one byte, the 8th bit isn't set yet and not
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2628 // using a double-byte encoding (would become a lead
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2629 // byte).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2630 if ((modifiers & MOD_MASK_ALT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2631 && n == 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2632 && (typeahead[typeaheadlen] & 0x80) == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2633 && !enc_dbcs
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2634 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2635 {
1443
69bcc0c891d7 updated for version 7.1-158
vimboss
parents: 1414
diff changeset
2636 n = (*mb_char2bytes)(typeahead[typeaheadlen] | 0x80,
69bcc0c891d7 updated for version 7.1-158
vimboss
parents: 1414
diff changeset
2637 typeahead + typeaheadlen);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2638 modifiers &= ~MOD_MASK_ALT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2639 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2640
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2641 if (modifiers != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2642 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2643 // Prepend modifiers to the character.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2644 mch_memmove(typeahead + typeaheadlen + 3,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2645 typeahead + typeaheadlen, n);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2646 typeahead[typeaheadlen++] = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2647 typeahead[typeaheadlen++] = (char_u)KS_MODIFIER;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2648 typeahead[typeaheadlen++] = modifiers;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2649 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2650
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2651 typeaheadlen += n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2652
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2653 # ifdef MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2654 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2655 fputc(c, fdDump);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2656 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2657 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2658 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2659 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2660
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2661 # ifdef MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2662 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2663 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2664 fputs("]\n", fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2665 fflush(fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2666 }
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2667 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2668
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2669 theend:
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2670 // Move typeahead to "buf", as much as fits.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2671 len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2672 while (len < maxlen && typeaheadlen > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2673 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2674 buf[len++] = typeahead[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2675 mch_memmove(typeahead, typeahead + 1, --typeaheadlen);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2676 }
31287
fa309d9af73c patch 9.0.0977: it is not easy to see what client-server commands are doing
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
2677 # ifdef FEAT_EVAL
22065
d8b95a9cdaaa patch 8.2.1582: the channel log does not show typed text
Bram Moolenaar <Bram@vim.org>
parents: 21927
diff changeset
2678 if (len > 0)
d8b95a9cdaaa patch 8.2.1582: the channel log does not show typed text
Bram Moolenaar <Bram@vim.org>
parents: 21927
diff changeset
2679 {
d8b95a9cdaaa patch 8.2.1582: the channel log does not show typed text
Bram Moolenaar <Bram@vim.org>
parents: 21927
diff changeset
2680 buf[len] = NUL;
d8b95a9cdaaa patch 8.2.1582: the channel log does not show typed text
Bram Moolenaar <Bram@vim.org>
parents: 21927
diff changeset
2681 ch_log(NULL, "raw key input: \"%s\"", buf);
d8b95a9cdaaa patch 8.2.1582: the channel log does not show typed text
Bram Moolenaar <Bram@vim.org>
parents: 21927
diff changeset
2682 }
27521
3ad379c0ab28 patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 27455
diff changeset
2683 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2684 return len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2685
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2686 #else // FEAT_GUI_MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2687 return 0;
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2688 #endif // FEAT_GUI_MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2689 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2690
3927
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
2691 #ifndef PROTO
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
2692 # ifndef __MINGW32__
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2693 # include <shellapi.h> // required for FindExecutable()
3927
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
2694 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2695 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2696
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2697 /*
20593
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2698 * Return TRUE if "name" is an executable file, FALSE if not or it doesn't exist.
11054
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2699 * When returning TRUE and "path" is not NULL save the path and set "*path" to
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2700 * the allocated memory.
10
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
2701 * TODO: Should somehow check if it's really executable.
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2702 */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2703 static int
20593
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2704 executable_file(char *name, char_u **path)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2705 {
28702
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2706 int attrs = win32_getattrs((char_u *)name);
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2707
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2708 // The file doesn't exist or is a folder.
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2709 if (attrs == -1 || (attrs & FILE_ATTRIBUTE_DIRECTORY))
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2710 return FALSE;
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2711 // Check if the file is an AppExecLink, a special alias used by Windows
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2712 // Store for its apps.
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2713 if (attrs & FILE_ATTRIBUTE_REPARSE_POINT)
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2714 {
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2715 char_u *res = resolve_appexeclink((char_u *)name);
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2716 if (res == NULL)
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2717 return FALSE;
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2718 // The path is already absolute.
20593
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2719 if (path != NULL)
28702
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2720 *path = res;
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2721 else
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2722 vim_free(res);
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2723 }
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2724 else if (path != NULL)
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2725 *path = FullName_save((char_u *)name, FALSE);
99729fe344f7 patch 8.2.4875: MS-Windows: some .exe files are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 28672
diff changeset
2726 return TRUE;
20593
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2727 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2728
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2729 /*
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2730 * If "use_path" is TRUE: Return TRUE if "name" is in $PATH.
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2731 * If "use_path" is FALSE: Return TRUE if "name" exists.
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2732 * If "use_pathext" is TRUE search "name" with extensions in $PATHEXT.
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2733 * When returning TRUE and "path" is not NULL save the path and set "*path" to
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2734 * the allocated memory.
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2735 */
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2736 static int
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2737 executable_exists(char *name, char_u **path, int use_path, int use_pathext)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2738 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2739 // WinNT and later can use _MAX_PATH wide characters for a pathname, which
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2740 // means that the maximum pathname is _MAX_PATH * 3 bytes when 'enc' is
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2741 // UTF-8.
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2742 char_u buf[_MAX_PATH * 3];
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2743 size_t len = STRLEN(name);
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2744 size_t tmplen;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2745 char_u *p, *e, *e2;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2746 char_u *pathbuf = NULL;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2747 char_u *pathext = NULL;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2748 char_u *pathextbuf = NULL;
25084
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
2749 char_u *shname = NULL;
20593
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2750 int noext = FALSE;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2751 int retval = FALSE;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2752
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2753 if (len >= sizeof(buf)) // safety check
11054
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2754 return FALSE;
20593
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2755
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2756 // Using the name directly when a Unix-shell like 'shell'.
25084
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
2757 shname = gettail(p_sh);
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
2758 if (strstr((char *)shname, "sh") != NULL &&
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
2759 !(strstr((char *)shname, "powershell") != NULL
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
2760 || strstr((char *)shname, "pwsh") != NULL))
20593
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2761 noext = TRUE;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2762
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2763 if (use_pathext)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2764 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2765 pathext = mch_getenv("PATHEXT");
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2766 if (pathext == NULL)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2767 pathext = (char_u *)".com;.exe;.bat;.cmd";
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2768
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2769 if (noext == FALSE)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2770 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2771 /*
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2772 * Loop over all extensions in $PATHEXT.
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2773 * Check "name" ends with extension.
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2774 */
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2775 p = pathext;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2776 while (*p)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2777 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2778 if (p[0] == ';'
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2779 || (p[0] == '.' && (p[1] == NUL || p[1] == ';')))
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2780 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2781 // Skip empty or single ".".
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2782 ++p;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2783 continue;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2784 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2785 e = vim_strchr(p, ';');
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2786 if (e == NULL)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2787 e = p + STRLEN(p);
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2788 tmplen = e - p;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2789
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2790 if (_strnicoll(name + len - tmplen, (char *)p, tmplen) == 0)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2791 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2792 noext = TRUE;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2793 break;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2794 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2795
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2796 p = e;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2797 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2798 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2799 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2800
26771
fc859aea8cec patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
2801 // Prepend single "." to pathext, it means no extension added.
20593
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2802 if (pathext == NULL)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2803 pathext = (char_u *)".";
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2804 else if (noext == TRUE)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2805 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2806 if (pathextbuf == NULL)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2807 pathextbuf = alloc(STRLEN(pathext) + 3);
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2808 if (pathextbuf == NULL)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2809 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2810 retval = FALSE;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2811 goto theend;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2812 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2813 STRCPY(pathextbuf, ".;");
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2814 STRCAT(pathextbuf, pathext);
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2815 pathext = pathextbuf;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2816 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2817
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2818 // Use $PATH when "use_path" is TRUE and "name" is basename.
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2819 if (use_path && gettail((char_u *)name) == (char_u *)name)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2820 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2821 p = mch_getenv("PATH");
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2822 if (p != NULL)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2823 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2824 pathbuf = alloc(STRLEN(p) + 3);
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2825 if (pathbuf == NULL)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2826 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2827 retval = FALSE;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2828 goto theend;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2829 }
28672
e4de5b5193b4 patch 8.2.4860: MS-Windows: always uses current directory for executables
Bram Moolenaar <Bram@vim.org>
parents: 28517
diff changeset
2830
e4de5b5193b4 patch 8.2.4860: MS-Windows: always uses current directory for executables
Bram Moolenaar <Bram@vim.org>
parents: 28517
diff changeset
2831 if (mch_getenv("NoDefaultCurrentDirectoryInExePath") == NULL)
e4de5b5193b4 patch 8.2.4860: MS-Windows: always uses current directory for executables
Bram Moolenaar <Bram@vim.org>
parents: 28517
diff changeset
2832 STRCPY(pathbuf, ".;");
e4de5b5193b4 patch 8.2.4860: MS-Windows: always uses current directory for executables
Bram Moolenaar <Bram@vim.org>
parents: 28517
diff changeset
2833 else
e4de5b5193b4 patch 8.2.4860: MS-Windows: always uses current directory for executables
Bram Moolenaar <Bram@vim.org>
parents: 28517
diff changeset
2834 *pathbuf = NUL;
20593
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2835 STRCAT(pathbuf, p);
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2836 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2837 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2838
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2839 /*
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2840 * Walk through all entries in $PATH to check if "name" exists there and
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2841 * is an executable file.
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2842 */
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2843 p = (pathbuf != NULL) ? pathbuf : (char_u *)".";
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2844 while (*p)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2845 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2846 if (*p == ';') // Skip empty entry
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2847 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2848 ++p;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2849 continue;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2850 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2851 e = vim_strchr(p, ';');
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2852 if (e == NULL)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2853 e = p + STRLEN(p);
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2854
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2855 if (e - p + len + 2 > sizeof(buf))
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2856 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2857 retval = FALSE;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2858 goto theend;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2859 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2860 // A single "." that means current dir.
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2861 if (e - p == 1 && *p == '.')
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2862 STRCPY(buf, name);
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2863 else
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2864 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2865 vim_strncpy(buf, p, e - p);
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2866 add_pathsep(buf);
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2867 STRCAT(buf, name);
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2868 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2869 tmplen = STRLEN(buf);
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2870
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2871 /*
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2872 * Loop over all extensions in $PATHEXT.
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2873 * Check "name" with extension added.
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2874 */
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2875 p = pathext;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2876 while (*p)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2877 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2878 if (*p == ';')
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2879 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2880 // Skip empty entry
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2881 ++p;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2882 continue;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2883 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2884 e2 = vim_strchr(p, (int)';');
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2885 if (e2 == NULL)
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2886 e2 = p + STRLEN(p);
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2887
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2888 if (!(p[0] == '.' && (p[1] == NUL || p[1] == ';')))
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2889 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2890 // Not a single "." that means no extension is added.
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2891 if (e2 - p + tmplen + 1 > sizeof(buf))
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2892 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2893 retval = FALSE;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2894 goto theend;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2895 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2896 vim_strncpy(buf + tmplen, p, e2 - p);
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2897 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2898 if (executable_file((char *)buf, path))
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2899 {
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2900 retval = TRUE;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2901 goto theend;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2902 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2903
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2904 p = e2;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2905 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2906
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2907 p = e;
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2908 }
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2909
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2910 theend:
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2911 free(pathextbuf);
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2912 free(pathbuf);
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2913 return retval;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2914 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2915
15955
907481b9260f patch 8.1.0983: checking __CYGWIN32__ unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
2916 #if (defined(__MINGW32__) && __MSVCRT_VERSION__ >= 0x800) || \
907481b9260f patch 8.1.0983: checking __CYGWIN32__ unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
2917 (defined(_MSC_VER) && _MSC_VER >= 1400)
2584
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2918 /*
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2919 * Bad parameter handler.
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2920 *
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2921 * Certain MS CRT functions will intentionally crash when passed invalid
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2922 * parameters to highlight possible security holes. Setting this function as
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2923 * the bad parameter handler will prevent the crash.
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2924 *
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2925 * In debug builds the parameters contain CRT information that might help track
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2926 * down the source of a problem, but in non-debug builds the arguments are all
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2927 * NULL/0. Debug builds will also produce assert dialogs from the CRT, it is
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2928 * worth allowing these to make debugging of issues easier.
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2929 */
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2930 static void
29113
495d55210aac patch 8.2.5077: various warnings from clang on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents: 29105
diff changeset
2931 bad_param_handler(const wchar_t *expression UNUSED,
495d55210aac patch 8.2.5077: various warnings from clang on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents: 29105
diff changeset
2932 const wchar_t *function UNUSED,
495d55210aac patch 8.2.5077: various warnings from clang on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents: 29105
diff changeset
2933 const wchar_t *file UNUSED,
495d55210aac patch 8.2.5077: various warnings from clang on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents: 29105
diff changeset
2934 unsigned int line UNUSED,
495d55210aac patch 8.2.5077: various warnings from clang on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents: 29105
diff changeset
2935 uintptr_t pReserved UNUSED)
2584
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2936 {
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2937 }
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2938
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2939 # define SET_INVALID_PARAM_HANDLER \
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2940 ((void)_set_invalid_parameter_handler(bad_param_handler))
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2941 #else
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2942 # define SET_INVALID_PARAM_HANDLER
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2943 #endif
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2944
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15866
diff changeset
2945 #ifdef FEAT_GUI_MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2946
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2947 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2948 * GUI version of mch_init().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2949 */
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2950 static void
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
2951 mch_init_g(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2952 {
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2953 # ifndef __MINGW32__
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2954 extern int _fmode;
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
2955 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2956
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2957 // Silently handle invalid parameters to CRT functions
2584
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2958 SET_INVALID_PARAM_HANDLER;
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2959
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2960 // Let critical errors result in a failure, not in a dialog box. Required
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2961 // for the timestamp test to work on removed floppies.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2962 SetErrorMode(SEM_FAILCRITICALERRORS);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2963
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2964 _fmode = O_BINARY; // we do our own CR-LF translation
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2965
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2966 // Specify window size. Is there a place to get the default from?
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2967 Rows = 25;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2968 Columns = 80;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2969
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2970 // Look for 'vimrun'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2971 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2972 char_u vimrun_location[_MAX_PATH + 4];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2973
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2974 // First try in same directory as gvim.exe
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2975 STRCPY(vimrun_location, exe_name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2976 STRCPY(gettail(vimrun_location), "vimrun.exe");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2977 if (mch_getperm(vimrun_location) >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2978 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2979 if (*skiptowhite(vimrun_location) != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2980 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2981 // Enclose path with white space in double quotes.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2982 mch_memmove(vimrun_location + 1, vimrun_location,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2983 STRLEN(vimrun_location) + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2984 *vimrun_location = '"';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2985 STRCPY(gettail(vimrun_location), "vimrun\" ");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2986 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2987 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2988 STRCPY(gettail(vimrun_location), "vimrun ");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2989
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2990 vimrun_path = (char *)vim_strsave(vimrun_location);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2991 s_dont_use_vimrun = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2992 }
20593
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
2993 else if (executable_exists("vimrun.exe", NULL, TRUE, FALSE))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2994 s_dont_use_vimrun = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2995
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2996 // Don't give the warning for a missing vimrun.exe right now, but only
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2997 // when vimrun was supposed to be used. Don't bother people that do
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
2998 // not need vimrun.exe.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2999 if (s_dont_use_vimrun)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3000 need_vimrun_warning = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3001 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3002
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3003 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3004 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3005 * Otherwise the default "findstr /n" is used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3006 */
20593
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
3007 if (!executable_exists("findstr.exe", NULL, TRUE, FALSE))
28517
f73a9bdff3a3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28435
diff changeset
3008 set_option_value_give_err((char_u *)"grepprg",
f73a9bdff3a3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 28435
diff changeset
3009 0, (char_u *)"grep -n", 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3010
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3011 # ifdef FEAT_CLIPBOARD
4168
ff193256398a updated for version 7.3.836
Bram Moolenaar <bram@vim.org>
parents: 4122
diff changeset
3012 win_clip_init();
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3013 # endif
15725
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
3014
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
3015 vtp_flag_init();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3016 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3017
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3018
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3019 #endif // FEAT_GUI_MSWIN
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3020
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3021 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3022
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3023 # define SRWIDTH(sr) ((sr).Right - (sr).Left + 1)
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3024 # define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3025
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3026 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3027 * ClearConsoleBuffer()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3028 * Description:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3029 * Clears the entire contents of the console screen buffer, using the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3030 * specified attribute.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3031 * Returns:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3032 * TRUE on success
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3033 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3034 static BOOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3035 ClearConsoleBuffer(WORD wAttribute)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3036 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3037 CONSOLE_SCREEN_BUFFER_INFO csbi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3038 COORD coord;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3039 DWORD NumCells, dummy;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3040
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3041 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3042 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3043
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3044 NumCells = csbi.dwSize.X * csbi.dwSize.Y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3045 coord.X = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3046 coord.Y = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3047 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3048 coord, &dummy))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3049 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3050 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3051 coord, &dummy))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3052 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3053
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3054 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3055 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3056
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3057 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3058 * FitConsoleWindow()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3059 * Description:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3060 * Checks if the console window will fit within given buffer dimensions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3061 * Also, if requested, will shrink the window to fit.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3062 * Returns:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3063 * TRUE on success
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3064 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3065 static BOOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3066 FitConsoleWindow(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3067 COORD dwBufferSize,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3068 BOOL WantAdjust)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3069 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3070 CONSOLE_SCREEN_BUFFER_INFO csbi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3071 COORD dwWindowSize;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3072 BOOL NeedAdjust = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3073
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3074 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3075 return FALSE;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3076
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3077 /*
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3078 * A buffer resize will fail if the current console window does
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3079 * not lie completely within that buffer. To avoid this, we might
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3080 * have to move and possibly shrink the window.
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3081 */
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3082 if (csbi.srWindow.Right >= dwBufferSize.X)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3083 {
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3084 dwWindowSize.X = SRWIDTH(csbi.srWindow);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3085 if (dwWindowSize.X > dwBufferSize.X)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3086 dwWindowSize.X = dwBufferSize.X;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3087 csbi.srWindow.Right = dwBufferSize.X - 1;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3088 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3089 NeedAdjust = TRUE;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3090 }
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3091 if (csbi.srWindow.Bottom >= dwBufferSize.Y)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3092 {
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3093 dwWindowSize.Y = SRHEIGHT(csbi.srWindow);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3094 if (dwWindowSize.Y > dwBufferSize.Y)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3095 dwWindowSize.Y = dwBufferSize.Y;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3096 csbi.srWindow.Bottom = dwBufferSize.Y - 1;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3097 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3098 NeedAdjust = TRUE;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3099 }
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3100 if (NeedAdjust && WantAdjust)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3101 {
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3102 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow))
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3103 return FALSE;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3104 }
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3105 return TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3106 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3107
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3108 typedef struct ConsoleBufferStruct
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3109 {
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3110 BOOL IsValid;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3111 CONSOLE_SCREEN_BUFFER_INFO Info;
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3112 PCHAR_INFO Buffer;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3113 COORD BufferSize;
12050
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3114 PSMALL_RECT Regions;
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3115 int NumRegions;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3116 } ConsoleBuffer;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3117
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3118 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3119 * SaveConsoleBuffer()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3120 * Description:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3121 * Saves important information about the console buffer, including the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3122 * actual buffer contents. The saved information is suitable for later
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3123 * restoration by RestoreConsoleBuffer().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3124 * Returns:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3125 * TRUE if all information was saved; FALSE otherwise
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3126 * If FALSE, still sets cb->IsValid if buffer characteristics were saved.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3127 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3128 static BOOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3129 SaveConsoleBuffer(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3130 ConsoleBuffer *cb)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3131 {
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3132 DWORD NumCells;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3133 COORD BufferCoord;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3134 SMALL_RECT ReadRegion;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3135 WORD Y, Y_incr;
12050
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3136 int i, numregions;
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3137
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3138 if (cb == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3139 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3140
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3141 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3142 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3143 cb->IsValid = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3144 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3145 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3146 cb->IsValid = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3147
31067
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
3148 // VTP uses alternate screen buffer.
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
3149 // No need to save buffer contents for restoration.
31507
26a32a3f05af patch 9.0.1086: display wrong in Windows terminal after exiting Vim
Bram Moolenaar <Bram@vim.org>
parents: 31505
diff changeset
3150 if (use_alternate_screen_buffer)
31067
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
3151 return TRUE;
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
3152
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3153 /*
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3154 * Allocate a buffer large enough to hold the entire console screen
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3155 * buffer. If this ConsoleBuffer structure has already been initialized
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3156 * with a buffer of the correct size, then just use that one.
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3157 */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3158 if (!cb->IsValid || cb->Buffer == NULL ||
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3159 cb->BufferSize.X != cb->Info.dwSize.X ||
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3160 cb->BufferSize.Y != cb->Info.dwSize.Y)
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3161 {
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3162 cb->BufferSize.X = cb->Info.dwSize.X;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3163 cb->BufferSize.Y = cb->Info.dwSize.Y;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3164 NumCells = cb->BufferSize.X * cb->BufferSize.Y;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3165 vim_free(cb->Buffer);
16825
ce04ebdf26b8 patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents: 16782
diff changeset
3166 cb->Buffer = ALLOC_MULT(CHAR_INFO, NumCells);
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3167 if (cb->Buffer == NULL)
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3168 return FALSE;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3169 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3170
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3171 /*
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3172 * We will now copy the console screen buffer into our buffer.
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3173 * ReadConsoleOutput() seems to be limited as far as how much you
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3174 * can read at a time. Empirically, this number seems to be about
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3175 * 12000 cells (rows * columns). Start at position (0, 0) and copy
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3176 * in chunks until it is all copied. The chunks will all have the
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3177 * same horizontal characteristics, so initialize them now. The
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3178 * height of each chunk will be (12000 / width).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3179 */
7078
383d6f39669b commit https://github.com/vim/vim/commit/615942452eb74eee7d8386fd3d76a1534181fa06
Christian Brabandt <cb@256bit.org>
parents: 6981
diff changeset
3180 BufferCoord.X = 0;
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3181 ReadRegion.Left = 0;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3182 ReadRegion.Right = cb->Info.dwSize.X - 1;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3183 Y_incr = 12000 / cb->Info.dwSize.X;
12050
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3184
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3185 numregions = (cb->Info.dwSize.Y + Y_incr - 1) / Y_incr;
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3186 if (cb->Regions == NULL || numregions != cb->NumRegions)
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3187 {
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3188 cb->NumRegions = numregions;
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3189 vim_free(cb->Regions);
16825
ce04ebdf26b8 patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents: 16782
diff changeset
3190 cb->Regions = ALLOC_MULT(SMALL_RECT, cb->NumRegions);
12050
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3191 if (cb->Regions == NULL)
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3192 {
13244
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13170
diff changeset
3193 VIM_CLEAR(cb->Buffer);
12050
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3194 return FALSE;
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3195 }
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3196 }
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3197
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3198 for (i = 0, Y = 0; i < cb->NumRegions; i++, Y += Y_incr)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3199 {
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3200 /*
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3201 * Read into position (0, Y) in our buffer.
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3202 */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3203 BufferCoord.Y = Y;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3204 /*
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3205 * Read the region whose top left corner is (0, Y) and whose bottom
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3206 * right corner is (width - 1, Y + Y_incr - 1). This should define
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3207 * a region of size width by Y_incr. Don't worry if this region is
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3208 * too large for the remaining buffer; it will be cropped.
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3209 */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3210 ReadRegion.Top = Y;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3211 ReadRegion.Bottom = Y + Y_incr - 1;
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3212 if (!ReadConsoleOutputW(g_hConOut, // output handle
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3213 cb->Buffer, // our buffer
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3214 cb->BufferSize, // dimensions of our buffer
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3215 BufferCoord, // offset in our buffer
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3216 &ReadRegion)) // region to save
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3217 {
13244
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13170
diff changeset
3218 VIM_CLEAR(cb->Buffer);
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13170
diff changeset
3219 VIM_CLEAR(cb->Regions);
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3220 return FALSE;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3221 }
12050
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3222 cb->Regions[i] = ReadRegion;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3223 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3224
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3225 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3226 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3227
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3228 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3229 * RestoreConsoleBuffer()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3230 * Description:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3231 * Restores important information about the console buffer, including the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3232 * actual buffer contents, if desired. The information to restore is in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3233 * the same format used by SaveConsoleBuffer().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3234 * Returns:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3235 * TRUE on success
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3236 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3237 static BOOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3238 RestoreConsoleBuffer(
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3239 ConsoleBuffer *cb,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3240 BOOL RestoreScreen)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3241 {
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3242 COORD BufferCoord;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3243 SMALL_RECT WriteRegion;
12050
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3244 int i;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3245
31067
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
3246 // VTP uses alternate screen buffer.
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
3247 // No need to restore buffer contents.
31507
26a32a3f05af patch 9.0.1086: display wrong in Windows terminal after exiting Vim
Bram Moolenaar <Bram@vim.org>
parents: 31505
diff changeset
3248 if (use_alternate_screen_buffer)
31067
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
3249 return TRUE;
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
3250
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3251 if (cb == NULL || !cb->IsValid)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3252 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3253
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3254 /*
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3255 * Before restoring the buffer contents, clear the current buffer, and
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3256 * restore the cursor position and window information. Doing this now
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3257 * prevents old buffer contents from "flashing" onto the screen.
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3258 */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3259 if (RestoreScreen)
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3260 ClearConsoleBuffer(cb->Info.wAttributes);
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3261
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3262 FitConsoleWindow(cb->Info.dwSize, TRUE);
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3263 if (!SetConsoleScreenBufferSize(g_hConOut, cb->Info.dwSize))
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3264 return FALSE;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3265 if (!SetConsoleTextAttribute(g_hConOut, cb->Info.wAttributes))
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3266 return FALSE;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3267
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3268 if (!RestoreScreen)
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3269 {
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3270 /*
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3271 * No need to restore the screen buffer contents, so we're done.
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3272 */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3273 return TRUE;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3274 }
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3275
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3276 if (!SetConsoleCursorPosition(g_hConOut, cb->Info.dwCursorPosition))
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3277 return FALSE;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3278 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &cb->Info.srWindow))
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3279 return FALSE;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3280
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3281 /*
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3282 * Restore the screen buffer contents.
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3283 */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3284 if (cb->Buffer != NULL)
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3285 {
12050
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3286 for (i = 0; i < cb->NumRegions; i++)
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3287 {
12050
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3288 BufferCoord.X = cb->Regions[i].Left;
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3289 BufferCoord.Y = cb->Regions[i].Top;
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3290 WriteRegion = cb->Regions[i];
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3291 if (!WriteConsoleOutputW(g_hConOut, // output handle
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3292 cb->Buffer, // our buffer
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3293 cb->BufferSize, // dimensions of our buffer
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3294 BufferCoord, // offset in our buffer
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3295 &WriteRegion)) // region to restore
12050
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
3296 return FALSE;
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3297 }
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3298 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3299
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3300 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3301 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3302
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3303 # define FEAT_RESTORE_ORIG_SCREEN
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3304 # ifdef FEAT_RESTORE_ORIG_SCREEN
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3305 static ConsoleBuffer g_cbOrig = { 0 };
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3306 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3307 static ConsoleBuffer g_cbNonTermcap = { 0 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3308 static ConsoleBuffer g_cbTermcap = { 0 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3309
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3310 char g_szOrigTitle[256] = { 0 };
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3311 HWND g_hWnd = NULL; // also used in os_mswin.c
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3312 static HICON g_hOrigIconSmall = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3313 static HICON g_hOrigIcon = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3314 static HICON g_hVimIcon = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3315 static BOOL g_fCanChangeIcon = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3316
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3317 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3318 * GetConsoleIcon()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3319 * Description:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3320 * Attempts to retrieve the small icon and/or the big icon currently in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3321 * use by a given window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3322 * Returns:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3323 * TRUE on success
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3324 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3325 static BOOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3326 GetConsoleIcon(
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3327 HWND hWnd,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3328 HICON *phIconSmall,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3329 HICON *phIcon)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3330 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3331 if (hWnd == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3332 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3333
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3334 if (phIconSmall != NULL)
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3335 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3336 (WPARAM)ICON_SMALL, (LPARAM)0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3337 if (phIcon != NULL)
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3338 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3339 (WPARAM)ICON_BIG, (LPARAM)0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3340 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3341 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3342
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3343 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3344 * SetConsoleIcon()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3345 * Description:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3346 * Attempts to change the small icon and/or the big icon currently in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3347 * use by a given window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3348 * Returns:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3349 * TRUE on success
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3350 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3351 static BOOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3352 SetConsoleIcon(
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3353 HWND hWnd,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3354 HICON hIconSmall,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3355 HICON hIcon)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3356 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3357 if (hWnd == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3358 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3359
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3360 if (hIconSmall != NULL)
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3361 SendMessage(hWnd, WM_SETICON,
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3362 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3363 if (hIcon != NULL)
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3364 SendMessage(hWnd, WM_SETICON,
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3365 (WPARAM)ICON_BIG, (LPARAM) hIcon);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3366 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3367 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3368
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3369 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3370 * SaveConsoleTitleAndIcon()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3371 * Description:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3372 * Saves the current console window title in g_szOrigTitle, for later
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3373 * restoration. Also, attempts to obtain a handle to the console window,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3374 * and use it to save the small and big icons currently in use by the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3375 * console window. This is not always possible on some versions of Windows;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3376 * nor is it possible when running Vim remotely using Telnet (since the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3377 * console window the user sees is owned by a remote process).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3378 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3379 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3380 SaveConsoleTitleAndIcon(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3381 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3382 // Save the original title.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3383 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle)))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3384 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3385
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3386 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3387 * Obtain a handle to the console window using GetConsoleWindow() from
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3388 * KERNEL32.DLL; we need to handle in order to change the window icon.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3389 * This function only exists on NT-based Windows, starting with Windows
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3390 * 2000. On older operating systems, we can't change the window icon
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3391 * anyway.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3392 */
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3393 g_hWnd = GetConsoleWindow();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3394 if (g_hWnd == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3395 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3396
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3397 // Save the original console window icon.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3398 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3399 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3400 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3401
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3402 // Extract the first icon contained in the Vim executable.
30200
499c766d0c14 patch 9.0.0436: CI: running tests in parallel causes flakiness
Bram Moolenaar <Bram@vim.org>
parents: 30112
diff changeset
3403 if (
499c766d0c14 patch 9.0.0436: CI: running tests in parallel causes flakiness
Bram Moolenaar <Bram@vim.org>
parents: 30112
diff changeset
3404 # ifdef FEAT_LIBCALL
499c766d0c14 patch 9.0.0436: CI: running tests in parallel causes flakiness
Bram Moolenaar <Bram@vim.org>
parents: 30112
diff changeset
3405 mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL ||
499c766d0c14 patch 9.0.0436: CI: running tests in parallel causes flakiness
Bram Moolenaar <Bram@vim.org>
parents: 30112
diff changeset
3406 # endif
499c766d0c14 patch 9.0.0436: CI: running tests in parallel causes flakiness
Bram Moolenaar <Bram@vim.org>
parents: 30112
diff changeset
3407 g_hVimIcon == NULL)
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3408 g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3409 if (g_hVimIcon != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3410 g_fCanChangeIcon = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3411 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3412
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3413 static int g_fWindInitCalled = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3414 static int g_fTermcapMode = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3415 static CONSOLE_CURSOR_INFO g_cci;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3416
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3417 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3418 * non-GUI version of mch_init().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3419 */
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3420 static void
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3421 mch_init_c(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3422 {
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3423 # ifndef FEAT_RESTORE_ORIG_SCREEN
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3424 CONSOLE_SCREEN_BUFFER_INFO csbi;
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3425 # endif
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3426 # ifndef __MINGW32__
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3427 extern int _fmode;
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3428 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3429
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3430 // Silently handle invalid parameters to CRT functions
2584
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
3431 SET_INVALID_PARAM_HANDLER;
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
3432
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3433 // Let critical errors result in a failure, not in a dialog box. Required
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3434 // for the timestamp test to work on removed floppies.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3435 SetErrorMode(SEM_FAILCRITICALERRORS);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3436
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3437 _fmode = O_BINARY; // we do our own CR-LF translation
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3438 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3439
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3440 // Obtain handles for the standard Console I/O devices
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3441 if (read_cmd_fd == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3442 g_hConIn = GetStdHandle(STD_INPUT_HANDLE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3443 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3444 create_conin();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3445 g_hConOut = GetStdHandle(STD_OUTPUT_HANDLE);
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3446
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
3447 wt_init();
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
3448 vtp_flag_init();
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3449 # ifdef FEAT_RESTORE_ORIG_SCREEN
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3450 // Save the initial console buffer for later restoration
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3451 SaveConsoleBuffer(&g_cbOrig);
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3452 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes;
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3453 # else
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3454 // Get current text attributes
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3455 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
3456 g_attrCurrent = g_attrDefault = csbi.wAttributes;
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3457 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3458 if (cterm_normal_fg_color == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3459 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3460 if (cterm_normal_bg_color == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3461 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3462
15967
ddd82b1c9e9d patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents: 15955
diff changeset
3463 // Fg and Bg color index number at startup
14650
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
3464 g_color_index_fg = g_attrDefault & 0xf;
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
3465 g_color_index_bg = (g_attrDefault >> 4) & 0xf;
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
3466
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3467 // set termcap codes to current text attributes
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3468 update_tcap(g_attrCurrent);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3469
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3470 GetConsoleCursorInfo(g_hConOut, &g_cci);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3471 GetConsoleMode(g_hConIn, &g_cmodein);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3472 GetConsoleMode(g_hConOut, &g_cmodeout);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3473
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3474 SaveConsoleTitleAndIcon();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3475 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3476 * Set both the small and big icons of the console window to Vim's icon.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3477 * Note that Vim presently only has one size of icon (32x32), but it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3478 * automatically gets scaled down to 16x16 when setting the small icon.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3479 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3480 if (g_fCanChangeIcon)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3481 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3482
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3483 ui_get_shellsize();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3484
31800
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
3485 vtp_init();
31839
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
3486 // Switch to a new alternate screen buffer.
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
3487 if (use_alternate_screen_buffer)
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
3488 vtp_printf("\033[?1049h");
31800
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
3489
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3490 # ifdef MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3491 fdDump = fopen("dump", "wt");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3492
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3493 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3494 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3495 time_t t;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3496
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3497 time(&t);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3498 fputs(ctime(&t), fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3499 fflush(fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3500 }
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3501 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3502
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3503 g_fWindInitCalled = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3504
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3505 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3506
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3507 # ifdef FEAT_CLIPBOARD
4168
ff193256398a updated for version 7.3.836
Bram Moolenaar <bram@vim.org>
parents: 4122
diff changeset
3508 win_clip_init();
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3509 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3510 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3511
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3512 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3513 * non-GUI version of mch_exit().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3514 * Shut down and exit with status `r'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3515 * Careful: mch_exit() may be called before mch_init()!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3516 */
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3517 static void
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3518 mch_exit_c(int r)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3519 {
10835
c9da7f9137af patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents: 10783
diff changeset
3520 exiting = TRUE;
c9da7f9137af patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents: 10783
diff changeset
3521
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
3522 vtp_exit();
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
3523
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3524 stoptermcap();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3525 if (g_fWindInitCalled)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3526 settmode(TMODE_COOK);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3527
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3528 ml_close_all(TRUE); // remove all memfiles
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3529
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3530 if (g_fWindInitCalled)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3531 {
14479
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14473
diff changeset
3532 mch_restore_title(SAVE_RESTORE_BOTH);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3533 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3534 * Restore both the small and big icons of the console window to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3535 * what they were at startup. Don't do this when the window is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3536 * closed, Vim would hang here.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3537 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3538 if (g_fCanChangeIcon && !g_fForceExit)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3539 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3540
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3541 # ifdef MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3542 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3543 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3544 time_t t;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3545
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3546 time(&t);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3547 fputs(ctime(&t), fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3548 fclose(fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3549 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3550 fdDump = NULL;
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3551 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3552 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3553
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3554 SetConsoleCursorInfo(g_hConOut, &g_cci);
24749
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
3555 SetConsoleMode(g_hConIn, g_cmodein | ENABLE_EXTENDED_FLAGS);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3556 SetConsoleMode(g_hConOut, g_cmodeout);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3557
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3558 # ifdef DYNAMIC_GETTEXT
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3559 dyn_libintl_end();
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3560 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3561
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3562 exit(r);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3563 }
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3564 #endif // !FEAT_GUI_MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3565
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3566 void
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3567 mch_init(void)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3568 {
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3569 #ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3570 if (gui.starting)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3571 mch_init_g();
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3572 else
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3573 mch_init_c();
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3574 #elif defined(FEAT_GUI_MSWIN)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3575 mch_init_g();
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3576 #else
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3577 mch_init_c();
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3578 #endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3579 }
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3580
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3581 void
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3582 mch_exit(int r)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3583 {
20087
b378f860d4ab patch 8.2.0599: Netbeans interface insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 20073
diff changeset
3584 #ifdef FEAT_NETBEANS_INTG
b378f860d4ab patch 8.2.0599: Netbeans interface insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 20073
diff changeset
3585 netbeans_send_disconnect();
b378f860d4ab patch 8.2.0599: Netbeans interface insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 20073
diff changeset
3586 #endif
b378f860d4ab patch 8.2.0599: Netbeans interface insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 20073
diff changeset
3587
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3588 #ifdef VIMDLL
16734
e3feaa3e5f10 patch 8.1.1369: get E484 when using system() during GUI startup
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
3589 if (gui.in_use || gui.starting)
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3590 mch_exit_g(r);
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3591 else
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3592 mch_exit_c(r);
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3593 #elif defined(FEAT_GUI_MSWIN)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3594 mch_exit_g(r);
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3595 #else
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3596 mch_exit_c(r);
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3597 #endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3598 }
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3599
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3600 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3601 * Do we have an interactive window?
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3602 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3603 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3604 mch_check_win(
10783
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
3605 int argc UNUSED,
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
3606 char **argv UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3607 {
31962
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31839
diff changeset
3608 mch_get_exe_name();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3609
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3610 #if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3611 return OK; // GUI always has a tty
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3612 #else
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3613 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3614 if (gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3615 return OK;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
3616 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3617 if (isatty(1))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3618 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3619 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3620 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3621 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3622
5326
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
3623 /*
16156
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3624 * Set the case of the file name, if it already exists.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3625 * When "len" is > 0, also expand short to long filenames.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3626 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3627 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3628 fname_case(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3629 char_u *name,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3630 int len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3631 {
16156
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3632 int flen;
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3633 WCHAR *p;
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3634 WCHAR buf[_MAX_PATH + 1];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3635
434
9595cf1d80a7 updated for version 7.0112
vimboss
parents: 417
diff changeset
3636 flen = (int)STRLEN(name);
5326
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
3637 if (flen == 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3638 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3639
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3640 slash_adjust(name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3641
16156
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3642 p = enc_to_utf16(name, NULL);
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3643 if (p == NULL)
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3644 return;
16156
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3645
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3646 if (GetLongPathNameW(p, buf, _MAX_PATH))
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3647 {
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3648 char_u *q = utf16_to_enc(buf, NULL);
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3649
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3650 if (q != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3651 {
16156
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3652 if (len > 0 || flen >= (int)STRLEN(q))
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3653 vim_strncpy(name, q, (len > 0) ? len - 1 : flen);
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3654 vim_free(q);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3655 }
16156
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3656 }
602f1888a230 patch 8.1.1083: MS-Windows: hang when opening a file on network share
Bram Moolenaar <Bram@vim.org>
parents: 16109
diff changeset
3657 vim_free(p);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3658 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3659
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3660
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3661 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3662 * Insert user name in s[len].
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3663 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3664 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3665 mch_get_user_name(
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3666 char_u *s,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3667 int len)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3668 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3669 WCHAR wszUserName[256 + 1]; // UNLEN is 256
24768
7334bf933510 patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents: 24749
diff changeset
3670 DWORD wcch = ARRAY_LENGTH(wszUserName);
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3671
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3672 if (GetUserNameW(wszUserName, &wcch))
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3673 {
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3674 char_u *p = utf16_to_enc(wszUserName, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3675
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3676 if (p != NULL)
5549
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3677 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3678 vim_strncpy(s, p, len - 1);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3679 vim_free(p);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3680 return OK;
5549
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3681 }
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3682 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3683 s[0] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3684 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3685 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3686
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3687
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3688 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3689 * Insert host name in s[len].
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3690 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3691 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3692 mch_get_host_name(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3693 char_u *s,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3694 int len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3695 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3696 WCHAR wszHostName[256 + 1];
24768
7334bf933510 patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents: 24749
diff changeset
3697 DWORD wcch = ARRAY_LENGTH(wszHostName);
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3698
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3699 if (!GetComputerNameW(wszHostName, &wcch))
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3700 return;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3701
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3702 char_u *p = utf16_to_enc(wszHostName, NULL);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3703 if (p == NULL)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3704 return;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3705
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3706 vim_strncpy(s, p, len - 1);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3707 vim_free(p);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3708 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3709
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3710
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3711 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3712 * return process ID
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3713 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3714 long
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3715 mch_get_pid(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3716 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3717 return (long)GetCurrentProcessId();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3718 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3719
16453
4e9bea9b8025 patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
3720 /*
4e9bea9b8025 patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
3721 * return TRUE if process "pid" is still running
4e9bea9b8025 patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
3722 */
4e9bea9b8025 patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
3723 int
16455
1ae13586edf8 patch 8.1.1232: can't build on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents: 16453
diff changeset
3724 mch_process_running(long pid)
16453
4e9bea9b8025 patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
3725 {
4e9bea9b8025 patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
3726 HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, 0, (DWORD)pid);
4e9bea9b8025 patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
3727 DWORD status = 0;
4e9bea9b8025 patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
3728 int ret = FALSE;
4e9bea9b8025 patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
3729
4e9bea9b8025 patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
3730 if (hProcess == NULL)
4e9bea9b8025 patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
3731 return FALSE; // might not have access
4e9bea9b8025 patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
3732 if (GetExitCodeProcess(hProcess, &status) )
4e9bea9b8025 patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
3733 ret = status == STILL_ACTIVE;
4e9bea9b8025 patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
3734 CloseHandle(hProcess);
4e9bea9b8025 patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
3735 return ret;
4e9bea9b8025 patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents: 16451
diff changeset
3736 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3737
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3738 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3739 * Get name of current directory into buffer 'buf' of length 'len' bytes.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3740 * Return OK for success, FAIL for failure.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3741 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3742 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3743 mch_dirname(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3744 char_u *buf,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3745 int len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3746 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3747 WCHAR wbuf[_MAX_PATH + 1];
14561
3ea4a48213e6 patch 8.1.0294: MS-Windows: sometimes uses short directory name
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3748
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3749 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3750 * Originally this was:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3751 * return (getcwd(buf, len) != NULL ? OK : FAIL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3752 * But the Win32s known bug list says that getcwd() doesn't work
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3753 * so use the Win32 system call instead. <Negri>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3754 */
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3755 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) == 0)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3756 return FAIL;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3757
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3758 WCHAR wcbuf[_MAX_PATH + 1];
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3759 char_u *p = NULL;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3760
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3761 if (GetLongPathNameW(wbuf, wcbuf, _MAX_PATH) != 0)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3762 {
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3763 p = utf16_to_enc(wcbuf, NULL);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3764 if (STRLEN(p) >= (size_t)len)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3765 {
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3766 // long path name is too long, fall back to short one
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3767 vim_free(p);
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3768 p = NULL;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3769 }
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3770 }
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3771 if (p == NULL)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3772 p = utf16_to_enc(wbuf, NULL);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3773
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3774 if (p == NULL)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3775 return FAIL;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3776
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3777 vim_strncpy(buf, p, len - 1);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3778 vim_free(p);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3779 return OK;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3780 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3781
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3782 /*
5494
645358801356 updated for version 7.4.096
Bram Moolenaar <bram@vim.org>
parents: 5376
diff changeset
3783 * Get file permissions for "name".
645358801356 updated for version 7.4.096
Bram Moolenaar <bram@vim.org>
parents: 5376
diff changeset
3784 * Return mode_t or -1 for error.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3785 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3786 long
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3787 mch_getperm(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3788 {
9387
f094d4085014 commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents: 8949
diff changeset
3789 stat_T st;
5494
645358801356 updated for version 7.4.096
Bram Moolenaar <bram@vim.org>
parents: 5376
diff changeset
3790 int n;
645358801356 updated for version 7.4.096
Bram Moolenaar <bram@vim.org>
parents: 5376
diff changeset
3791
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3792 n = mch_stat((char *)name, &st);
5588
2ca470c6096e updated for version 7.4.141
Bram Moolenaar <bram@vim.org>
parents: 5580
diff changeset
3793 return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3794 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3795
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3796
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3797 /*
5229
1261caf9bc51 updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents: 5112
diff changeset
3798 * Set file permission for "name" to "perm".
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3799 *
5229
1261caf9bc51 updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents: 5112
diff changeset
3800 * Return FAIL for failure, OK otherwise.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3801 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3802 int
5229
1261caf9bc51 updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents: 5112
diff changeset
3803 mch_setperm(char_u *name, long perm)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3804 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3805 long n;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3806 WCHAR *p;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3807
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3808 p = enc_to_utf16(name, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3809 if (p == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3810 return FAIL;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3811
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3812 n = _wchmod(p, perm);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3813 vim_free(p);
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3814 if (n == -1)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3815 return FAIL;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3816
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3817 win32_set_archive(name);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3818
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3819 return OK;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3820 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3821
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3822 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3823 * Set hidden flag for "name".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3824 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3825 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3826 mch_hide(char_u *name)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3827 {
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3828 int attrs = win32_getattrs(name);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3829 if (attrs == -1)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3830 return;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3831
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3832 attrs |= FILE_ATTRIBUTE_HIDDEN;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3833 win32_setattrs(name, attrs);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3834 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3835
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3836 /*
7194
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3837 * Return TRUE if file "name" exists and is hidden.
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3838 */
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3839 int
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3840 mch_ishidden(char_u *name)
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3841 {
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3842 int f = win32_getattrs(name);
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3843
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3844 if (f == -1)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3845 return FALSE; // file does not exist at all
7194
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3846
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3847 return (f & FILE_ATTRIBUTE_HIDDEN) != 0;
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3848 }
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3849
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3850 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3851 * return TRUE if "name" is a directory
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3852 * return FALSE if "name" is not a directory or upon error
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3853 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3854 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3855 mch_isdir(char_u *name)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3856 {
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3857 int f = win32_getattrs(name);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3858
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3859 if (f == -1)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
3860 return FALSE; // file does not exist at all
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3861
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3862 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3863 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3864
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3865 /*
7657
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3866 * return TRUE if "name" is a directory, NOT a symlink to a directory
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3867 * return FALSE if "name" is not a directory
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3868 * return FALSE for error
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3869 */
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3870 int
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3871 mch_isrealdir(char_u *name)
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3872 {
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3873 return mch_isdir(name) && !mch_is_symbolic_link(name);
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3874 }
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3875
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3876 /*
2803
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3877 * Create directory "name".
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3878 * Return 0 on success, -1 on error.
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3879 */
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3880 int
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3881 mch_mkdir(char_u *name)
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3882 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3883 WCHAR *p;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3884 int retval;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3885
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3886 p = enc_to_utf16(name, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3887 if (p == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3888 return -1;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3889 retval = _wmkdir(p);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3890 vim_free(p);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3891 return retval;
2803
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3892 }
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3893
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3894 /*
7619
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3895 * Delete directory "name".
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3896 * Return 0 on success, -1 on error.
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3897 */
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3898 int
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3899 mch_rmdir(char_u *name)
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3900 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3901 WCHAR *p;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3902 int retval;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3903
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3904 p = enc_to_utf16(name, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3905 if (p == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3906 return -1;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3907 retval = _wrmdir(p);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3908 vim_free(p);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3909 return retval;
7619
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3910 }
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3911
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3912 /*
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3913 * Return TRUE if file "fname" has more than one link.
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3914 */
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3915 int
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3916 mch_is_hard_link(char_u *fname)
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3917 {
2793
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3918 BY_HANDLE_FILE_INFORMATION info;
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3919
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3920 return win32_fileinfo(fname, &info) == FILEINFO_OK
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3921 && info.nNumberOfLinks > 1;
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3922 }
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3923
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3924 /*
7657
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3925 * Return TRUE if "name" is a symbolic link (or a junction).
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3926 */
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3927 int
7657
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3928 mch_is_symbolic_link(char_u *name)
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3929 {
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3930 HANDLE hFind;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3931 int res = FALSE;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3932 DWORD fileFlags = 0, reparseTag = 0;
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3933 WCHAR *wn;
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3934 WIN32_FIND_DATAW findDataW;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3935
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3936 wn = enc_to_utf16(name, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3937 if (wn == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3938 return FALSE;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3939
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3940 hFind = FindFirstFileW(wn, &findDataW);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3941 vim_free(wn);
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3942 if (hFind != INVALID_HANDLE_VALUE)
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3943 {
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3944 fileFlags = findDataW.dwFileAttributes;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3945 reparseTag = findDataW.dwReserved0;
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3946 FindClose(hFind);
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3947 }
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3948
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3949 if ((fileFlags & FILE_ATTRIBUTE_REPARSE_POINT)
7657
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3950 && (reparseTag == IO_REPARSE_TAG_SYMLINK
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3951 || reparseTag == IO_REPARSE_TAG_MOUNT_POINT))
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3952 res = TRUE;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3953
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3954 return res;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3955 }
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3956
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3957 /*
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3958 * Return TRUE if file "fname" has more than one link or if it is a symbolic
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3959 * link.
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3960 */
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3961 int
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3962 mch_is_linked(char_u *fname)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3963 {
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3964 if (mch_is_hard_link(fname) || mch_is_symbolic_link(fname))
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3965 return TRUE;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3966 return FALSE;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3967 }
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3968
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3969 /*
2793
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3970 * Get the by-handle-file-information for "fname".
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3971 * Returns FILEINFO_OK when OK.
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
3972 * Returns FILEINFO_ENC_FAIL when enc_to_utf16() failed.
2793
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3973 * Returns FILEINFO_READ_FAIL when CreateFile() failed.
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3974 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed.
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3975 */
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3976 int
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3977 win32_fileinfo(char_u *fname, BY_HANDLE_FILE_INFORMATION *info)
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3978 {
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3979 HANDLE hFile;
2793
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3980 int res = FILEINFO_READ_FAIL;
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3981 WCHAR *wn;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3982
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3983 wn = enc_to_utf16(fname, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3984 if (wn == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3985 return FILEINFO_ENC_FAIL;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3986
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3987 hFile = CreateFileW(wn, // file name
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3988 GENERIC_READ, // access mode
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3989 FILE_SHARE_READ | FILE_SHARE_WRITE, // share mode
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3990 NULL, // security descriptor
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3991 OPEN_EXISTING, // creation disposition
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3992 FILE_FLAG_BACKUP_SEMANTICS, // file attributes
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3993 NULL); // handle to template file
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
3994 vim_free(wn);
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3995
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3996 if (hFile == INVALID_HANDLE_VALUE)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3997 return FILEINFO_READ_FAIL;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3998
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
3999 if (GetFileInformationByHandle(hFile, info) != 0)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
4000 res = FILEINFO_OK;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
4001 else
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
4002 res = FILEINFO_INFO_FAIL;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
4003 CloseHandle(hFile);
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
4004
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
4005 return res;
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
4006 }
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
4007
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
4008 /*
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4009 * get file attributes for `name'
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4010 * -1 : error
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4011 * else FILE_ATTRIBUTE_* defined in winnt.h
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4012 */
5494
645358801356 updated for version 7.4.096
Bram Moolenaar <bram@vim.org>
parents: 5376
diff changeset
4013 static int
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4014 win32_getattrs(char_u *name)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4015 {
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4016 int attr;
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4017 WCHAR *p;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4018
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4019 p = enc_to_utf16(name, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4020 if (p == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4021 return INVALID_FILE_ATTRIBUTES;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4022
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4023 attr = GetFileAttributesW(p);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4024 vim_free(p);
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
4025
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4026 return attr;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4027 }
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4028
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4029 /*
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4030 * set file attributes for `name' to `attrs'
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4031 *
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4032 * return -1 for failure, 0 otherwise
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4033 */
14862
27b9a84395b5 patch 8.1.0443: unnecessary static function prototypes
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
4034 static int
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4035 win32_setattrs(char_u *name, int attrs)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4036 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4037 int res;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4038 WCHAR *p;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4039
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4040 p = enc_to_utf16(name, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4041 if (p == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4042 return -1;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4043
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4044 res = SetFileAttributesW(p, attrs);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4045 vim_free(p);
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
4046
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4047 return res ? 0 : -1;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4048 }
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4049
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4050 /*
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4051 * Set archive flag for "name".
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4052 */
14862
27b9a84395b5 patch 8.1.0443: unnecessary static function prototypes
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
4053 static int
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4054 win32_set_archive(char_u *name)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4055 {
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4056 int attrs = win32_getattrs(name);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4057 if (attrs == -1)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4058 return -1;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4059
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4060 attrs |= FILE_ATTRIBUTE_ARCHIVE;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4061 return win32_setattrs(name, attrs);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4062 }
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4063
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4064 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4065 * Return TRUE if file or directory "name" is writable (not readonly).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4066 * Strange semantics of Win32: a readonly directory is writable, but you can't
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4067 * delete a file. Let's say this means it is writable.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4068 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4069 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4070 mch_writable(char_u *name)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4071 {
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4072 int attrs = win32_getattrs(name);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4073
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4074 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
4075 || (attrs & FILE_ATTRIBUTE_DIRECTORY)));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4076 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4077
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4078 /*
11054
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
4079 * Return TRUE if "name" can be executed, FALSE if not.
6700
f26c1d294156 updated for version 7.4.674
Bram Moolenaar <bram@vim.org>
parents: 6524
diff changeset
4080 * If "use_path" is FALSE only check if "name" is executable.
11054
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
4081 * When returning TRUE and "path" is not NULL save the path and set "*path" to
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
4082 * the allocated memory.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4083 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4084 int
29096
d2ef7d649fcb patch 8.2.5069: various warnings from clang on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents: 29071
diff changeset
4085 mch_can_exe(char_u *name, char_u **path, int use_path UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4086 {
20593
89b0f161e6a6 patch 8.2.0850: MS-Windows: exepath() works different from cmd.exe
Bram Moolenaar <Bram@vim.org>
parents: 20589
diff changeset
4087 return executable_exists((char *)name, path, TRUE, TRUE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4088 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4089
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4090 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4091 * Check what "name" is:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4092 * NODE_NORMAL: file or directory (or doesn't exist)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4093 * NODE_WRITABLE: writable device, socket, fifo, etc.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4094 * NODE_OTHER: non-writable things
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4095 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4096 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4097 mch_nodetype(char_u *name)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4098 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4099 HANDLE hFile;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4100 int type;
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4101 WCHAR *wn;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4102
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4103 // We can't open a file with a name "\\.\con" or "\\.\prn" and trying to
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4104 // read from it later will cause Vim to hang. Thus return NODE_WRITABLE
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4105 // here.
1004
09d0e83c29b8 updated for version 7.0-130
vimboss
parents: 840
diff changeset
4106 if (STRNCMP(name, "\\\\.\\", 4) == 0)
09d0e83c29b8 updated for version 7.0-130
vimboss
parents: 840
diff changeset
4107 return NODE_WRITABLE;
09d0e83c29b8 updated for version 7.0-130
vimboss
parents: 840
diff changeset
4108
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4109 wn = enc_to_utf16(name, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4110 if (wn == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4111 return NODE_NORMAL;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4112
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4113 hFile = CreateFileW(wn, // file name
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4114 GENERIC_WRITE, // access mode
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4115 0, // share mode
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4116 NULL, // security descriptor
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4117 OPEN_EXISTING, // creation disposition
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4118 0, // file attributes
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4119 NULL); // handle to template file
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4120 vim_free(wn);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4121 if (hFile == INVALID_HANDLE_VALUE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4122 return NODE_NORMAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4123
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4124 type = GetFileType(hFile);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4125 CloseHandle(hFile);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4126 if (type == FILE_TYPE_CHAR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4127 return NODE_WRITABLE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4128 if (type == FILE_TYPE_DISK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4129 return NODE_NORMAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4130 return NODE_OTHER;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4131 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4132
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4133 #ifdef HAVE_ACL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4134 struct my_acl
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4135 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4136 PSECURITY_DESCRIPTOR pSecurityDescriptor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4137 PSID pSidOwner;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4138 PSID pSidGroup;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4139 PACL pDacl;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4140 PACL pSacl;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4141 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4142 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4143
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4144 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4145 * Return a pointer to the ACL of file "fname" in allocated memory.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4146 * Return NULL if the ACL is not available for whatever reason.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4147 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4148 vim_acl_T
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4149 mch_get_acl(char_u *fname)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4150 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4151 #ifndef HAVE_ACL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4152 return (vim_acl_T)NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4153 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4154 struct my_acl *p = NULL;
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4155 DWORD err;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4156
16825
ce04ebdf26b8 patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents: 16782
diff changeset
4157 p = ALLOC_CLEAR_ONE(struct my_acl);
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
4158 if (p != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4159 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4160 WCHAR *wn;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4161
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4162 wn = enc_to_utf16(fname, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4163 if (wn == NULL)
22856
3b476f974406 patch 8.2.1975: Win32: memory leak when encoding conversion fails
Bram Moolenaar <Bram@vim.org>
parents: 22065
diff changeset
4164 {
3b476f974406 patch 8.2.1975: Win32: memory leak when encoding conversion fails
Bram Moolenaar <Bram@vim.org>
parents: 22065
diff changeset
4165 vim_free(p);
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4166 return NULL;
22856
3b476f974406 patch 8.2.1975: Win32: memory leak when encoding conversion fails
Bram Moolenaar <Bram@vim.org>
parents: 22065
diff changeset
4167 }
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4168
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4169 // Try to retrieve the entire security descriptor.
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4170 err = GetNamedSecurityInfoW(
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4171 wn, // Abstract filename
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4172 SE_FILE_OBJECT, // File Object
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4173 OWNER_SECURITY_INFORMATION |
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4174 GROUP_SECURITY_INFORMATION |
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4175 DACL_SECURITY_INFORMATION |
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4176 SACL_SECURITY_INFORMATION,
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4177 &p->pSidOwner, // Ownership information.
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4178 &p->pSidGroup, // Group membership.
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4179 &p->pDacl, // Discretionary information.
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4180 &p->pSacl, // For auditing purposes.
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4181 &p->pSecurityDescriptor);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4182 if (err == ERROR_ACCESS_DENIED ||
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4183 err == ERROR_PRIVILEGE_NOT_HELD)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4184 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4185 // Retrieve only DACL.
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4186 (void)GetNamedSecurityInfoW(
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4187 wn,
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4188 SE_FILE_OBJECT,
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4189 DACL_SECURITY_INFORMATION,
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4190 NULL,
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4191 NULL,
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4192 &p->pDacl,
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4193 NULL,
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
4194 &p->pSecurityDescriptor);
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
4195 }
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4196 if (p->pSecurityDescriptor == NULL)
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
4197 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4198 mch_free_acl((vim_acl_T)p);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4199 p = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4200 }
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4201 vim_free(wn);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4202 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4203
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4204 return (vim_acl_T)p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4205 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4206 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4207
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4208 #ifdef HAVE_ACL
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4209 /*
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4210 * Check if "acl" contains inherited ACE.
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4211 */
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4212 static BOOL
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4213 is_acl_inherited(PACL acl)
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4214 {
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4215 DWORD i;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4216 ACL_SIZE_INFORMATION acl_info;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4217 PACCESS_ALLOWED_ACE ace;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4218
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4219 acl_info.AceCount = 0;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4220 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation);
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4221 for (i = 0; i < acl_info.AceCount; i++)
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4222 {
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4223 GetAce(acl, i, (LPVOID *)&ace);
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4224 if (ace->Header.AceFlags & INHERITED_ACE)
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4225 return TRUE;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4226 }
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4227 return FALSE;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4228 }
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4229 #endif
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4230
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4231 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4232 * Set the ACL of file "fname" to "acl" (unless it's NULL).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4233 * Errors are ignored.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4234 * This must only be called with "acl" equal to what mch_get_acl() returned.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4235 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4236 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4237 mch_set_acl(char_u *fname, vim_acl_T acl)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4238 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4239 #ifdef HAVE_ACL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4240 struct my_acl *p = (struct my_acl *)acl;
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
4241 SECURITY_INFORMATION sec_info = 0;
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4242 WCHAR *wn;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4243
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4244 if (p == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4245 return;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4246
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4247 wn = enc_to_utf16(fname, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4248 if (wn == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4249 return;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4250
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4251 // Set security flags
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4252 if (p->pSidOwner)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4253 sec_info |= OWNER_SECURITY_INFORMATION;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4254 if (p->pSidGroup)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4255 sec_info |= GROUP_SECURITY_INFORMATION;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4256 if (p->pDacl)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4257 {
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4258 sec_info |= DACL_SECURITY_INFORMATION;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4259 // Do not inherit its parent's DACL.
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4260 // If the DACL is inherited, Cygwin permissions would be changed.
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4261 if (!is_acl_inherited(p->pDacl))
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4262 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4263 }
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4264 if (p->pSacl)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4265 sec_info |= SACL_SECURITY_INFORMATION;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4266
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4267 (void)SetNamedSecurityInfoW(
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4268 wn, // Abstract filename
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4269 SE_FILE_OBJECT, // File Object
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4270 sec_info,
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4271 p->pSidOwner, // Ownership information.
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4272 p->pSidGroup, // Group membership.
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4273 p->pDacl, // Discretionary information.
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4274 p->pSacl // For auditing purposes.
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4275 );
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4276 vim_free(wn);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4277 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4278 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4279
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4280 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4281 mch_free_acl(vim_acl_T acl)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4282 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4283 #ifdef HAVE_ACL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4284 struct my_acl *p = (struct my_acl *)acl;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4285
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4286 if (p != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4287 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4288 LocalFree(p->pSecurityDescriptor); // Free the memory just in case
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4289 vim_free(p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4290 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4291 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4292 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4293
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4294 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4295
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4296 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4297 * handler for ctrl-break, ctrl-c interrupts, and fatal events.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4298 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4299 static BOOL WINAPI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4300 handler_routine(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4301 DWORD dwCtrlType)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4302 {
12074
ca55e69d9d1b patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents: 12066
diff changeset
4303 INPUT_RECORD ir;
ca55e69d9d1b patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents: 12066
diff changeset
4304 DWORD out;
ca55e69d9d1b patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents: 12066
diff changeset
4305
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4306 switch (dwCtrlType)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4307 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4308 case CTRL_C_EVENT:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4309 if (ctrl_c_interrupts)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4310 g_fCtrlCPressed = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4311 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4312
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4313 case CTRL_BREAK_EVENT:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4314 g_fCBrkPressed = TRUE;
12074
ca55e69d9d1b patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents: 12066
diff changeset
4315 ctrl_break_was_pressed = TRUE;
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4316 // ReadConsoleInput is blocking, send a key event to continue.
12074
ca55e69d9d1b patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents: 12066
diff changeset
4317 ir.EventType = KEY_EVENT;
ca55e69d9d1b patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents: 12066
diff changeset
4318 ir.Event.KeyEvent.bKeyDown = TRUE;
ca55e69d9d1b patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents: 12066
diff changeset
4319 ir.Event.KeyEvent.wRepeatCount = 1;
ca55e69d9d1b patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents: 12066
diff changeset
4320 ir.Event.KeyEvent.wVirtualKeyCode = VK_CANCEL;
ca55e69d9d1b patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents: 12066
diff changeset
4321 ir.Event.KeyEvent.wVirtualScanCode = 0;
ca55e69d9d1b patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents: 12066
diff changeset
4322 ir.Event.KeyEvent.dwControlKeyState = 0;
ca55e69d9d1b patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents: 12066
diff changeset
4323 ir.Event.KeyEvent.uChar.UnicodeChar = 0;
ca55e69d9d1b patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents: 12066
diff changeset
4324 WriteConsoleInput(g_hConIn, &ir, 1, &out);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4325 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4326
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4327 // fatal events: shut down gracefully
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4328 case CTRL_CLOSE_EVENT:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4329 case CTRL_LOGOFF_EVENT:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4330 case CTRL_SHUTDOWN_EVENT:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4331 windgoto((int)Rows - 1, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4332 g_fForceExit = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4333
1569
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
4334 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"),
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4335 (dwCtrlType == CTRL_CLOSE_EVENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4336 ? _("close")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4337 : dwCtrlType == CTRL_LOGOFF_EVENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4338 ? _("logoff")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4339 : _("shutdown")));
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
4340 # ifdef DEBUG
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4341 OutputDebugString(IObuff);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
4342 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4343
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4344 preserve_exit(); // output IObuff, preserve files and exit
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4345
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4346 return TRUE; // not reached
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4347
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4348 default:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4349 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4350 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4351 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4352
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4353
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4354 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4355 * set the tty in (raw) ? "raw" : "cooked" mode
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4356 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4357 void
20439
d4b2a8675b78 patch 8.2.0774: t_TI and t_TE are output when using 'visualbell'
Bram Moolenaar <Bram@vim.org>
parents: 20437
diff changeset
4358 mch_settmode(tmode_T tmode)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4359 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4360 DWORD cmodein;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4361 DWORD cmodeout;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4362 BOOL bEnableHandler;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4363
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4364 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4365 if (gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4366 return;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4367 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4368 GetConsoleMode(g_hConIn, &cmodein);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4369 GetConsoleMode(g_hConOut, &cmodeout);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4370 if (tmode == TMODE_RAW)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4371 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4372 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4373 ENABLE_ECHO_INPUT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4374 if (g_fMouseActive)
24749
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
4375 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4376 cmodein |= ENABLE_MOUSE_INPUT;
24749
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
4377 cmodein &= ~ENABLE_QUICK_EDIT_MODE;
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
4378 }
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
4379 else
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
4380 {
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
4381 cmodein |= g_cmodein & ENABLE_QUICK_EDIT_MODE;
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
4382 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
4383 cmodeout &= ~(
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
4384 # ifdef FEAT_TERMGUICOLORS
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4385 // Do not turn off the ENABLE_PROCESSED_OUTPUT flag when using
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4386 // VTP.
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
4387 ((vtp_working) ? 0 : ENABLE_PROCESSED_OUTPUT) |
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
4388 # else
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
4389 ENABLE_PROCESSED_OUTPUT |
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
4390 # endif
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
4391 ENABLE_WRAP_AT_EOL_OUTPUT);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4392 bEnableHandler = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4393 }
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4394 else // cooked
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4395 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4396 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4397 ENABLE_ECHO_INPUT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4398 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4399 bEnableHandler = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4400 }
24749
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
4401 SetConsoleMode(g_hConIn, cmodein | ENABLE_EXTENDED_FLAGS);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4402 SetConsoleMode(g_hConOut, cmodeout);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4403 SetConsoleCtrlHandler(handler_routine, bEnableHandler);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4404
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
4405 # ifdef MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4406 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4407 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4408 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4409 tmode == TMODE_RAW ? "raw" :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4410 tmode == TMODE_COOK ? "cooked" : "normal",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4411 cmodein, cmodeout);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4412 fflush(fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4413 }
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
4414 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4415 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4416
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4417
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4418 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4419 * Get the size of the current window in `Rows' and `Columns'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4420 * Return OK when size could be determined, FAIL otherwise.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4421 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4422 int
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4423 mch_get_shellsize(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4424 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4425 CONSOLE_SCREEN_BUFFER_INFO csbi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4426
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4427 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4428 if (gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4429 return OK;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4430 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4431 if (!g_fTermcapMode && g_cbTermcap.IsValid)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4432 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4433 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4434 * For some reason, we are trying to get the screen dimensions
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4435 * even though we are not in termcap mode. The 'Rows' and 'Columns'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4436 * variables are really intended to mean the size of Vim screen
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4437 * while in termcap mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4438 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4439 Rows = g_cbTermcap.Info.dwSize.Y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4440 Columns = g_cbTermcap.Info.dwSize.X;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4441 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4442 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4443 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4444 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4445 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4446 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4447 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4448 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4449 Rows = 25;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4450 Columns = 80;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4451 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4452 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4453 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4454
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4455 /*
14473
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4456 * Resize console buffer to 'COORD'
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4457 */
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4458 static void
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4459 ResizeConBuf(
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4460 HANDLE hConsole,
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4461 COORD coordScreen)
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4462 {
31839
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
4463 if (use_alternate_screen_buffer)
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
4464 return;
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
4465
14473
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4466 if (!SetConsoleScreenBufferSize(hConsole, coordScreen))
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4467 {
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
4468 # ifdef MCH_WRITE_DUMP
14473
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4469 if (fdDump)
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4470 {
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4471 fprintf(fdDump, "SetConsoleScreenBufferSize failed: %lx\n",
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4472 GetLastError());
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4473 fflush(fdDump);
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4474 }
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
4475 # endif
14473
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4476 }
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4477 }
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4478
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4479 /*
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4480 * Resize console window size to 'srWindowRect'
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4481 */
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4482 static void
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4483 ResizeWindow(
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4484 HANDLE hConsole,
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4485 SMALL_RECT srWindowRect)
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4486 {
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4487 if (!SetConsoleWindowInfo(hConsole, TRUE, &srWindowRect))
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4488 {
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
4489 # ifdef MCH_WRITE_DUMP
14473
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4490 if (fdDump)
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4491 {
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4492 fprintf(fdDump, "SetConsoleWindowInfo failed: %lx\n",
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4493 GetLastError());
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4494 fflush(fdDump);
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4495 }
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
4496 # endif
14473
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4497 }
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4498 }
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4499
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4500 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4501 * Set a console window to `xSize' * `ySize'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4502 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4503 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4504 ResizeConBufAndWindow(
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4505 HANDLE hConsole,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4506 int xSize,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4507 int ySize)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4508 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4509 CONSOLE_SCREEN_BUFFER_INFO csbi; // hold current console buffer info
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4510 SMALL_RECT srWindowRect; // hold the new console size
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4511 COORD coordScreen;
17393
372f2eaa544a patch 8.1.1695: Windows 10: crash when cursor is at bottom of terminal
Bram Moolenaar <Bram@vim.org>
parents: 16984
diff changeset
4512 COORD cursor;
14619
5e85d326d616 patch 8.1.0323: reverse order of VTP calls only needed the first time
Christian Brabandt <cb@256bit.org>
parents: 14567
diff changeset
4513 static int resized = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4514
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
4515 # ifdef MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4516 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4517 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4518 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4519 fflush(fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4520 }
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
4521 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4522
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4523 // get the largest size we can size the console window to
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4524 coordScreen = GetLargestConsoleWindowSize(hConsole);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4525
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4526 // define the new console window size and scroll position
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4527 srWindowRect.Left = srWindowRect.Top = (SHORT) 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4528 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4529 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4530
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4531 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4532 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4533 int sx, sy;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4534
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4535 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4536 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4537 if (sy < ySize || sx < xSize)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4538 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4539 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4540 * Increasing number of lines/columns, do buffer first.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4541 * Use the maximal size in x and y direction.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4542 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4543 if (sy < ySize)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4544 coordScreen.Y = ySize;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4545 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4546 coordScreen.Y = sy;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4547 if (sx < xSize)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4548 coordScreen.X = xSize;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4549 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4550 coordScreen.X = sx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4551 SetConsoleScreenBufferSize(hConsole, coordScreen);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4552 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4553 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4554
14473
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4555 // define the new console buffer size
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4556 coordScreen.X = xSize;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4557 coordScreen.Y = ySize;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4558
14619
5e85d326d616 patch 8.1.0323: reverse order of VTP calls only needed the first time
Christian Brabandt <cb@256bit.org>
parents: 14567
diff changeset
4559 // In the new console call API, only the first time in reverse order
5e85d326d616 patch 8.1.0323: reverse order of VTP calls only needed the first time
Christian Brabandt <cb@256bit.org>
parents: 14567
diff changeset
4560 if (!vtp_working || resized)
14473
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4561 {
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4562 ResizeWindow(hConsole, srWindowRect);
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4563 ResizeConBuf(hConsole, coordScreen);
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4564 }
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4565 else
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4566 {
17393
372f2eaa544a patch 8.1.1695: Windows 10: crash when cursor is at bottom of terminal
Bram Moolenaar <Bram@vim.org>
parents: 16984
diff changeset
4567 // Workaround for a Windows 10 bug
372f2eaa544a patch 8.1.1695: Windows 10: crash when cursor is at bottom of terminal
Bram Moolenaar <Bram@vim.org>
parents: 16984
diff changeset
4568 cursor.X = srWindowRect.Left;
372f2eaa544a patch 8.1.1695: Windows 10: crash when cursor is at bottom of terminal
Bram Moolenaar <Bram@vim.org>
parents: 16984
diff changeset
4569 cursor.Y = srWindowRect.Top;
372f2eaa544a patch 8.1.1695: Windows 10: crash when cursor is at bottom of terminal
Bram Moolenaar <Bram@vim.org>
parents: 16984
diff changeset
4570 SetConsoleCursorPosition(hConsole, cursor);
372f2eaa544a patch 8.1.1695: Windows 10: crash when cursor is at bottom of terminal
Bram Moolenaar <Bram@vim.org>
parents: 16984
diff changeset
4571
14473
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4572 ResizeConBuf(hConsole, coordScreen);
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4573 ResizeWindow(hConsole, srWindowRect);
14619
5e85d326d616 patch 8.1.0323: reverse order of VTP calls only needed the first time
Christian Brabandt <cb@256bit.org>
parents: 14567
diff changeset
4574 resized = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4575 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4576 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4577
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4578
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4579 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4580 * Set the console window to `Rows' * `Columns'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4581 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4582 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4583 mch_set_shellsize(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4584 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4585 COORD coordScreen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4586
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4587 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4588 if (gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4589 return;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4590 # endif
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4591 // Don't change window size while still starting up
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4592 if (suppress_winsize != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4593 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4594 suppress_winsize = 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4595 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4596 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4597
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4598 if (term_console)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4599 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4600 coordScreen = GetLargestConsoleWindowSize(g_hConOut);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4601
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4602 // Clamp Rows and Columns to reasonable values
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4603 if (Rows > coordScreen.Y)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4604 Rows = coordScreen.Y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4605 if (Columns > coordScreen.X)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4606 Columns = coordScreen.X;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4607
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4608 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4609 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4610 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4611
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4612 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4613 * Rows and/or Columns has changed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4614 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4615 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4616 mch_new_shellsize(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4617 {
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4618 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4619 if (gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4620 return;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
4621 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4622 set_scroll_region(0, 0, Columns - 1, Rows - 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4623 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4624
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4625
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4626 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4627 * Called when started up, to set the winsize that was delayed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4628 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4629 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4630 mch_set_winsize_now(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4631 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4632 if (suppress_winsize == 2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4633 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4634 suppress_winsize = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4635 mch_set_shellsize();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4636 shell_resized();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4637 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4638 suppress_winsize = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4639 }
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4640 #endif // FEAT_GUI_MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4641
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4642 static BOOL
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4643 vim_create_process(
5556
b14554844756 updated for version 7.4.126
Bram Moolenaar <bram@vim.org>
parents: 5553
diff changeset
4644 char *cmd,
5569
1b09d6792520 updated for version 7.4.132
Bram Moolenaar <bram@vim.org>
parents: 5556
diff changeset
4645 BOOL inherit_handles,
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4646 DWORD flags,
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4647 STARTUPINFO *si,
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4648 PROCESS_INFORMATION *pi,
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4649 LPVOID *env,
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4650 char *cwd)
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4651 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4652 BOOL ret = FALSE;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4653 WCHAR *wcmd, *wcwd = NULL;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4654
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4655 wcmd = enc_to_utf16((char_u *)cmd, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4656 if (wcmd == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4657 return FALSE;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4658 if (cwd != NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4659 {
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4660 wcwd = enc_to_utf16((char_u *)cwd, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4661 if (wcwd == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4662 goto theend;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4663 }
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4664
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4665 ret = CreateProcessW(
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4666 NULL, // Executable name
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4667 wcmd, // Command to execute
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4668 NULL, // Process security attributes
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4669 NULL, // Thread security attributes
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4670 inherit_handles, // Inherit handles
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4671 flags, // Creation flags
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4672 env, // Environment
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4673 wcwd, // Current directory
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4674 (LPSTARTUPINFOW)si, // Startup information
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4675 pi); // Process information
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4676 theend:
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4677 vim_free(wcmd);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4678 vim_free(wcwd);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4679 return ret;
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4680 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4681
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4682
11230
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4683 static HINSTANCE
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4684 vim_shell_execute(
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4685 char *cmd,
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4686 INT n_show_cmd)
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4687 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4688 HINSTANCE ret;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4689 WCHAR *wcmd;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4690
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4691 wcmd = enc_to_utf16((char_u *)cmd, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4692 if (wcmd == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4693 return (HINSTANCE) 0;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4694
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4695 ret = ShellExecuteW(NULL, NULL, wcmd, NULL, NULL, n_show_cmd);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4696 vim_free(wcmd);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
4697 return ret;
11230
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4698 }
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4699
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4700
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15866
diff changeset
4701 #if defined(FEAT_GUI_MSWIN) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4702
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4703 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4704 * Specialised version of system() for Win32 GUI mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4705 * This version proceeds as follows:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4706 * 1. Create a console window for use by the subprocess
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4707 * 2. Run the subprocess (it gets the allocated console by default)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4708 * 3. Wait for the subprocess to terminate and get its exit code
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4709 * 4. Prompt the user to press a key to close the console window
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4710 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4711 static int
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4712 mch_system_classic(char *cmd, int options)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4713 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4714 STARTUPINFO si;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4715 PROCESS_INFORMATION pi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4716 DWORD ret = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4717 HWND hwnd = GetFocus();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4718
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4719 si.cb = sizeof(si);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4720 si.lpReserved = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4721 si.lpDesktop = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4722 si.lpTitle = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4723 si.dwFlags = STARTF_USESHOWWINDOW;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4724 /*
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
4725 * It's nicer to run a filter command in a minimized window.
2643
e6372ac3ebe5 updated for version 7.3.063
Bram Moolenaar <bram@vim.org>
parents: 2630
diff changeset
4726 * Don't activate the window to keep focus on Vim.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4727 */
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
4728 if (options & SHELL_DOOUT)
2643
e6372ac3ebe5 updated for version 7.3.063
Bram Moolenaar <bram@vim.org>
parents: 2630
diff changeset
4729 si.wShowWindow = SW_SHOWMINNOACTIVE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4730 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4731 si.wShowWindow = SW_SHOWNORMAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4732 si.cbReserved2 = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4733 si.lpReserved2 = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4734
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4735 // Now, run the command
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4736 vim_create_process(cmd, FALSE,
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4737 CREATE_DEFAULT_ERROR_MODE | CREATE_NEW_CONSOLE,
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4738 &si, &pi, NULL, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4739
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4740 // Wait for the command to terminate before continuing
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4741 {
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
4742 # ifdef FEAT_GUI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4743 int delay = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4744
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4745 // Keep updating the window while waiting for the shell to finish.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4746 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4747 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4748 MSG msg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4749
27283
b4d92a69035b patch 8.2.4170: MS-Windows: still using old message API calls
Bram Moolenaar <Bram@vim.org>
parents: 27028
diff changeset
4750 if (PeekMessageW(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4751 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4752 TranslateMessage(&msg);
27283
b4d92a69035b patch 8.2.4170: MS-Windows: still using old message API calls
Bram Moolenaar <Bram@vim.org>
parents: 27028
diff changeset
4753 DispatchMessageW(&msg);
3720
27ecf0c87bd2 updated for version 7.3.619
Bram Moolenaar <bram@vim.org>
parents: 3691
diff changeset
4754 delay = 1;
27ecf0c87bd2 updated for version 7.3.619
Bram Moolenaar <bram@vim.org>
parents: 3691
diff changeset
4755 continue;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4756 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4757 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4758 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4759
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4760 // We start waiting for a very short time and then increase it, so
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4761 // that we respond quickly when the process is quick, and don't
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4762 // consume too much overhead when it's slow.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4763 if (delay < 50)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4764 delay += 10;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4765 }
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
4766 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4767 WaitForSingleObject(pi.hProcess, INFINITE);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
4768 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4769
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4770 // Get the command exit code
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4771 GetExitCodeProcess(pi.hProcess, &ret);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4772 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4773
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4774 // Close the handles to the subprocess, so that it goes away
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4775 CloseHandle(pi.hThread);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4776 CloseHandle(pi.hProcess);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4777
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4778 // Try to get input focus back. Doesn't always work though.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4779 PostMessage(hwnd, WM_SETFOCUS, 0, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4780
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4781 return ret;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4782 }
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4783
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4784 /*
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4785 * Thread launched by the gui to send the current buffer data to the
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4786 * process. This way avoid to hang up vim totally if the children
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4787 * process take a long time to process the lines.
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4788 */
9750
0f4b76b2757a commit https://github.com/vim/vim/commit/4c38d66d25e4ba433fe87283a4664425a3dbd529
Christian Brabandt <cb@256bit.org>
parents: 9740
diff changeset
4789 static unsigned int __stdcall
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4790 sub_process_writer(LPVOID param)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4791 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4792 HANDLE g_hChildStd_IN_Wr = param;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4793 linenr_T lnum = curbuf->b_op_start.lnum;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4794 DWORD len = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4795 DWORD l;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4796 char_u *lp = ml_get(lnum);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4797 char_u *s;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4798 int written = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4799
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4800 for (;;)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4801 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4802 l = (DWORD)STRLEN(lp + written);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4803 if (l == 0)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4804 len = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4805 else if (lp[written] == NL)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4806 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4807 // NL -> NUL translation
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4808 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4809 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4810 else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4811 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4812 s = vim_strchr(lp + written, NL);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4813 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written,
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4814 s == NULL ? l : (DWORD)(s - (lp + written)),
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4815 &len, NULL);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4816 }
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29096
diff changeset
4817 if (len == l)
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4818 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4819 // Finished a line, add a NL, unless this line should not have
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4820 // one.
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4821 if (lnum != curbuf->b_op_end.lnum
6933
62ba356c2d4e patch 7.4.785
Bram Moolenaar <bram@vim.org>
parents: 6710
diff changeset
4822 || (!curbuf->b_p_bin
62ba356c2d4e patch 7.4.785
Bram Moolenaar <bram@vim.org>
parents: 6710
diff changeset
4823 && curbuf->b_p_fixeol)
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4824 || (lnum != curbuf->b_no_eol_lnum
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4825 && (lnum != curbuf->b_ml.ml_line_count
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4826 || curbuf->b_p_eol)))
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4827 {
14730
193471015e1a patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents: 14673
diff changeset
4828 WriteFile(g_hChildStd_IN_Wr, "\n", 1,
193471015e1a patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents: 14673
diff changeset
4829 (LPDWORD)&vim_ignored, NULL);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4830 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4831
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4832 ++lnum;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4833 if (lnum > curbuf->b_op_end.lnum)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4834 break;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4835
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4836 lp = ml_get(lnum);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4837 written = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4838 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4839 else if (len > 0)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4840 written += len;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4841 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4842
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4843 // finished all the lines, close pipe
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4844 CloseHandle(g_hChildStd_IN_Wr);
9740
4665d491a69e commit https://github.com/vim/vim/commit/86f2cd5bc574c23fa276d7f57cd1300e24222913
Christian Brabandt <cb@256bit.org>
parents: 9387
diff changeset
4845 return 0;
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4846 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4847
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4848
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4849 # define BUFLEN 100 // length for buffer, stolen from unix version
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4850
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4851 /*
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4852 * This function read from the children's stdout and write the
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4853 * data on screen or in the buffer accordingly.
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4854 */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4855 static void
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4856 dump_pipe(int options,
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4857 HANDLE g_hChildStd_OUT_Rd,
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4858 garray_T *ga,
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4859 char_u buffer[],
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4860 DWORD *buffer_off)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4861 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4862 DWORD availableBytes = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4863 DWORD i;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4864 int ret;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4865 DWORD len;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4866 DWORD toRead;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4867
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4868 // we query the pipe to see if there is any data to read
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4869 // to avoid to perform a blocking read
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4870 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, // pipe to query
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4871 NULL, // optional buffer
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4872 0, // buffer size
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4873 NULL, // number of read bytes
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4874 &availableBytes, // available bytes total
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4875 NULL); // byteLeft
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4876
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4877 // We got real data in the pipe, read it
3622
43fd3896fab7 updated for version 7.3.571
Bram Moolenaar <bram@vim.org>
parents: 3386
diff changeset
4878 while (ret != 0 && availableBytes > 0)
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4879 {
15603
639b8318472c patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15553
diff changeset
4880 toRead = (DWORD)(BUFLEN - *buffer_off);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4881 toRead = availableBytes < toRead ? availableBytes : toRead;
15603
639b8318472c patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15553
diff changeset
4882 ReadFile(g_hChildStd_OUT_Rd, buffer + *buffer_off, toRead , &len, NULL);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4883
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4884 // If we haven't read anything, there is a problem
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4885 if (len == 0)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4886 break;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4887
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4888 availableBytes -= len;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4889
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4890 if (options & SHELL_READ)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4891 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4892 // Do NUL -> NL translation, append NL separated
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4893 // lines to the current buffer.
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4894 for (i = 0; i < len; ++i)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4895 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4896 if (buffer[i] == NL)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4897 append_ga_line(ga);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4898 else if (buffer[i] == NUL)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4899 ga_append(ga, NL);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4900 else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4901 ga_append(ga, buffer[i]);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4902 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4903 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4904 else if (has_mbyte)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4905 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4906 int l;
3030
07bc2ccfe555 updated for version 7.3.287
Bram Moolenaar <bram@vim.org>
parents: 3010
diff changeset
4907 int c;
07bc2ccfe555 updated for version 7.3.287
Bram Moolenaar <bram@vim.org>
parents: 3010
diff changeset
4908 char_u *p;
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4909
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4910 len += *buffer_off;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4911 buffer[len] = NUL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4912
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4913 // Check if the last character in buffer[] is
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4914 // incomplete, keep these bytes for the next
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4915 // round.
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4916 for (p = buffer; p < buffer + len; p += l)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4917 {
9898
bff8a09016a5 commit https://github.com/vim/vim/commit/d3c907b5d2b352482b580a0cf687cbbea4c19ea1
Christian Brabandt <cb@256bit.org>
parents: 9762
diff changeset
4918 l = MB_CPTR2LEN(p);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4919 if (l == 0)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4920 l = 1; // NUL byte?
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4921 else if (MB_BYTE2LEN(*p) != l)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4922 break;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4923 }
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4924 if (p == buffer) // no complete character
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4925 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4926 // avoid getting stuck at an illegal byte
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4927 if (len >= 12)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4928 ++p;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4929 else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4930 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4931 *buffer_off = len;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4932 return;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4933 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4934 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4935 c = *p;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4936 *p = NUL;
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15539
diff changeset
4937 msg_puts((char *)buffer);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4938 if (p < buffer + len)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4939 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4940 *p = c;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4941 *buffer_off = (DWORD)((buffer + len) - p);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4942 mch_memmove(buffer, p, *buffer_off);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4943 return;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4944 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4945 *buffer_off = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4946 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4947 else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4948 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4949 buffer[len] = NUL;
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15539
diff changeset
4950 msg_puts((char *)buffer);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4951 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4952
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4953 windgoto(msg_row, msg_col);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4954 cursor_on();
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4955 out_flush();
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4956 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4957 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4958
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4959 /*
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4960 * Version of system to use for windows NT > 5.0 (Win2K), use pipe
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4961 * for communication and doesn't open any new window.
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4962 */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4963 static int
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4964 mch_system_piped(char *cmd, int options)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4965 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4966 STARTUPINFO si;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4967 PROCESS_INFORMATION pi;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4968 DWORD ret = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4969
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4970 HANDLE g_hChildStd_IN_Rd = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4971 HANDLE g_hChildStd_IN_Wr = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4972 HANDLE g_hChildStd_OUT_Rd = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4973 HANDLE g_hChildStd_OUT_Wr = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4974
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4975 char_u buffer[BUFLEN + 1]; // reading buffer + size
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4976 DWORD len;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4977
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4978 // buffer used to receive keys
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4979 char_u ta_buf[BUFLEN + 1]; // TypeAHead
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4980 int ta_len = 0; // valid bytes in ta_buf[]
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4981
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4982 DWORD i;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4983 int noread_cnt = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4984 garray_T ga;
13485
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4985 int delay = 1;
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4986 DWORD buffer_off = 0; // valid bytes in buffer[]
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
4987 char *p = NULL;
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4988
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4989 SECURITY_ATTRIBUTES saAttr;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4990
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4991 // Set the bInheritHandle flag so pipe handles are inherited.
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4992 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4993 saAttr.bInheritHandle = TRUE;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4994 saAttr.lpSecurityDescriptor = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4995
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4996 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4997 // Ensure the read handle to the pipe for STDOUT is not inherited.
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
4998 || ! SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
4999 // Create a pipe for the child process's STDIN.
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5000 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5001 // Ensure the write handle to the pipe for STDIN is not inherited.
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
5002 || ! SetHandleInformation(g_hChildStd_IN_Wr, HANDLE_FLAG_INHERIT, 0) )
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5003 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5004 CloseHandle(g_hChildStd_IN_Rd);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5005 CloseHandle(g_hChildStd_IN_Wr);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5006 CloseHandle(g_hChildStd_OUT_Rd);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5007 CloseHandle(g_hChildStd_OUT_Wr);
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15539
diff changeset
5008 msg_puts(_("\nCannot create pipes\n"));
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5009 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5010
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5011 si.cb = sizeof(si);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5012 si.lpReserved = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5013 si.lpDesktop = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5014 si.lpTitle = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5015 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5016
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5017 // set-up our file redirection
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5018 si.hStdError = g_hChildStd_OUT_Wr;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5019 si.hStdOutput = g_hChildStd_OUT_Wr;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5020 si.hStdInput = g_hChildStd_IN_Rd;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5021 si.wShowWindow = SW_HIDE;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5022 si.cbReserved2 = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5023 si.lpReserved2 = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5024
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5025 if (options & SHELL_READ)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5026 ga_init2(&ga, 1, BUFLEN);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5027
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5028 if (cmd != NULL)
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5029 {
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5030 p = (char *)vim_strsave((char_u *)cmd);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5031 if (p != NULL)
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5032 unescape_shellxquote((char_u *)p, p_sxe);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5033 else
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5034 p = cmd;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5035 }
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5036
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5037 // Now, run the command.
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5038 // About "Inherit handles" being TRUE: this command can be litigious,
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5039 // handle inheritance was deactivated for pending temp file, but, if we
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5040 // deactivate it, the pipes don't work for some reason.
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5041 vim_create_process(p, TRUE, CREATE_DEFAULT_ERROR_MODE,
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5042 &si, &pi, NULL, NULL);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5043
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5044 if (p != cmd)
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5045 vim_free(p);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5046
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5047 // Close our unused side of the pipes
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5048 CloseHandle(g_hChildStd_IN_Rd);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5049 CloseHandle(g_hChildStd_OUT_Wr);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5050
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5051 if (options & SHELL_WRITE)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5052 {
9740
4665d491a69e commit https://github.com/vim/vim/commit/86f2cd5bc574c23fa276d7f57cd1300e24222913
Christian Brabandt <cb@256bit.org>
parents: 9387
diff changeset
5053 HANDLE thread = (HANDLE)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5054 _beginthreadex(NULL, // security attributes
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5055 0, // default stack size
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5056 sub_process_writer, // function to be executed
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5057 g_hChildStd_IN_Wr, // parameter
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5058 0, // creation flag, start immediately
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5059 NULL); // we don't care about thread id
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5060 CloseHandle(thread);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5061 g_hChildStd_IN_Wr = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5062 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5063
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5064 // Keep updating the window while waiting for the shell to finish.
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5065 for (;;)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5066 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5067 MSG msg;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5068
27283
b4d92a69035b patch 8.2.4170: MS-Windows: still using old message API calls
Bram Moolenaar <Bram@vim.org>
parents: 27028
diff changeset
5069 if (PeekMessageW(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5070 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5071 TranslateMessage(&msg);
27283
b4d92a69035b patch 8.2.4170: MS-Windows: still using old message API calls
Bram Moolenaar <Bram@vim.org>
parents: 27028
diff changeset
5072 DispatchMessageW(&msg);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5073 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5074
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5075 // write pipe information in the window
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5076 if ((options & (SHELL_READ|SHELL_WRITE))
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5077 # ifdef FEAT_GUI
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5078 || gui.in_use
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5079 # endif
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5080 )
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5081 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5082 len = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5083 if (!(options & SHELL_EXPAND)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5084 && ((options &
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5085 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5086 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5087 # ifdef FEAT_GUI
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5088 || gui.in_use
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5089 # endif
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5090 )
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5091 && (ta_len > 0 || noread_cnt > 4))
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5092 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5093 if (ta_len == 0)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5094 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5095 // Get extra characters when we don't have any. Reset the
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5096 // counter and timer.
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5097 noread_cnt = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5098 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5099 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5100 if (ta_len > 0 || len > 0)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5101 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5102 /*
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5103 * For pipes: Check for CTRL-C: send interrupt signal to
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5104 * child. Check for CTRL-D: EOF, close pipe to child.
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5105 */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5106 if (len == 1 && cmd != NULL)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5107 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5108 if (ta_buf[ta_len] == Ctrl_C)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5109 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5110 // Learn what exit code is expected, for
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5111 // now put 9 as SIGKILL
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5112 TerminateProcess(pi.hProcess, 9);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5113 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5114 if (ta_buf[ta_len] == Ctrl_D)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5115 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5116 CloseHandle(g_hChildStd_IN_Wr);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5117 g_hChildStd_IN_Wr = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5118 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5119 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5120
30641
1207b6d6cf9e patch 9.0.0655: passing modifier codes to a shell running in the GUI
Bram Moolenaar <Bram@vim.org>
parents: 30637
diff changeset
5121 len = term_replace_keycodes(ta_buf, ta_len, len);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5122
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5123 /*
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5124 * For pipes: echo the typed characters. For a pty this
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5125 * does not seem to work.
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5126 */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5127 for (i = ta_len; i < ta_len + len; ++i)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5128 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5129 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5130 msg_putchar(ta_buf[i]);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5131 else if (has_mbyte)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5132 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5133 int l = (*mb_ptr2len)(ta_buf + i);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5134
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5135 msg_outtrans_len(ta_buf + i, l);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5136 i += l - 1;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5137 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5138 else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5139 msg_outtrans_len(ta_buf + i, 1);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5140 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5141 windgoto(msg_row, msg_col);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5142 out_flush();
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5143
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5144 ta_len += len;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5145
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5146 /*
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5147 * Write the characters to the child, unless EOF has been
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5148 * typed for pipes. Write one character at a time, to
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5149 * avoid losing too much typeahead. When writing buffer
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5150 * lines, drop the typed characters (only check for
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5151 * CTRL-C).
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5152 */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5153 if (options & SHELL_WRITE)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5154 ta_len = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5155 else if (g_hChildStd_IN_Wr != NULL)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5156 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5157 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf,
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5158 1, &len, NULL);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5159 // if we are typing in, we want to keep things reactive
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5160 delay = 1;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5161 if (len > 0)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5162 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5163 ta_len -= len;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5164 mch_memmove(ta_buf, ta_buf + len, ta_len);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5165 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5166 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5167 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5168 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5169 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5170
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5171 if (ta_len)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5172 ui_inchar_undo(ta_buf, ta_len);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5173
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5174 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5175 {
3030
07bc2ccfe555 updated for version 7.3.287
Bram Moolenaar <bram@vim.org>
parents: 3010
diff changeset
5176 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5177 break;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5178 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5179
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5180 ++noread_cnt;
3030
07bc2ccfe555 updated for version 7.3.287
Bram Moolenaar <bram@vim.org>
parents: 3010
diff changeset
5181 dump_pipe(options, g_hChildStd_OUT_Rd, &ga, buffer, &buffer_off);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5182
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5183 // We start waiting for a very short time and then increase it, so
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5184 // that we respond quickly when the process is quick, and don't
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5185 // consume too much overhead when it's slow.
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5186 if (delay < 50)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5187 delay += 10;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5188 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5189
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5190 // Close the pipe
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5191 CloseHandle(g_hChildStd_OUT_Rd);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5192 if (g_hChildStd_IN_Wr != NULL)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5193 CloseHandle(g_hChildStd_IN_Wr);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5194
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5195 WaitForSingleObject(pi.hProcess, INFINITE);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5196
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5197 // Get the command exit code
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5198 GetExitCodeProcess(pi.hProcess, &ret);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5199
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5200 if (options & SHELL_READ)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5201 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5202 if (ga.ga_len > 0)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5203 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5204 append_ga_line(&ga);
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5205 // remember that the NL was missing
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5206 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5207 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5208 else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5209 curbuf->b_no_eol_lnum = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5210 ga_clear(&ga);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5211 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5212
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5213 // Close the handles to the subprocess, so that it goes away
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5214 CloseHandle(pi.hThread);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5215 CloseHandle(pi.hProcess);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5216
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5217 return ret;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5218 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5219
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5220 static int
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5221 mch_system_g(char *cmd, int options)
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5222 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5223 // if we can pipe and the shelltemp option is off
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
5224 if (!p_stmp)
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5225 return mch_system_piped(cmd, options);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5226 else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5227 return mch_system_classic(cmd, options);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
5228 }
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5229 #endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5230
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5231 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
5232 static int
18139
59bc3cd42cf5 patch 8.1.2064: MS-Windows: compiler warnings for unused arguments
Bram Moolenaar <Bram@vim.org>
parents: 18133
diff changeset
5233 mch_system_c(char *cmd, int options UNUSED)
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
5234 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5235 int ret;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5236 WCHAR *wcmd;
18241
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5237 char_u *buf;
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5238 size_t len;
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5239
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5240 // If the command starts and ends with double quotes, enclose the command
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5241 // in parentheses.
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5242 len = STRLEN(cmd);
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5243 if (len >= 2 && cmd[0] == '"' && cmd[len - 1] == '"')
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5244 {
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5245 len += 3;
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5246 buf = alloc(len);
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5247 if (buf == NULL)
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5248 return -1;
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5249 vim_snprintf((char *)buf, len, "(%s)", cmd);
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5250 wcmd = enc_to_utf16(buf, NULL);
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5251 free(buf);
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5252 }
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5253 else
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5254 wcmd = enc_to_utf16((char_u *)cmd, NULL);
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18235
diff changeset
5255
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5256 if (wcmd == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5257 return -1;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5258
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5259 ret = _wsystem(wcmd);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5260 vim_free(wcmd);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5261 return ret;
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
5262 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5263
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5264 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5265
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5266 static int
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5267 mch_system(char *cmd, int options)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5268 {
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5269 #ifdef VIMDLL
16734
e3feaa3e5f10 patch 8.1.1369: get E484 when using system() during GUI startup
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
5270 if (gui.in_use || gui.starting)
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5271 return mch_system_g(cmd, options);
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5272 else
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5273 return mch_system_c(cmd, options);
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5274 #elif defined(FEAT_GUI_MSWIN)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5275 return mch_system_g(cmd, options);
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5276 #else
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5277 return mch_system_c(cmd, options);
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5278 #endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5279 }
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5280
13485
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5281 #if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5282 /*
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5283 * Use a terminal window to run a shell command in.
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5284 */
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5285 static int
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5286 mch_call_shell_terminal(
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5287 char_u *cmd,
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5288 int options UNUSED) // SHELL_*, see vim.h
13485
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5289 {
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5290 jobopt_T opt;
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5291 char_u *newcmd = NULL;
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5292 typval_T argvar[2];
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5293 long_u cmdlen;
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5294 int retval = -1;
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5295 buf_T *buf;
14139
4d3f6bf86bec patch 8.1.0087: v:shell_error is always zero when using terminal for "!cmd"
Christian Brabandt <cb@256bit.org>
parents: 14067
diff changeset
5296 job_T *job;
13485
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5297 aco_save_T aco;
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5298 oparg_T oa; // operator arguments
13485
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5299
13487
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
5300 if (cmd == NULL)
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
5301 cmdlen = STRLEN(p_sh) + 1;
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
5302 else
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
5303 cmdlen = STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10;
16768
695d9ef00b03 patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents: 16764
diff changeset
5304 newcmd = alloc(cmdlen);
13485
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5305 if (newcmd == NULL)
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5306 return 255;
13487
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
5307 if (cmd == NULL)
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
5308 {
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
5309 STRCPY(newcmd, p_sh);
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
5310 ch_log(NULL, "starting terminal to run a shell");
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
5311 }
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
5312 else
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
5313 {
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
5314 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s", p_sh, p_shcf, cmd);
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
5315 ch_log(NULL, "starting terminal for system command '%s'", cmd);
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
5316 }
13485
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5317
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5318 init_job_options(&opt);
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5319
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5320 argvar[0].v_type = VAR_STRING;
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5321 argvar[0].vval.v_string = newcmd;
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5322 argvar[1].v_type = VAR_UNKNOWN;
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5323 buf = term_start(argvar, NULL, &opt, TERM_START_SYSTEM);
13491
cc7dc249e371 patch 8.0.1619: Win32 GUI: crash when winpty is not installed
Christian Brabandt <cb@256bit.org>
parents: 13487
diff changeset
5324 if (buf == NULL)
16046
884b683d12e9 patch 8.1.1028: MS-Windows: memory leak when creating terminal fails
Bram Moolenaar <Bram@vim.org>
parents: 16015
diff changeset
5325 {
884b683d12e9 patch 8.1.1028: MS-Windows: memory leak when creating terminal fails
Bram Moolenaar <Bram@vim.org>
parents: 16015
diff changeset
5326 vim_free(newcmd);
13491
cc7dc249e371 patch 8.0.1619: Win32 GUI: crash when winpty is not installed
Christian Brabandt <cb@256bit.org>
parents: 13487
diff changeset
5327 return 255;
16046
884b683d12e9 patch 8.1.1028: MS-Windows: memory leak when creating terminal fails
Bram Moolenaar <Bram@vim.org>
parents: 16015
diff changeset
5328 }
13485
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5329
14139
4d3f6bf86bec patch 8.1.0087: v:shell_error is always zero when using terminal for "!cmd"
Christian Brabandt <cb@256bit.org>
parents: 14067
diff changeset
5330 job = term_getjob(buf->b_term);
4d3f6bf86bec patch 8.1.0087: v:shell_error is always zero when using terminal for "!cmd"
Christian Brabandt <cb@256bit.org>
parents: 14067
diff changeset
5331 ++job->jv_refcount;
4d3f6bf86bec patch 8.1.0087: v:shell_error is always zero when using terminal for "!cmd"
Christian Brabandt <cb@256bit.org>
parents: 14067
diff changeset
5332
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5333 // Find a window to make "buf" curbuf.
13485
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5334 aucmd_prepbuf(&aco, buf);
31263
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5335 if (curbuf == buf)
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5336 {
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5337 // Only do this when a window was found for "buf".
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5338 clear_oparg(&oa);
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5339 while (term_use_loop())
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5340 {
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5341 if (oa.op_type == OP_NOP && oa.regname == NUL && !VIsual_active)
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5342 {
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5343 // If terminal_loop() returns OK we got a key that is handled
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5344 // in Normal model. We don't do redrawing anyway.
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5345 if (terminal_loop(TRUE) == OK)
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5346 normal_cmd(&oa, TRUE);
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5347 }
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5348 else
13485
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5349 normal_cmd(&oa, TRUE);
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5350 }
31263
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5351 retval = job->jv_exitval;
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5352 ch_log(NULL, "system command finished");
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5353
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5354 job_unref(job);
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5355
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5356 // restore curwin/curbuf and a few other things
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5357 aucmd_restbuf(&aco);
d8e7d725a666 patch 9.0.0965: using one window for executing autocommands is insufficient
Bram Moolenaar <Bram@vim.org>
parents: 31194
diff changeset
5358 }
13485
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5359
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5360 wait_return(TRUE);
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5361 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, buf->b_fnum, TRUE);
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5362
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5363 vim_free(newcmd);
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5364 return retval;
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5365 }
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5366 #endif
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5367
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5368 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5369 * Either execute a command by calling the shell or start a new shell
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5370 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5371 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5372 mch_call_shell(
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
5373 char_u *cmd,
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5374 int options) // SHELL_*, see vim.h
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5375 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5376 int x = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5377 int tmode = cur_tmode;
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5378 WCHAR szShellTitle[512];
6293
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
5379
31287
fa309d9af73c patch 9.0.0977: it is not easy to see what client-server commands are doing
Bram Moolenaar <Bram@vim.org>
parents: 31263
diff changeset
5380 #ifdef FEAT_EVAL
28435
0533e7466ef0 patch 8.2.4742: there is no way to start logging very early in startup
Bram Moolenaar <Bram@vim.org>
parents: 27657
diff changeset
5381 ch_log(NULL, "executing shell command: %s", cmd);
0533e7466ef0 patch 8.2.4742: there is no way to start logging very early in startup
Bram Moolenaar <Bram@vim.org>
parents: 27657
diff changeset
5382 #endif
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5383 // Change the title to reflect that we are in a subshell.
24768
7334bf933510 patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents: 24749
diff changeset
5384 if (GetConsoleTitleW(szShellTitle, ARRAY_LENGTH(szShellTitle) - 4) > 0)
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5385 {
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5386 if (cmd == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5387 wcscat(szShellTitle, L" :sh");
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5388 else
6290
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
5389 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5390 WCHAR *wn = enc_to_utf16((char_u *)cmd, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5391
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5392 if (wn != NULL)
6290
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
5393 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5394 wcscat(szShellTitle, L" - !");
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5395 if ((wcslen(szShellTitle) + wcslen(wn) <
24768
7334bf933510 patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents: 24749
diff changeset
5396 ARRAY_LENGTH(szShellTitle)))
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5397 wcscat(szShellTitle, wn);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5398 SetConsoleTitleW(szShellTitle);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5399 vim_free(wn);
6290
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
5400 }
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
5401 }
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
5402 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5403
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5404 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5405
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5406 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5407 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5408 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5409 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5410 fflush(fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5411 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5412 #endif
13485
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5413 #if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
16984
d4ecdb8a4c58 patch 8.1.1492: MS-Windows: when "!" is in 'guioptions' ":!start" fails
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5414 // TODO: make the terminal window work with input or output redirected.
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5415 if (
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5416 # ifdef VIMDLL
16984
d4ecdb8a4c58 patch 8.1.1492: MS-Windows: when "!" is in 'guioptions' ":!start" fails
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5417 gui.in_use &&
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5418 # endif
16984
d4ecdb8a4c58 patch 8.1.1492: MS-Windows: when "!" is in 'guioptions' ":!start" fails
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5419 vim_strchr(p_go, GO_TERMINAL) != NULL
13485
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5420 && (options & (SHELL_FILTER|SHELL_DOOUT|SHELL_WRITE|SHELL_READ)) == 0)
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5421 {
16984
d4ecdb8a4c58 patch 8.1.1492: MS-Windows: when "!" is in 'guioptions' ":!start" fails
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5422 char_u *cmdbase = cmd;
d4ecdb8a4c58 patch 8.1.1492: MS-Windows: when "!" is in 'guioptions' ":!start" fails
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5423
18133
d683b2c82c00 patch 8.1.2061: MS-Windows GUI: ":sh" crashes when trying to use a terminal
Bram Moolenaar <Bram@vim.org>
parents: 18064
diff changeset
5424 if (cmdbase != NULL)
d683b2c82c00 patch 8.1.2061: MS-Windows GUI: ":sh" crashes when trying to use a terminal
Bram Moolenaar <Bram@vim.org>
parents: 18064
diff changeset
5425 // Skip a leading quote and (.
d683b2c82c00 patch 8.1.2061: MS-Windows GUI: ":sh" crashes when trying to use a terminal
Bram Moolenaar <Bram@vim.org>
parents: 18064
diff changeset
5426 while (*cmdbase == '"' || *cmdbase == '(')
d683b2c82c00 patch 8.1.2061: MS-Windows GUI: ":sh" crashes when trying to use a terminal
Bram Moolenaar <Bram@vim.org>
parents: 18064
diff changeset
5427 ++cmdbase;
16984
d4ecdb8a4c58 patch 8.1.1492: MS-Windows: when "!" is in 'guioptions' ":!start" fails
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5428
d4ecdb8a4c58 patch 8.1.1492: MS-Windows: when "!" is in 'guioptions' ":!start" fails
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5429 // Check the command does not begin with "start "
18611
6a7ebc2ee528 patch 8.1.2299: ConPTY in MS-Windows 1909 is still wrong
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
5430 if (cmdbase == NULL || STRNICMP(cmdbase, "start", 5) != 0
6a7ebc2ee528 patch 8.1.2299: ConPTY in MS-Windows 1909 is still wrong
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
5431 || !VIM_ISWHITE(cmdbase[5]))
16984
d4ecdb8a4c58 patch 8.1.1492: MS-Windows: when "!" is in 'guioptions' ":!start" fails
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5432 {
d4ecdb8a4c58 patch 8.1.1492: MS-Windows: when "!" is in 'guioptions' ":!start" fails
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5433 // Use a terminal window to run the command in.
d4ecdb8a4c58 patch 8.1.1492: MS-Windows: when "!" is in 'guioptions' ":!start" fails
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5434 x = mch_call_shell_terminal(cmd, options);
d4ecdb8a4c58 patch 8.1.1492: MS-Windows: when "!" is in 'guioptions' ":!start" fails
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5435 resettitle();
d4ecdb8a4c58 patch 8.1.1492: MS-Windows: when "!" is in 'guioptions' ":!start" fails
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5436 return x;
d4ecdb8a4c58 patch 8.1.1492: MS-Windows: when "!" is in 'guioptions' ":!start" fails
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
5437 }
13485
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5438 }
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5439 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5440
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5441 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5442 * Catch all deadly signals while running the external command, because a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5443 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5444 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5445 signal(SIGINT, SIG_IGN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5446 #if defined(__GNUC__) && !defined(__MINGW32__)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5447 signal(SIGKILL, SIG_IGN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5448 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5449 signal(SIGBREAK, SIG_IGN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5450 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5451 signal(SIGILL, SIG_IGN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5452 signal(SIGFPE, SIG_IGN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5453 signal(SIGSEGV, SIG_IGN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5454 signal(SIGTERM, SIG_IGN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5455 signal(SIGABRT, SIG_IGN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5456
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5457 if (options & SHELL_COOKED)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5458 settmode(TMODE_COOK); // set to normal mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5459
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5460 if (cmd == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5461 {
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
5462 x = mch_system((char *)p_sh, options);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5463 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5464 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5465 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5466 // we use "command" or "cmd" to start the shell; slow but easy
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5467 char_u *newcmd = NULL;
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5468 char_u *cmdbase = cmd;
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5469 long_u cmdlen;
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5470
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5471 // Skip a leading ", ( and "(.
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5472 if (*cmdbase == '"' )
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5473 ++cmdbase;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5474 if (*cmdbase == '(')
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5475 ++cmdbase;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5476
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
5477 if ((STRNICMP(cmdbase, "start", 5) == 0) && VIM_ISWHITE(cmdbase[5]))
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5478 {
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5479 STARTUPINFO si;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5480 PROCESS_INFORMATION pi;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5481 DWORD flags = CREATE_NEW_CONSOLE;
11230
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
5482 INT n_show_cmd = SW_SHOWNORMAL;
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5483 char_u *p;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5484
5627
f29febf858be updated for version 7.4.160
Bram Moolenaar <bram@vim.org>
parents: 5590
diff changeset
5485 ZeroMemory(&si, sizeof(si));
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5486 si.cb = sizeof(si);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5487 si.lpReserved = NULL;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5488 si.lpDesktop = NULL;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5489 si.lpTitle = NULL;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5490 si.dwFlags = 0;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5491 si.cbReserved2 = 0;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5492 si.lpReserved2 = NULL;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5493
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5494 cmdbase = skipwhite(cmdbase + 5);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5495 if ((STRNICMP(cmdbase, "/min", 4) == 0)
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
5496 && VIM_ISWHITE(cmdbase[4]))
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5497 {
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5498 cmdbase = skipwhite(cmdbase + 4);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5499 si.dwFlags = STARTF_USESHOWWINDOW;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5500 si.wShowWindow = SW_SHOWMINNOACTIVE;
11230
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
5501 n_show_cmd = SW_SHOWMINNOACTIVE;
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5502 }
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5503 else if ((STRNICMP(cmdbase, "/b", 2) == 0)
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
5504 && VIM_ISWHITE(cmdbase[2]))
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5505 {
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5506 cmdbase = skipwhite(cmdbase + 2);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5507 flags = CREATE_NO_WINDOW;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5508 si.dwFlags = STARTF_USESTDHANDLES;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5509 si.hStdInput = CreateFile("\\\\.\\NUL", // File name
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5510 GENERIC_READ, // Access flags
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5511 0, // Share flags
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5512 NULL, // Security att.
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5513 OPEN_EXISTING, // Open flags
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5514 FILE_ATTRIBUTE_NORMAL, // File att.
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5515 NULL); // Temp file
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5516 si.hStdOutput = si.hStdInput;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5517 si.hStdError = si.hStdInput;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5518 }
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5519
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5520 // Remove a trailing ", ) and )" if they have a match
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5521 // at the start of the command.
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5522 if (cmdbase > cmd)
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5523 {
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5524 p = cmdbase + STRLEN(cmdbase);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5525 if (p > cmdbase && p[-1] == '"' && *cmd == '"')
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5526 *--p = NUL;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5527 if (p > cmdbase && p[-1] == ')'
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5528 && (*cmd =='(' || cmd[1] == '('))
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5529 *--p = NUL;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5530 }
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5531
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5532 newcmd = cmdbase;
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5533 unescape_shellxquote(cmdbase, p_sxe);
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5534
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5535 /*
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5536 * If creating new console, arguments are passed to the
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5537 * 'cmd.exe' as-is. If it's not, arguments are not treated
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5538 * correctly for current 'cmd.exe'. So unescape characters in
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5539 * shellxescape except '|' for avoiding to be treated as
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5540 * argument to them. Pass the arguments to sub-shell.
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5541 */
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5542 if (flags != CREATE_NEW_CONSOLE)
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5543 {
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5544 char_u *subcmd;
3367
3479ac596f6c updated for version 7.3.450
Bram Moolenaar <bram@vim.org>
parents: 3363
diff changeset
5545 char_u *cmd_shell = mch_getenv("COMSPEC");
3479ac596f6c updated for version 7.3.450
Bram Moolenaar <bram@vim.org>
parents: 3363
diff changeset
5546
3479ac596f6c updated for version 7.3.450
Bram Moolenaar <bram@vim.org>
parents: 3363
diff changeset
5547 if (cmd_shell == NULL || *cmd_shell == NUL)
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
5548 cmd_shell = (char_u *)default_shell();
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
5549
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
5550 subcmd = vim_strsave_escaped_ext(cmdbase,
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
5551 (char_u *)"|", '^', FALSE);
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5552 if (subcmd != NULL)
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5553 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5554 // make "cmd.exe /c arguments"
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5555 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5;
16768
695d9ef00b03 patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents: 16764
diff changeset
5556 newcmd = alloc(cmdlen);
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5557 if (newcmd != NULL)
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5558 vim_snprintf((char *)newcmd, cmdlen, "%s /c %s",
3367
3479ac596f6c updated for version 7.3.450
Bram Moolenaar <bram@vim.org>
parents: 3363
diff changeset
5559 cmd_shell, subcmd);
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5560 else
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5561 newcmd = cmdbase;
3367
3479ac596f6c updated for version 7.3.450
Bram Moolenaar <bram@vim.org>
parents: 3363
diff changeset
5562 vim_free(subcmd);
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5563 }
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5564 }
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5565
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5566 /*
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5567 * Now, start the command as a process, so that it doesn't
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5568 * inherit our handles which causes unpleasant dangling swap
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5569 * files if we exit before the spawned process
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5570 */
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5571 if (vim_create_process((char *)newcmd, FALSE, flags,
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5572 &si, &pi, NULL, NULL))
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5573 x = 0;
11230
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
5574 else if (vim_shell_execute((char *)newcmd, n_show_cmd)
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
5575 > (HINSTANCE)32)
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
5576 x = 0;
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5577 else
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5578 {
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5579 x = -1;
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15866
diff changeset
5580 #ifdef FEAT_GUI_MSWIN
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5581 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5582 if (gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5583 # endif
26913
d4e61d61afd9 patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
5584 emsg(_(e_command_not_found));
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5585 #endif
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5586 }
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5587
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5588 if (newcmd != cmdbase)
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5589 vim_free(newcmd);
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5590
5627
f29febf858be updated for version 7.4.160
Bram Moolenaar <bram@vim.org>
parents: 5590
diff changeset
5591 if (si.dwFlags == STARTF_USESTDHANDLES && si.hStdInput != NULL)
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5592 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5593 // Close the handle to \\.\NUL created above.
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5594 CloseHandle(si.hStdInput);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5595 }
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5596 // Close the handles to the subprocess, so that it goes away
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5597 CloseHandle(pi.hThread);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5598 CloseHandle(pi.hProcess);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5599 }
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5600 else
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5601 {
16584
29a0a549c790 patch 8.1.1295: when vimrun.exe does not exist external command may fail
Bram Moolenaar <Bram@vim.org>
parents: 16455
diff changeset
5602 cmdlen =
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15866
diff changeset
5603 #ifdef FEAT_GUI_MSWIN
16734
e3feaa3e5f10 patch 8.1.1369: get E484 when using system() during GUI startup
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
5604 ((gui.in_use || gui.starting) ?
16584
29a0a549c790 patch 8.1.1295: when vimrun.exe does not exist external command may fail
Bram Moolenaar <Bram@vim.org>
parents: 16455
diff changeset
5605 (!s_dont_use_vimrun && p_stmp ?
29a0a549c790 patch 8.1.1295: when vimrun.exe does not exist external command may fail
Bram Moolenaar <Bram@vim.org>
parents: 16455
diff changeset
5606 STRLEN(vimrun_path) : STRLEN(p_sh) + STRLEN(p_shcf))
29a0a549c790 patch 8.1.1295: when vimrun.exe does not exist external command may fail
Bram Moolenaar <Bram@vim.org>
parents: 16455
diff changeset
5607 : 0) +
29a0a549c790 patch 8.1.1295: when vimrun.exe does not exist external command may fail
Bram Moolenaar <Bram@vim.org>
parents: 16455
diff changeset
5608 #endif
29a0a549c790 patch 8.1.1295: when vimrun.exe does not exist external command may fail
Bram Moolenaar <Bram@vim.org>
parents: 16455
diff changeset
5609 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10;
1569
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
5610
16768
695d9ef00b03 patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents: 16764
diff changeset
5611 newcmd = alloc(cmdlen);
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5612 if (newcmd != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5613 {
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15866
diff changeset
5614 #if defined(FEAT_GUI_MSWIN)
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5615 if (
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5616 # ifdef VIMDLL
16734
e3feaa3e5f10 patch 8.1.1369: get E484 when using system() during GUI startup
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
5617 (gui.in_use || gui.starting) &&
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5618 # endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5619 need_vimrun_warning)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5620 {
10400
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5621 char *msg = _("VIMRUN.EXE not found in your $PATH.\n"
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5622 "External commands will not pause after completion.\n"
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5623 "See :help win32-vimrun for more information.");
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5624 char *title = _("Vim Warning");
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5625 WCHAR *wmsg = enc_to_utf16((char_u *)msg, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5626 WCHAR *wtitle = enc_to_utf16((char_u *)title, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5627
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5628 if (wmsg != NULL && wtitle != NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5629 MessageBoxW(NULL, wmsg, wtitle, MB_ICONWARNING);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5630 vim_free(wmsg);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5631 vim_free(wtitle);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5632 need_vimrun_warning = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5633 }
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5634 if (
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5635 # ifdef VIMDLL
16734
e3feaa3e5f10 patch 8.1.1369: get E484 when using system() during GUI startup
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
5636 (gui.in_use || gui.starting) &&
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5637 # endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5638 !s_dont_use_vimrun && p_stmp)
16750
8050cde51945 patch 8.1.1377: MS-Windows GUI uses wrong shell command for bash
Bram Moolenaar <Bram@vim.org>
parents: 16734
diff changeset
5639 // Use vimrun to execute the command. It opens a console
8050cde51945 patch 8.1.1377: MS-Windows GUI uses wrong shell command for bash
Bram Moolenaar <Bram@vim.org>
parents: 16734
diff changeset
5640 // window, which can be closed without killing Vim.
2311
ccda151dde4e Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents: 2215
diff changeset
5641 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s",
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5642 vimrun_path,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5643 (msg_silent != 0 || (options & SHELL_DOOUT))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5644 ? "-s " : "",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5645 p_sh, p_shcf, cmd);
16750
8050cde51945 patch 8.1.1377: MS-Windows GUI uses wrong shell command for bash
Bram Moolenaar <Bram@vim.org>
parents: 16734
diff changeset
5646 else if (
16584
29a0a549c790 patch 8.1.1295: when vimrun.exe does not exist external command may fail
Bram Moolenaar <Bram@vim.org>
parents: 16455
diff changeset
5647 # ifdef VIMDLL
16750
8050cde51945 patch 8.1.1377: MS-Windows GUI uses wrong shell command for bash
Bram Moolenaar <Bram@vim.org>
parents: 16734
diff changeset
5648 (gui.in_use || gui.starting) &&
16584
29a0a549c790 patch 8.1.1295: when vimrun.exe does not exist external command may fail
Bram Moolenaar <Bram@vim.org>
parents: 16455
diff changeset
5649 # endif
17569
9544335db006 patch 8.1.1782: MS-Windows: system() has temp file error with 'noshelltemp'
Bram Moolenaar <Bram@vim.org>
parents: 17393
diff changeset
5650 s_dont_use_vimrun && STRCMP(p_shcf, "/c") == 0)
16750
8050cde51945 patch 8.1.1377: MS-Windows GUI uses wrong shell command for bash
Bram Moolenaar <Bram@vim.org>
parents: 16734
diff changeset
5651 // workaround for the case that "vimrun" does not exist
16584
29a0a549c790 patch 8.1.1295: when vimrun.exe does not exist external command may fail
Bram Moolenaar <Bram@vim.org>
parents: 16455
diff changeset
5652 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s %s %s",
29a0a549c790 patch 8.1.1295: when vimrun.exe does not exist external command may fail
Bram Moolenaar <Bram@vim.org>
parents: 16455
diff changeset
5653 p_sh, p_shcf, p_sh, p_shcf, cmd);
29a0a549c790 patch 8.1.1295: when vimrun.exe does not exist external command may fail
Bram Moolenaar <Bram@vim.org>
parents: 16455
diff changeset
5654 else
29a0a549c790 patch 8.1.1295: when vimrun.exe does not exist external command may fail
Bram Moolenaar <Bram@vim.org>
parents: 16455
diff changeset
5655 #endif
2311
ccda151dde4e Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents: 2215
diff changeset
5656 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s",
1569
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
5657 p_sh, p_shcf, cmd);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5658 x = mch_system((char *)newcmd, options);
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5659 vim_free(newcmd);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5660 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5661 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5662 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5663
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5664 if (tmode == TMODE_RAW)
20437
3bb4dea4a164 patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents: 20227
diff changeset
5665 {
3bb4dea4a164 patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents: 20227
diff changeset
5666 // The shell may have messed with the mode, always set it.
3bb4dea4a164 patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents: 20227
diff changeset
5667 cur_tmode = TMODE_UNKNOWN;
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5668 settmode(TMODE_RAW); // set to raw mode
20437
3bb4dea4a164 patch 8.2.0773: switching to raw mode every time ":" is used
Bram Moolenaar <Bram@vim.org>
parents: 20227
diff changeset
5669 }
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5670
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5671 // Print the return value, unless "vimrun" was used.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5672 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15866
diff changeset
5673 #if defined(FEAT_GUI_MSWIN)
16734
e3feaa3e5f10 patch 8.1.1369: get E484 when using system() during GUI startup
Bram Moolenaar <Bram@vim.org>
parents: 16606
diff changeset
5674 && ((gui.in_use || gui.starting) ?
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
5675 ((options & SHELL_DOOUT) || s_dont_use_vimrun || !p_stmp) : 1)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5676 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5677 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5678 {
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15211
diff changeset
5679 smsg(_("shell returned %d"), x);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5680 msg_putchar('\n');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5681 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5682 resettitle();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5683
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5684 signal(SIGINT, SIG_DFL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5685 #if defined(__GNUC__) && !defined(__MINGW32__)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5686 signal(SIGKILL, SIG_DFL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5687 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5688 signal(SIGBREAK, SIG_DFL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5689 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5690 signal(SIGILL, SIG_DFL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5691 signal(SIGFPE, SIG_DFL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5692 signal(SIGSEGV, SIG_DFL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5693 signal(SIGTERM, SIG_DFL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5694 signal(SIGABRT, SIG_DFL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5695
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5696 return x;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5697 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5698
8493
caed4b2d305f commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents: 8491
diff changeset
5699 #if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
8483
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5700 static HANDLE
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5701 job_io_file_open(
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5702 char_u *fname,
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5703 DWORD dwDesiredAccess,
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5704 DWORD dwShareMode,
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5705 LPSECURITY_ATTRIBUTES lpSecurityAttributes,
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5706 DWORD dwCreationDisposition,
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5707 DWORD dwFlagsAndAttributes)
8483
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5708 {
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5709 HANDLE h;
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5710 WCHAR *wn;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5711
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5712 wn = enc_to_utf16(fname, NULL);
8483
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5713 if (wn == NULL)
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5714 return INVALID_HANDLE_VALUE;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5715
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5716 h = CreateFileW(wn, dwDesiredAccess, dwShareMode,
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5717 lpSecurityAttributes, dwCreationDisposition,
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5718 dwFlagsAndAttributes, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
5719 vim_free(wn);
8483
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5720 return h;
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5721 }
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5722
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5723 /*
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5724 * Turn the dictionary "env" into a NUL separated list that can be used as the
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5725 * environment argument of vim_create_process().
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5726 */
12724
17c257dd2438 patch 8.0.1240: MS-Windows: term_start() does not support environment
Christian Brabandt <cb@256bit.org>
parents: 12140
diff changeset
5727 void
12907
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5728 win32_build_env(dict_T *env, garray_T *gap, int is_terminal)
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5729 {
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5730 hashitem_T *hi;
12907
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5731 long_u todo = env != NULL ? env->dv_hashtab.ht_used : 0;
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5732 LPVOID base = GetEnvironmentStringsW();
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5733
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
5734 // for last \0
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5735 if (ga_grow(gap, 1) == FAIL)
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5736 return;
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5737
12907
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5738 if (env != NULL)
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5739 {
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5740 for (hi = env->dv_hashtab.ht_array; todo > 0; ++hi)
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5741 {
12907
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5742 if (!HASHITEM_EMPTY(hi))
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5743 {
12907
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5744 typval_T *item = &dict_lookup(hi)->di_tv;
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5745 WCHAR *wkey = enc_to_utf16((char_u *)hi->hi_key, NULL);
15211
de63593896b3 patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents: 15034
diff changeset
5746 WCHAR *wval = enc_to_utf16(tv_get_string(item), NULL);
12907
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5747 --todo;
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5748 if (wkey != NULL && wval != NULL)
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5749 {
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5750 size_t n;
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5751 size_t lkey = wcslen(wkey);
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5752 size_t lval = wcslen(wval);
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5753
31837
e16361210675 patch 9.0.1251: checking returned value of ga_grow() is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 31805
diff changeset
5754 if (ga_grow(gap, (int)(lkey + lval + 2)) == FAIL)
12907
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5755 continue;
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5756 for (n = 0; n < lkey; n++)
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5757 *((WCHAR*)gap->ga_data + gap->ga_len++) = wkey[n];
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5758 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'=';
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5759 for (n = 0; n < lval; n++)
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5760 *((WCHAR*)gap->ga_data + gap->ga_len++) = wval[n];
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5761 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5762 }
15967
ddd82b1c9e9d patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents: 15955
diff changeset
5763 vim_free(wkey);
ddd82b1c9e9d patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents: 15955
diff changeset
5764 vim_free(wval);
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5765 }
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5766 }
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5767 }
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5768
19362
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5769 if (base)
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5770 {
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5771 WCHAR *p = (WCHAR*) base;
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5772
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5773 // for last \0
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5774 if (ga_grow(gap, 1) == FAIL)
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5775 return;
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5776
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5777 while (*p != 0 || *(p + 1) != 0)
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5778 {
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5779 if (ga_grow(gap, 1) == OK)
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5780 *((WCHAR*)gap->ga_data + gap->ga_len++) = *p;
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5781 p++;
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5782 }
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5783 FreeEnvironmentStrings(base);
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5784 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5785 }
7894f20668b1 patch 8.2.0239: MS-Windows: 'env' job option does not override existing vars
Bram Moolenaar <Bram@vim.org>
parents: 19360
diff changeset
5786
14065
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5787 # if defined(FEAT_CLIENTSERVER) || defined(FEAT_TERMINAL)
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5788 {
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5789 # ifdef FEAT_CLIENTSERVER
12907
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5790 char_u *servername = get_vim_var_str(VV_SEND_SERVER);
14063
f39150ec146e patch 8.1.0049: shell cannot tell running in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13853
diff changeset
5791 size_t servername_len = STRLEN(servername);
14065
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5792 # endif
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5793 # ifdef FEAT_TERMINAL
14063
f39150ec146e patch 8.1.0049: shell cannot tell running in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13853
diff changeset
5794 char_u *version = get_vim_var_str(VV_VERSION);
f39150ec146e patch 8.1.0049: shell cannot tell running in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13853
diff changeset
5795 size_t version_len = STRLEN(version);
14065
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5796 # endif
14063
f39150ec146e patch 8.1.0049: shell cannot tell running in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13853
diff changeset
5797 // size of "VIM_SERVERNAME=" and value,
f39150ec146e patch 8.1.0049: shell cannot tell running in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13853
diff changeset
5798 // plus "VIM_TERMINAL=" and value,
f39150ec146e patch 8.1.0049: shell cannot tell running in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13853
diff changeset
5799 // plus two terminating NULs
f39150ec146e patch 8.1.0049: shell cannot tell running in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13853
diff changeset
5800 size_t n = 0
14065
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5801 # ifdef FEAT_CLIENTSERVER
14063
f39150ec146e patch 8.1.0049: shell cannot tell running in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13853
diff changeset
5802 + 15 + servername_len
14065
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5803 # endif
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5804 # ifdef FEAT_TERMINAL
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5805 + 13 + version_len + 2
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5806 # endif
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5807 ;
14063
f39150ec146e patch 8.1.0049: shell cannot tell running in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13853
diff changeset
5808
f39150ec146e patch 8.1.0049: shell cannot tell running in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13853
diff changeset
5809 if (ga_grow(gap, (int)n) == OK)
12907
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5810 {
14065
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5811 # ifdef FEAT_CLIENTSERVER
12907
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5812 for (n = 0; n < 15; n++)
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5813 *((WCHAR*)gap->ga_data + gap->ga_len++) =
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5814 (WCHAR)"VIM_SERVERNAME="[n];
14063
f39150ec146e patch 8.1.0049: shell cannot tell running in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13853
diff changeset
5815 for (n = 0; n < servername_len; n++)
12907
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5816 *((WCHAR*)gap->ga_data + gap->ga_len++) =
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5817 (WCHAR)servername[n];
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5818 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
14065
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5819 # endif
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5820 # ifdef FEAT_TERMINAL
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5821 if (is_terminal)
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5822 {
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5823 for (n = 0; n < 13; n++)
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5824 *((WCHAR*)gap->ga_data + gap->ga_len++) =
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5825 (WCHAR)"VIM_TERMINAL="[n];
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5826 for (n = 0; n < version_len; n++)
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5827 *((WCHAR*)gap->ga_data + gap->ga_len++) =
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5828 (WCHAR)version[n];
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5829 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5830 }
e271ca6f32f9 patch 8.1.0050: $VIM_TERMINAL is also set when not in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 14063
diff changeset
5831 # endif
12907
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5832 }
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5833 }
14067
39ec4b90e4a7 patch 8.1.0051: MS-Windows: missing #endif
Christian Brabandt <cb@256bit.org>
parents: 14065
diff changeset
5834 # endif
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5835 }
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5836
15539
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5837 /*
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5838 * Create a pair of pipes.
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5839 * Return TRUE for success, FALSE for failure.
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5840 */
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5841 static BOOL
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5842 create_pipe_pair(HANDLE handles[2])
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5843 {
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5844 static LONG s;
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5845 char name[64];
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5846 SECURITY_ATTRIBUTES sa;
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5847
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5848 sprintf(name, "\\\\?\\pipe\\vim-%08lx-%08lx",
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5849 GetCurrentProcessId(),
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5850 InterlockedIncrement(&s));
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5851
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5852 // Create named pipe. Max size of named pipe is 65535.
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5853 handles[1] = CreateNamedPipe(
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5854 name,
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5855 PIPE_ACCESS_OUTBOUND | FILE_FLAG_OVERLAPPED,
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5856 PIPE_TYPE_BYTE | PIPE_NOWAIT,
15621
bfbdef46aa7d patch 8.1.0818: MS-Windows: cannot send large data with ch_sendraw()
Bram Moolenaar <Bram@vim.org>
parents: 15603
diff changeset
5857 1, MAX_NAMED_PIPE_SIZE, 0, 0, NULL);
15539
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5858
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5859 if (handles[1] == INVALID_HANDLE_VALUE)
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5860 return FALSE;
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5861
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5862 sa.nLength = sizeof(sa);
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5863 sa.bInheritHandle = TRUE;
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5864 sa.lpSecurityDescriptor = NULL;
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5865
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5866 handles[0] = CreateFile(name,
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5867 FILE_GENERIC_READ,
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5868 FILE_SHARE_READ, &sa,
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5869 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5870
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5871 if (handles[0] == INVALID_HANDLE_VALUE)
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5872 {
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
5873 CloseHandle(handles[1]);
15539
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5874 return FALSE;
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5875 }
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5876
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5877 return TRUE;
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5878 }
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5879
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5880 void
11723
1922710ee8fa patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents: 11230
diff changeset
5881 mch_job_start(char *cmd, job_T *job, jobopt_T *options)
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5882 {
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5883 STARTUPINFO si;
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5884 PROCESS_INFORMATION pi;
10311
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5885 HANDLE jo;
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5886 SECURITY_ATTRIBUTES saAttr;
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5887 channel_T *channel = NULL;
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5888 HANDLE ifd[2];
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5889 HANDLE ofd[2];
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5890 HANDLE efd[2];
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5891 garray_T ga;
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5892
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5893 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5894 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5895 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5896 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5897 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5898 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5899 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5900
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5901 if (use_out_for_err && use_null_for_out)
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5902 use_null_for_err = TRUE;
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5903
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5904 ifd[0] = INVALID_HANDLE_VALUE;
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5905 ifd[1] = INVALID_HANDLE_VALUE;
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5906 ofd[0] = INVALID_HANDLE_VALUE;
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5907 ofd[1] = INVALID_HANDLE_VALUE;
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5908 efd[0] = INVALID_HANDLE_VALUE;
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5909 efd[1] = INVALID_HANDLE_VALUE;
27028
c9474ae175f4 patch 8.2.4043: using int for second argument of ga_init2()
Bram Moolenaar <Bram@vim.org>
parents: 26913
diff changeset
5910 ga_init2(&ga, sizeof(wchar_t), 500);
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5911
10311
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5912 jo = CreateJobObject(NULL, NULL);
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5913 if (jo == NULL)
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5914 {
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5915 job->jv_status = JOB_FAILED;
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5916 goto failed;
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5917 }
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5918
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5919 if (options->jo_env != NULL)
12907
32531a3eab1f patch 8.0.1330: MS-Windows: job in terminal can't get back to Vim
Christian Brabandt <cb@256bit.org>
parents: 12871
diff changeset
5920 win32_build_env(options->jo_env, &ga, FALSE);
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5921
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5922 ZeroMemory(&pi, sizeof(pi));
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5923 ZeroMemory(&si, sizeof(si));
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5924 si.cb = sizeof(si);
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5925 si.dwFlags |= STARTF_USESHOWWINDOW;
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5926 si.wShowWindow = SW_HIDE;
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5927
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5928 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5929 saAttr.bInheritHandle = TRUE;
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5930 saAttr.lpSecurityDescriptor = NULL;
8457
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5931
8430
800423dbc260 commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents: 8386
diff changeset
5932 if (use_file_for_in)
800423dbc260 commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents: 8386
diff changeset
5933 {
800423dbc260 commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents: 8386
diff changeset
5934 char_u *fname = options->jo_io_name[PART_IN];
8457
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5935
8483
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5936 ifd[0] = job_io_file_open(fname, GENERIC_READ,
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5937 FILE_SHARE_READ | FILE_SHARE_WRITE,
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5938 &saAttr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL);
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5939 if (ifd[0] == INVALID_HANDLE_VALUE)
8443
6c421014a0b3 commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents: 8430
diff changeset
5940 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
5941 semsg(_(e_cant_open_file_str), fname);
8443
6c421014a0b3 commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents: 8430
diff changeset
5942 goto failed;
6c421014a0b3 commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents: 8430
diff changeset
5943 }
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5944 }
15539
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5945 else if (!use_null_for_in
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5946 && (!create_pipe_pair(ifd)
ba876ced4f1f patch 8.1.0777: Win32: using pipes for channel does not work well
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
5947 || !SetHandleInformation(ifd[1], HANDLE_FLAG_INHERIT, 0)))
8430
800423dbc260 commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents: 8386
diff changeset
5948 goto failed;
800423dbc260 commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents: 8386
diff changeset
5949
8457
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5950 if (use_file_for_out)
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5951 {
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5952 char_u *fname = options->jo_io_name[PART_OUT];
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5953
8483
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5954 ofd[1] = job_io_file_open(fname, GENERIC_WRITE,
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5955 FILE_SHARE_READ | FILE_SHARE_WRITE,
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5956 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5957 if (ofd[1] == INVALID_HANDLE_VALUE)
8457
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5958 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
5959 semsg(_(e_cant_open_file_str), fname);
8457
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5960 goto failed;
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5961 }
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5962 }
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5963 else if (!use_null_for_out &&
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5964 (!CreatePipe(&ofd[0], &ofd[1], &saAttr, 0)
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
5965 || !SetHandleInformation(ofd[0], HANDLE_FLAG_INHERIT, 0)))
8430
800423dbc260 commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents: 8386
diff changeset
5966 goto failed;
800423dbc260 commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents: 8386
diff changeset
5967
8457
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5968 if (use_file_for_err)
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5969 {
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5970 char_u *fname = options->jo_io_name[PART_ERR];
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5971
8483
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5972 efd[1] = job_io_file_open(fname, GENERIC_WRITE,
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5973 FILE_SHARE_READ | FILE_SHARE_WRITE,
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5974 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5975 if (efd[1] == INVALID_HANDLE_VALUE)
8457
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5976 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
5977 semsg(_(e_cant_open_file_str), fname);
8457
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5978 goto failed;
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5979 }
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5980 }
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5981 else if (!use_out_for_err && !use_null_for_err &&
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5982 (!CreatePipe(&efd[0], &efd[1], &saAttr, 0)
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
5983 || !SetHandleInformation(efd[0], HANDLE_FLAG_INHERIT, 0)))
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5984 goto failed;
8457
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5985
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5986 si.dwFlags |= STARTF_USESTDHANDLES;
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5987 si.hStdInput = ifd[0];
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5988 si.hStdOutput = ofd[1];
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5989 si.hStdError = use_out_for_err ? ofd[1] : efd[1];
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5990
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5991 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5992 {
8491
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
5993 if (options->jo_set & JO_CHANNEL)
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
5994 {
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
5995 channel = options->jo_channel;
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
5996 if (channel != NULL)
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
5997 ++channel->ch_refcount;
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
5998 }
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
5999 else
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
6000 channel = add_channel();
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
6001 if (channel == NULL)
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
6002 goto failed;
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
6003 }
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
6004
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
6005 if (!vim_create_process(cmd, TRUE,
10311
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
6006 CREATE_SUSPENDED |
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6007 CREATE_DEFAULT_ERROR_MODE |
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6008 CREATE_NEW_PROCESS_GROUP |
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
6009 CREATE_UNICODE_ENVIRONMENT |
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6010 CREATE_NEW_CONSOLE,
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
6011 &si, &pi,
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
6012 ga.ga_data,
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
6013 (char *)options->jo_cwd))
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6014 {
10311
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
6015 CloseHandle(jo);
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6016 job->jv_status = JOB_FAILED;
8047
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
6017 goto failed;
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
6018 }
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
6019
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
6020 ga_clear(&ga);
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
6021
10311
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
6022 if (!AssignProcessToJobObject(jo, pi.hProcess))
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
6023 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
6024 // if failing, switch the way to terminate
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
6025 // process with TerminateProcess.
10311
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
6026 CloseHandle(jo);
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
6027 jo = NULL;
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
6028 }
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
6029 ResumeThread(pi.hThread);
8479
9f63e4506c40 commit https://github.com/vim/vim/commit/75578a388d2aff59dc330ceccd8894c79b4bc735
Christian Brabandt <cb@256bit.org>
parents: 8471
diff changeset
6030 CloseHandle(pi.hThread);
8047
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
6031 job->jv_proc_info = pi;
10311
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
6032 job->jv_job_object = jo;
8047
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
6033 job->jv_status = JOB_STARTED;
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
6034
10060
cf9e550f17f6 commit https://github.com/vim/vim/commit/641ad6c7ac7367f95fd927b8efa4bf74ddb9ccf3
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
6035 CloseHandle(ifd[0]);
cf9e550f17f6 commit https://github.com/vim/vim/commit/641ad6c7ac7367f95fd927b8efa4bf74ddb9ccf3
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
6036 CloseHandle(ofd[1]);
cf9e550f17f6 commit https://github.com/vim/vim/commit/641ad6c7ac7367f95fd927b8efa4bf74ddb9ccf3
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
6037 if (!use_out_for_err && !use_null_for_err)
8384
764dba33605c commit https://github.com/vim/vim/commit/c25558bff4ed10d2642e6f5c016701641c494916
Christian Brabandt <cb@256bit.org>
parents: 8281
diff changeset
6038 CloseHandle(efd[1]);
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
6039
8047
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
6040 job->jv_channel = channel;
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
6041 if (channel != NULL)
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
6042 {
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
6043 channel_set_pipes(channel,
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
6044 use_file_for_in || use_null_for_in
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
6045 ? INVALID_FD : (sock_T)ifd[1],
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
6046 use_file_for_out || use_null_for_out
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
6047 ? INVALID_FD : (sock_T)ofd[0],
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
6048 use_out_for_err || use_file_for_err || use_null_for_err
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
6049 ? INVALID_FD : (sock_T)efd[0]);
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
6050 channel_set_job(channel, job, options);
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
6051 }
8047
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
6052 return;
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
6053
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
6054 failed:
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
6055 CloseHandle(ifd[0]);
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
6056 CloseHandle(ofd[0]);
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
6057 CloseHandle(efd[0]);
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
6058 CloseHandle(ifd[1]);
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
6059 CloseHandle(ofd[1]);
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
6060 CloseHandle(efd[1]);
8491
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
6061 channel_unref(channel);
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
6062 ga_clear(&ga);
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6063 }
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6064
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6065 char *
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6066 mch_job_status(job_T *job)
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6067 {
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6068 DWORD dwExitCode = 0;
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6069
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6070 if (!GetExitCodeProcess(job->jv_proc_info.hProcess, &dwExitCode)
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6071 || dwExitCode != STILL_ACTIVE)
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6072 {
8176
477c1d855698 commit https://github.com/vim/vim/commit/eab089d22f172ddd2d33367a998e68c2f1c6c989
Christian Brabandt <cb@256bit.org>
parents: 8172
diff changeset
6073 job->jv_exitval = (int)dwExitCode;
10386
d3f0946b4a80 commit https://github.com/vim/vim/commit/7df915d113ac1981792c50e8b000c9f5f784b78b
Christian Brabandt <cb@256bit.org>
parents: 10317
diff changeset
6074 if (job->jv_status < JOB_ENDED)
10279
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6075 {
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6076 ch_log(job->jv_channel, "Job ended");
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6077 job->jv_status = JOB_ENDED;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6078 }
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6079 return "dead";
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6080 }
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6081 return "run";
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6082 }
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6083
10279
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6084 job_T *
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6085 mch_detect_ended_job(job_T *job_list)
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6086 {
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6087 HANDLE jobHandles[MAXIMUM_WAIT_OBJECTS];
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6088 job_T *jobArray[MAXIMUM_WAIT_OBJECTS];
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6089 job_T *job = job_list;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6090
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6091 while (job != NULL)
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6092 {
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6093 DWORD n;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6094 DWORD result;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6095
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6096 for (n = 0; n < MAXIMUM_WAIT_OBJECTS
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6097 && job != NULL; job = job->jv_next)
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6098 {
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6099 if (job->jv_status == JOB_STARTED)
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6100 {
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6101 jobHandles[n] = job->jv_proc_info.hProcess;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6102 jobArray[n] = job;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6103 ++n;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6104 }
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6105 }
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6106 if (n == 0)
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6107 continue;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6108 result = WaitForMultipleObjects(n, jobHandles, FALSE, 0);
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6109 if (result >= WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + n)
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6110 {
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6111 job_T *wait_job = jobArray[result - WAIT_OBJECT_0];
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6112
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6113 if (STRCMP(mch_job_status(wait_job), "dead") == 0)
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6114 return wait_job;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6115 }
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6116 }
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6117 return NULL;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6118 }
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6119
10317
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6120 static BOOL
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6121 terminate_all(HANDLE process, int code)
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6122 {
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6123 PROCESSENTRY32 pe;
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6124 HANDLE h = INVALID_HANDLE_VALUE;
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6125 DWORD pid = GetProcessId(process);
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6126
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6127 if (pid != 0)
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6128 {
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6129 h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6130 if (h != INVALID_HANDLE_VALUE)
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6131 {
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6132 pe.dwSize = sizeof(PROCESSENTRY32);
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6133 if (!Process32First(h, &pe))
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6134 goto theend;
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6135
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6136 do
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6137 {
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6138 if (pe.th32ParentProcessID == pid)
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6139 {
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6140 HANDLE ph = OpenProcess(
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6141 PROCESS_ALL_ACCESS, FALSE, pe.th32ProcessID);
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6142 if (ph != NULL)
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6143 {
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6144 terminate_all(ph, code);
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6145 CloseHandle(ph);
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6146 }
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6147 }
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6148 } while (Process32Next(h, &pe));
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6149
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6150 CloseHandle(h);
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6151 }
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6152 }
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6153
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6154 theend:
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6155 return TerminateProcess(process, code);
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6156 }
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6157
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6158 /*
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6159 * Send a (deadly) signal to "job".
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6160 * Return FAIL if it didn't work.
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
6161 */
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6162 int
12037
85f0f557661e patch 8.0.0899: function name mch_stop_job() is confusing
Christian Brabandt <cb@256bit.org>
parents: 12015
diff changeset
6163 mch_signal_job(job_T *job, char_u *how)
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6164 {
8251
989ac3aed1ef commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents: 8222
diff changeset
6165 int ret;
989ac3aed1ef commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents: 8222
diff changeset
6166
989ac3aed1ef commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents: 8222
diff changeset
6167 if (STRCMP(how, "term") == 0 || STRCMP(how, "kill") == 0 || *how == NUL)
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6168 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
6169 // deadly signal
10311
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
6170 if (job->jv_job_object != NULL)
15725
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
6171 {
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
6172 if (job->jv_channel != NULL && job->jv_channel->ch_anonymous_pipe)
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
6173 job->jv_channel->ch_killing = TRUE;
27455
6045bf58926d patch 8.2.4256: MS-Windows: compiler warnings when compiled with /W4
Bram Moolenaar <Bram@vim.org>
parents: 27370
diff changeset
6174 return TerminateJobObject(job->jv_job_object, (UINT)-1) ? OK : FAIL;
15725
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
6175 }
19360
16d538568dc8 patch 8.2.0238: MS-Windows: job_stop() results in exit value zero
Bram Moolenaar <Bram@vim.org>
parents: 19239
diff changeset
6176 return terminate_all(job->jv_proc_info.hProcess, -1) ? OK : FAIL;
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6177 }
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6178
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6179 if (!AttachConsole(job->jv_proc_info.dwProcessId))
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6180 return FAIL;
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6181 ret = GenerateConsoleCtrlEvent(
8251
989ac3aed1ef commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents: 8222
diff changeset
6182 STRCMP(how, "int") == 0 ? CTRL_C_EVENT : CTRL_BREAK_EVENT,
989ac3aed1ef commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents: 8222
diff changeset
6183 job->jv_proc_info.dwProcessId)
989ac3aed1ef commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents: 8222
diff changeset
6184 ? OK : FAIL;
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6185 FreeConsole();
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6186 return ret;
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6187 }
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6188
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6189 /*
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6190 * Clear the data related to "job".
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6191 */
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6192 void
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6193 mch_clear_job(job_T *job)
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
6194 {
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
6195 if (job->jv_status == JOB_FAILED)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
6196 return;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
6197
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
6198 if (job->jv_job_object != NULL)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
6199 CloseHandle(job->jv_job_object);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
6200 CloseHandle(job->jv_proc_info.hProcess);
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6201 }
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6202 #endif
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
6203
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6204
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
6205 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6206
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6207 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6208 * Start termcap mode
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6209 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6210 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6211 termcap_mode_start(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6212 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6213 DWORD cmodein;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6214
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6215 if (g_fTermcapMode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6216 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6217
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6218 SaveConsoleBuffer(&g_cbNonTermcap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6219
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6220 if (g_cbTermcap.IsValid)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6221 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6222 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6223 * We've been in termcap mode before. Restore certain screen
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6224 * characteristics, including the buffer size and the window
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6225 * size. Since we will be redrawing the screen, we don't need
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6226 * to restore the actual contents of the buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6227 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6228 RestoreConsoleBuffer(&g_cbTermcap, FALSE);
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6229 reset_console_color_rgb();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6230 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6231 Rows = g_cbTermcap.Info.dwSize.Y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6232 Columns = g_cbTermcap.Info.dwSize.X;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6233 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6234 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6235 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6236 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6237 * This is our first time entering termcap mode. Clear the console
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6238 * screen buffer, and resize the buffer to match the current window
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6239 * size. We will use this as the size of our editing environment.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6240 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6241 ClearConsoleBuffer(g_attrCurrent);
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6242 set_console_color_rgb();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6243 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6244 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6245
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6246 resettitle();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6247
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6248 GetConsoleMode(g_hConIn, &cmodein);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6249 if (g_fMouseActive)
24749
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
6250 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6251 cmodein |= ENABLE_MOUSE_INPUT;
24749
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
6252 cmodein &= ~ENABLE_QUICK_EDIT_MODE;
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
6253 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6254 else
24749
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
6255 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6256 cmodein &= ~ENABLE_MOUSE_INPUT;
24749
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
6257 cmodein |= g_cmodein & ENABLE_QUICK_EDIT_MODE;
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
6258 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6259 cmodein |= ENABLE_WINDOW_INPUT;
24749
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
6260 SetConsoleMode(g_hConIn, cmodein | ENABLE_EXTENDED_FLAGS);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6261
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6262 redraw_later_clear();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6263 g_fTermcapMode = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6264 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6265
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6266
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6267 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6268 * End termcap mode
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6269 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6270 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6271 termcap_mode_end(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6272 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6273 DWORD cmodein;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6274 ConsoleBuffer *cb;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6275 COORD coord;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6276 DWORD dwDummy;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6277
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6278 if (!g_fTermcapMode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6279 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6280
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6281 SaveConsoleBuffer(&g_cbTermcap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6282
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6283 GetConsoleMode(g_hConIn, &cmodein);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6284 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
24749
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
6285 cmodein |= g_cmodein & ENABLE_QUICK_EDIT_MODE;
fb44ba319785 patch 8.2.2913: MS-Windows conpty supports using mouse events
Bram Moolenaar <Bram@vim.org>
parents: 24671
diff changeset
6286 SetConsoleMode(g_hConIn, cmodein | ENABLE_EXTENDED_FLAGS);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6287
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
6288 # ifdef FEAT_RESTORE_ORIG_SCREEN
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
6289 cb = exiting ? &g_cbOrig : &g_cbNonTermcap;
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
6290 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6291 cb = &g_cbNonTermcap;
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
6292 # endif
20051
678cdef2d690 patch 8.2.0581: Win32 console: the cursor position is always top-left
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
6293 RestoreConsoleBuffer(cb, p_rs);
19239
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
6294 restore_console_color_rgb();
31067
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
6295
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
6296 // Switch back to main screen buffer.
31507
26a32a3f05af patch 9.0.1086: display wrong in Windows terminal after exiting Vim
Bram Moolenaar <Bram@vim.org>
parents: 31505
diff changeset
6297 if (exiting && use_alternate_screen_buffer)
31067
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
6298 vtp_printf("\033[?1049l");
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
6299
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
6300 if (!USE_WT && (p_rs || exiting))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6301 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6302 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6303 * Clear anything that happens to be on the current line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6304 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6305 coord.X = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6306 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1));
31839
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
6307 FillConsoleOutputCharacter(g_hConOut, ' ',
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
6308 cb->Info.dwSize.X, coord, &dwDummy);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6309 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6310 * The following is just for aesthetics. If we are exiting without
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6311 * restoring the screen, then we want to have a prompt string
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6312 * appear at the bottom line. However, the command interpreter
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6313 * seems to always advance the cursor one line before displaying
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6314 * the prompt string, which causes the screen to scroll. To
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6315 * counter this, move the cursor up one line before exiting.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6316 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6317 if (exiting && !p_rs)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6318 coord.Y--;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6319 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6320 * Position the cursor at the leftmost column of the desired row.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6321 */
20051
678cdef2d690 patch 8.2.0581: Win32 console: the cursor position is always top-left
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
6322 SetConsoleCursorPosition(g_hConOut, coord);
678cdef2d690 patch 8.2.0581: Win32 console: the cursor position is always top-left
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
6323 }
31067
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
6324 SetConsoleCursorInfo(g_hConOut, &g_cci);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6325 g_fTermcapMode = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6326 }
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
6327 #endif // !FEAT_GUI_MSWIN || VIMDLL
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15866
diff changeset
6328
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15866
diff changeset
6329
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
6330 #if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6331 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6332 mch_write(
10783
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
6333 char_u *s UNUSED,
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
6334 int len UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6335 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
6336 // never used
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6337 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6338
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6339 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6340
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6341 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6342 * clear `n' chars, starting from `coord'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6343 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6344 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6345 clear_chars(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6346 COORD coord,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6347 DWORD n)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6348 {
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
6349 if (!vtp_working)
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6350 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6351 DWORD dwDummy;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6352
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6353 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6354 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord,
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6355 &dwDummy);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6356 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6357 else
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
6358 {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
6359 set_console_color_rgb();
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
6360 gotoxy(coord.X + 1, coord.Y + 1);
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
6361 vtp_printf("\033[%dX", n);
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
6362 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6363 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6364
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6365
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6366 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6367 * Clear the screen
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6368 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6369 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6370 clear_screen(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6371 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6372 g_coord.X = g_coord.Y = 0;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6373
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
6374 if (!vtp_working)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6375 clear_chars(g_coord, Rows * Columns);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6376 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6377 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6378 set_console_color_rgb();
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6379 gotoxy(1, 1);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6380 vtp_printf("\033[2J");
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6381 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6382 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6383
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6384
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6385 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6386 * Clear to end of display
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6387 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6388 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6389 clear_to_end_of_display(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6390 {
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6391 COORD save = g_coord;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6392
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
6393 if (!vtp_working)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6394 clear_chars(g_coord, (Rows - g_coord.Y - 1)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6395 * Columns + (Columns - g_coord.X));
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6396 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6397 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6398 set_console_color_rgb();
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6399 gotoxy(g_coord.X + 1, g_coord.Y + 1);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6400 vtp_printf("\033[0J");
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6401
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6402 gotoxy(save.X + 1, save.Y + 1);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6403 g_coord = save;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6404 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6405 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6406
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6407
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6408 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6409 * Clear to end of line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6410 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6411 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6412 clear_to_end_of_line(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6413 {
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6414 COORD save = g_coord;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6415
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
6416 if (!vtp_working)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6417 clear_chars(g_coord, Columns - g_coord.X);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6418 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6419 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6420 set_console_color_rgb();
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6421 gotoxy(g_coord.X + 1, g_coord.Y + 1);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6422 vtp_printf("\033[0K");
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6423
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6424 gotoxy(save.X + 1, save.Y + 1);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6425 g_coord = save;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6426 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6427 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6428
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6429
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6430 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6431 * Scroll the scroll region up by `cLines' lines
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6432 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6433 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6434 scroll(unsigned cLines)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6435 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6436 COORD oldcoord = g_coord;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6437
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6438 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6439 delete_lines(cLines);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6440
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6441 g_coord = oldcoord;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6442 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6443
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6444
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6445 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6446 * Set the scroll region
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6447 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6448 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6449 set_scroll_region(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6450 unsigned left,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6451 unsigned top,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6452 unsigned right,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6453 unsigned bottom)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6454 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6455 if (left >= right
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6456 || top >= bottom
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6457 || right > (unsigned) Columns - 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6458 || bottom > (unsigned) Rows - 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6459 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6460
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6461 g_srScrollRegion.Left = left;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6462 g_srScrollRegion.Top = top;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6463 g_srScrollRegion.Right = right;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6464 g_srScrollRegion.Bottom = bottom;
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6465 }
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6466
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6467 static void
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6468 set_scroll_region_tb(
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6469 unsigned top,
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6470 unsigned bottom)
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6471 {
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6472 if (top >= bottom || bottom > (unsigned)Rows - 1)
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6473 return;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6474
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6475 g_srScrollRegion.Top = top;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6476 g_srScrollRegion.Bottom = bottom;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6477 }
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6478
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6479 static void
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6480 set_scroll_region_lr(
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6481 unsigned left,
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6482 unsigned right)
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6483 {
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6484 if (left >= right || right > (unsigned)Columns - 1)
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6485 return;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6486
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6487 g_srScrollRegion.Left = left;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6488 g_srScrollRegion.Right = right;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6489 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6490
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6491
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6492 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6493 * Insert `cLines' lines at the current cursor position
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6494 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6495 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6496 insert_lines(unsigned cLines)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6497 {
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6498 SMALL_RECT source, clip;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6499 COORD dest;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6500 CHAR_INFO fill;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6501
16015
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6502 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6503
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6504 dest.X = g_srScrollRegion.Left;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6505 dest.Y = g_coord.Y + cLines;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6506
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6507 source.Left = g_srScrollRegion.Left;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6508 source.Top = g_coord.Y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6509 source.Right = g_srScrollRegion.Right;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6510 source.Bottom = g_srScrollRegion.Bottom - cLines;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6511
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6512 clip.Left = g_srScrollRegion.Left;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6513 clip.Top = g_coord.Y;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6514 clip.Right = g_srScrollRegion.Right;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6515 clip.Bottom = g_srScrollRegion.Bottom;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6516
16015
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6517 fill.Char.AsciiChar = ' ';
31839
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
6518 if (!USE_VTP)
16015
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6519 fill.Attributes = g_attrCurrent;
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6520 else
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6521 fill.Attributes = g_attrDefault;
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6522
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6523 set_console_color_rgb();
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6524
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6525 ScrollConsoleScreenBuffer(g_hConOut, &source, &clip, dest, &fill);
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6526
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6527 // Here we have to deal with a win32 console flake: If the scroll
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6528 // region looks like abc and we scroll c to a and fill with d we get
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6529 // cbd... if we scroll block c one line at a time to a, we get cdd...
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6530 // vim expects cdd consistently... So we have to deal with that
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6531 // here... (this also occurs scrolling the same way in the other
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6532 // direction).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6533
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6534 if (source.Bottom < dest.Y)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6535 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6536 COORD coord;
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6537 int i;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6538
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6539 coord.X = source.Left;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6540 for (i = clip.Top; i < dest.Y; ++i)
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6541 {
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6542 coord.Y = i;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6543 clear_chars(coord, source.Right - source.Left + 1);
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6544 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6545 }
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6546
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
6547 if (vtp_working)
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6548 {
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6549 COORD coord;
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6550 int i;
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6551
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6552 coord.X = source.Left;
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6553 for (i = source.Top; i < dest.Y; ++i)
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6554 {
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6555 coord.Y = i;
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6556 clear_chars(coord, source.Right - source.Left + 1);
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6557 }
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6558 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6559 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6560
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6561
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6562 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6563 * Delete `cLines' lines at the current cursor position
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6564 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6565 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6566 delete_lines(unsigned cLines)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6567 {
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6568 SMALL_RECT source, clip;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6569 COORD dest;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6570 CHAR_INFO fill;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6571 int nb;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6572
16015
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6573 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6574
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6575 dest.X = g_srScrollRegion.Left;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6576 dest.Y = g_coord.Y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6577
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6578 source.Left = g_srScrollRegion.Left;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6579 source.Top = g_coord.Y + cLines;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6580 source.Right = g_srScrollRegion.Right;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6581 source.Bottom = g_srScrollRegion.Bottom;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6582
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6583 clip.Left = g_srScrollRegion.Left;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6584 clip.Top = g_coord.Y;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6585 clip.Right = g_srScrollRegion.Right;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6586 clip.Bottom = g_srScrollRegion.Bottom;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6587
16015
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6588 fill.Char.AsciiChar = ' ';
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
6589 if (!vtp_working)
16015
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6590 fill.Attributes = g_attrCurrent;
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6591 else
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6592 fill.Attributes = g_attrDefault;
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6593
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6594 set_console_color_rgb();
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6595
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6596 ScrollConsoleScreenBuffer(g_hConOut, &source, &clip, dest, &fill);
7e33709a3d0a patch 8.1.1013: MS-Windows: Scrolling fails when dividing the screen
Bram Moolenaar <Bram@vim.org>
parents: 15983
diff changeset
6597
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6598 // Here we have to deal with a win32 console flake; See insert_lines()
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6599 // above.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6600
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6601 nb = dest.Y + (source.Bottom - source.Top) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6602
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6603 if (nb < source.Top)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6604 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6605 COORD coord;
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6606 int i;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6607
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6608 coord.X = source.Left;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6609 for (i = nb; i < clip.Bottom; ++i)
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6610 {
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6611 coord.Y = i;
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6612 clear_chars(coord, source.Right - source.Left + 1);
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
6613 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6614 }
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6615
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
6616 if (vtp_working)
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6617 {
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6618 COORD coord;
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6619 int i;
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6620
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6621 coord.X = source.Left;
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6622 for (i = nb; i <= source.Bottom; ++i)
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6623 {
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6624 coord.Y = i;
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6625 clear_chars(coord, source.Right - source.Left + 1);
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6626 }
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
6627 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6628 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6629
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6630
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6631 /*
18180
2ededa437271 patch 8.1.2085: MS-Windows: draw error moving cursor over double-cell char
Bram Moolenaar <Bram@vim.org>
parents: 18139
diff changeset
6632 * Set the cursor position to (x,y) (1-based).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6633 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6634 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6635 gotoxy(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6636 unsigned x,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6637 unsigned y)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6638 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6639 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6640 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6641
31839
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
6642 if (!USE_VTP)
18180
2ededa437271 patch 8.1.2085: MS-Windows: draw error moving cursor over double-cell char
Bram Moolenaar <Bram@vim.org>
parents: 18139
diff changeset
6643 {
19789
25836c21ccf9 patch 8.2.0451: Win32: double-width character displayed incorrectly
Bram Moolenaar <Bram@vim.org>
parents: 19599
diff changeset
6644 // There are reports of double-width characters not displayed
25836c21ccf9 patch 8.2.0451: Win32: double-width character displayed incorrectly
Bram Moolenaar <Bram@vim.org>
parents: 19599
diff changeset
6645 // correctly. This workaround should fix it, similar to how it's done
25836c21ccf9 patch 8.2.0451: Win32: double-width character displayed incorrectly
Bram Moolenaar <Bram@vim.org>
parents: 19599
diff changeset
6646 // for VTP.
25836c21ccf9 patch 8.2.0451: Win32: double-width character displayed incorrectly
Bram Moolenaar <Bram@vim.org>
parents: 19599
diff changeset
6647 g_coord.X = 0;
25836c21ccf9 patch 8.2.0451: Win32: double-width character displayed incorrectly
Bram Moolenaar <Bram@vim.org>
parents: 19599
diff changeset
6648 SetConsoleCursorPosition(g_hConOut, g_coord);
25836c21ccf9 patch 8.2.0451: Win32: double-width character displayed incorrectly
Bram Moolenaar <Bram@vim.org>
parents: 19599
diff changeset
6649
18180
2ededa437271 patch 8.1.2085: MS-Windows: draw error moving cursor over double-cell char
Bram Moolenaar <Bram@vim.org>
parents: 18139
diff changeset
6650 // external cursor coords are 1-based; internal are 0-based
2ededa437271 patch 8.1.2085: MS-Windows: draw error moving cursor over double-cell char
Bram Moolenaar <Bram@vim.org>
parents: 18139
diff changeset
6651 g_coord.X = x - 1;
2ededa437271 patch 8.1.2085: MS-Windows: draw error moving cursor over double-cell char
Bram Moolenaar <Bram@vim.org>
parents: 18139
diff changeset
6652 g_coord.Y = y - 1;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6653 SetConsoleCursorPosition(g_hConOut, g_coord);
18180
2ededa437271 patch 8.1.2085: MS-Windows: draw error moving cursor over double-cell char
Bram Moolenaar <Bram@vim.org>
parents: 18139
diff changeset
6654 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6655 else
18180
2ededa437271 patch 8.1.2085: MS-Windows: draw error moving cursor over double-cell char
Bram Moolenaar <Bram@vim.org>
parents: 18139
diff changeset
6656 {
2ededa437271 patch 8.1.2085: MS-Windows: draw error moving cursor over double-cell char
Bram Moolenaar <Bram@vim.org>
parents: 18139
diff changeset
6657 // Move the cursor to the left edge of the screen to prevent screen
18275
5218e26c658f patch 8.1.2132: MS-Windows: screen mess when not recognizing insider build
Bram Moolenaar <Bram@vim.org>
parents: 18241
diff changeset
6658 // destruction. Insider build bug. Always enabled because it's cheap
5218e26c658f patch 8.1.2132: MS-Windows: screen mess when not recognizing insider build
Bram Moolenaar <Bram@vim.org>
parents: 18241
diff changeset
6659 // and avoids mistakes with recognizing the build.
5218e26c658f patch 8.1.2132: MS-Windows: screen mess when not recognizing insider build
Bram Moolenaar <Bram@vim.org>
parents: 18241
diff changeset
6660 vtp_printf("\033[%d;%dH", g_coord.Y + 1, 1);
18180
2ededa437271 patch 8.1.2085: MS-Windows: draw error moving cursor over double-cell char
Bram Moolenaar <Bram@vim.org>
parents: 18139
diff changeset
6661
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6662 vtp_printf("\033[%d;%dH", y, x);
18180
2ededa437271 patch 8.1.2085: MS-Windows: draw error moving cursor over double-cell char
Bram Moolenaar <Bram@vim.org>
parents: 18139
diff changeset
6663
2ededa437271 patch 8.1.2085: MS-Windows: draw error moving cursor over double-cell char
Bram Moolenaar <Bram@vim.org>
parents: 18139
diff changeset
6664 g_coord.X = x - 1;
2ededa437271 patch 8.1.2085: MS-Windows: draw error moving cursor over double-cell char
Bram Moolenaar <Bram@vim.org>
parents: 18139
diff changeset
6665 g_coord.Y = y - 1;
2ededa437271 patch 8.1.2085: MS-Windows: draw error moving cursor over double-cell char
Bram Moolenaar <Bram@vim.org>
parents: 18139
diff changeset
6666 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6667 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6668
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6669
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6670 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6671 * Set the current text attribute = (foreground | background)
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
6672 * See ../runtime/doc/os_win32.txt for the numbers.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6673 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6674 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6675 textattr(WORD wAttr)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6676 {
6710
43a07fa78155 updated for version 7.4.679
Bram Moolenaar <bram@vim.org>
parents: 6700
diff changeset
6677 g_attrCurrent = wAttr & 0xff;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6678
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6679 SetConsoleTextAttribute(g_hConOut, wAttr);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6680 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6681
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6682
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6683 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6684 textcolor(WORD wAttr)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6685 {
6710
43a07fa78155 updated for version 7.4.679
Bram Moolenaar <bram@vim.org>
parents: 6700
diff changeset
6686 g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6687
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
6688 if (!vtp_working)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6689 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6690 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6691 vtp_sgr_bulk(wAttr);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6692 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6693
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6694
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6695 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6696 textbackground(WORD wAttr)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6697 {
6710
43a07fa78155 updated for version 7.4.679
Bram Moolenaar <bram@vim.org>
parents: 6700
diff changeset
6698 g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6699
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
6700 if (!vtp_working)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6701 SetConsoleTextAttribute(g_hConOut, g_attrCurrent);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6702 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6703 vtp_sgr_bulk(wAttr);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6704 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6705
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6706
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6707 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6708 * restore the default text attribute (whatever we started with)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6709 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6710 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6711 normvideo(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6712 {
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
6713 if (!vtp_working)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6714 textattr(g_attrDefault);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6715 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6716 vtp_sgr_bulk(0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6717 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6718
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6719
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6720 static WORD g_attrPreStandout = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6721
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6722 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6723 * Make the text standout, by brightening it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6724 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6725 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6726 standout(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6727 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6728 g_attrPreStandout = g_attrCurrent;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6729
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6730 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6731 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6732
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6733
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6734 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6735 * Turn off standout mode
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6736 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6737 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6738 standend(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6739 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6740 if (g_attrPreStandout)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6741 textattr(g_attrPreStandout);
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6742
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6743 g_attrPreStandout = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6744 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6745
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6746
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6747 /*
1199
3acf7c922a04 updated for version 7.1b
vimboss
parents: 1139
diff changeset
6748 * Set normal fg/bg color, based on T_ME. Called when t_me has been set.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6749 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6750 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6751 mch_set_normal_colors(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6752 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6753 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6754 int n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6755
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6756 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6757 cterm_normal_bg_color = ((g_attrDefault >> 4) & 0xf) + 1;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6758 if (
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
6759 # ifdef FEAT_TERMGUICOLORS
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6760 !p_tgc &&
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
6761 # endif
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6762 T_ME[0] == ESC && T_ME[1] == '|')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6763 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6764 p = T_ME + 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6765 n = getdigits(&p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6766 if (*p == 'm' && n > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6767 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6768 cterm_normal_fg_color = (n & 0xf) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6769 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6770 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6771 }
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
6772 # ifdef FEAT_TERMGUICOLORS
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6773 cterm_normal_fg_gui_color = INVALCOLOR;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6774 cterm_normal_bg_gui_color = INVALCOLOR;
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
6775 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6776 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6777
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6778
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6779 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6780 * visual bell: flash the screen
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6781 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6782 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6783 visual_bell(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6784 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6785 COORD coordOrigin = {0, 0};
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6786 WORD attrFlash = ~g_attrCurrent & 0xff;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6787
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6788 DWORD dwDummy;
31805
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6789 LPWORD oldattrs = NULL;
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6790
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6791 # ifdef FEAT_TERMGUICOLORS
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6792 if (!(p_tgc || t_colors >= 256))
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6793 # endif
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6794 {
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6795 oldattrs = ALLOC_MULT(WORD, Rows * Columns);
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6796 if (oldattrs == NULL)
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6797 return;
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6798 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6799 coordOrigin, &dwDummy);
31805
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6800 }
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6801
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6802 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6803 coordOrigin, &dwDummy);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6804
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
6805 Sleep(15); // wait for 15 msec
31805
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6806
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6807 if (oldattrs != NULL)
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6808 {
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6809 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6810 coordOrigin, &dwDummy);
31805
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6811 vim_free(oldattrs);
e279b756475b patch 9.0.1235: MS-Windows console: not flushing termguicolors
Bram Moolenaar <Bram@vim.org>
parents: 31800
diff changeset
6812 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6813 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6814
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6815
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6816 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6817 * Make the cursor visible or invisible
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6818 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6819 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6820 cursor_visible(BOOL fVisible)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6821 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6822 s_cursor_visible = fVisible;
20073
a2124c6d5e6e patch 8.2.0592: MS-Windows with VTP: cursor is not made invisible
Bram Moolenaar <Bram@vim.org>
parents: 20051
diff changeset
6823
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
6824 if (vtp_working)
20073
a2124c6d5e6e patch 8.2.0592: MS-Windows with VTP: cursor is not made invisible
Bram Moolenaar <Bram@vim.org>
parents: 20051
diff changeset
6825 vtp_printf("\033[?25%c", fVisible ? 'h' : 'l');
a2124c6d5e6e patch 8.2.0592: MS-Windows with VTP: cursor is not made invisible
Bram Moolenaar <Bram@vim.org>
parents: 20051
diff changeset
6826
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
6827 # ifdef MCH_CURSOR_SHAPE
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6828 mch_update_cursor();
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
6829 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6830 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6831
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6832
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6833 /*
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
6834 * Write "cbToWrite" bytes in `pchBuf' to the screen.
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6835 * Returns the number of bytes actually written (at least one).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6836 */
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6837 static DWORD
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6838 write_chars(
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6839 char_u *pchBuf,
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6840 DWORD cbToWrite)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6841 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6842 COORD coord = g_coord;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6843 DWORD written;
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6844 DWORD n, cchwritten;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6845 static DWORD cells;
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6846 static WCHAR *unicodebuf = NULL;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6847 static int unibuflen = 0;
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6848 static int length;
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6849 int cp = enc_utf8 ? CP_UTF8 : enc_codepage;
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6850 static WCHAR *utf8spbuf = NULL;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6851 static int utf8splength;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6852 static DWORD utf8spcells;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6853 static WCHAR **utf8usingbuf = &unicodebuf;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6854
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6855 if (cbToWrite != 1 || *pchBuf != ' ' || !enc_utf8)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6856 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6857 utf8usingbuf = &unicodebuf;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6858 do
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6859 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6860 length = MultiByteToWideChar(cp, 0, (LPCSTR)pchBuf, cbToWrite,
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6861 unicodebuf, unibuflen);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6862 if (length && length <= unibuflen)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6863 break;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6864 vim_free(unicodebuf);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6865 unicodebuf = length ? LALLOC_MULT(WCHAR, length) : NULL;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6866 unibuflen = unibuflen ? 0 : length;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6867 } while(1);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6868 cells = mb_string2cells(pchBuf, cbToWrite);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6869 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6870 else // cbToWrite == 1 && *pchBuf == ' ' && enc_utf8
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6871 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6872 if (utf8usingbuf != &utf8spbuf)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6873 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6874 if (utf8spbuf == NULL)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6875 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6876 cells = mb_string2cells((char_u *)" ", 1);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6877 length = MultiByteToWideChar(CP_UTF8, 0, " ", 1, NULL, 0);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6878 utf8spbuf = LALLOC_MULT(WCHAR, length);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6879 if (utf8spbuf != NULL)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6880 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6881 MultiByteToWideChar(CP_UTF8, 0, " ", 1, utf8spbuf, length);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6882 utf8usingbuf = &utf8spbuf;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6883 utf8splength = length;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6884 utf8spcells = cells;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6885 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6886 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6887 else
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6888 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6889 utf8usingbuf = &utf8spbuf;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6890 length = utf8splength;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6891 cells = utf8spcells;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6892 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6893 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6894 }
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6895
31839
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
6896 if (!USE_VTP)
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6897 {
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6898 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cells,
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6899 coord, &written);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6900 // When writing fails or didn't write a single character, pretend one
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6901 // character was written, otherwise we get stuck.
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6902 if (WriteConsoleOutputCharacterW(g_hConOut, *utf8usingbuf, length,
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6903 coord, &cchwritten) == 0
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6904 || cchwritten == 0 || cchwritten == (DWORD)-1)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6905 cchwritten = 1;
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6906 }
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6907 else
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6908 {
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6909 if (WriteConsoleW(g_hConOut, *utf8usingbuf, length, &cchwritten,
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6910 NULL) == 0 || cchwritten == 0)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6911 cchwritten = 1;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6912 }
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6913
27455
6045bf58926d patch 8.2.4256: MS-Windows: compiler warnings when compiled with /W4
Bram Moolenaar <Bram@vim.org>
parents: 27370
diff changeset
6914 if (cchwritten == (DWORD)length)
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6915 {
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6916 written = cbToWrite;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6917 g_coord.X += (SHORT)cells;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6918 }
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6919 else
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6920 {
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6921 char_u *p = pchBuf;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6922 for (n = 0; n < cchwritten; n++)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6923 MB_CPTR_ADV(p);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6924 written = p - pchBuf;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
6925 g_coord.X += (SHORT)mb_string2cells(pchBuf, written);
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6926 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6927
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6928 while (g_coord.X > g_srScrollRegion.Right)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6929 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6930 g_coord.X -= (SHORT) Columns;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6931 if (g_coord.Y < g_srScrollRegion.Bottom)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6932 g_coord.Y++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6933 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6934
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6935 // Cursor under VTP is always in the correct position, no need to reset.
31839
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
6936 if (!USE_VTP)
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6937 gotoxy(g_coord.X + 1, g_coord.Y + 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6938
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6939 return written;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6940 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6941
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6942 static char_u *
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6943 get_seq(
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6944 int *args,
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6945 int *count,
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6946 char_u *head)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6947 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6948 int argc;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6949 char_u *p;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6950
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6951 if (head == NULL || *head != '\033')
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6952 return NULL;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6953
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6954 argc = 0;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6955 p = head;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6956 ++p;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6957 do
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6958 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6959 ++p;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6960 args[argc] = getdigits(&p);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6961 argc += (argc < 15) ? 1 : 0;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6962 } while (*p == ';');
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6963 *count = argc;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6964
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6965 return p;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6966 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6967
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6968 static char_u *
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6969 get_sgr(
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6970 int *args,
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6971 int *count,
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6972 char_u *head)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6973 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6974 char_u *p = get_seq(args, count, head);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6975
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6976 return (p && *p == 'm') ? ++p : NULL;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6977 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6978
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6979 /*
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6980 * Pointer to next if SGR (^[[n;2;*;*;*m), NULL otherwise.
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6981 */
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6982 static char_u *
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6983 sgrn2(
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6984 char_u *head,
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6985 int n)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6986 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6987 int argc;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6988 int args[16];
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6989 char_u *p = get_sgr(args, &argc, head);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6990
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6991 return p && argc == 5 && args[0] == n && args[1] == 2 ? p : NULL;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6992 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6993
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6994 /*
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6995 * Pointer to next if SGR(^[[nm)<space>ESC, NULL otherwise.
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6996 */
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6997 static char_u *
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6998 sgrnc(
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
6999 char_u *head,
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7000 int n)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7001 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7002 int argc;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7003 int args[16];
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7004 char_u *p = get_sgr(args, &argc, head);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7005
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7006 return p && argc == 1 && args[0] == n && (p = skipwhite(p)) && *p == '\033'
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7007 ? p : NULL;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7008 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7009
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7010 static char_u *
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7011 skipblank(char_u *q)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7012 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7013 char_u *p = q;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7014
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7015 while (*p == ' ' || *p == '\t' || *p == '\n' || *p == '\r')
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7016 ++p;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7017 return p;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7018 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7019
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7020 /*
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7021 * Pointer to the next if any whitespace that may follow SGR is ESC, otherwise
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7022 * NULL.
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7023 */
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7024 static char_u *
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7025 sgrn2c(
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7026 char_u *head,
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7027 int n)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7028 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7029 char_u *p = sgrn2(head, n);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7030
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7031 return p && *p != NUL && (p = skipblank(p)) && *p == '\033' ? p : NULL;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7032 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7033
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7034 /*
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7035 * If there is only a newline between the sequence immediately following it,
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7036 * a pointer to the character following the newline is returned.
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7037 * Otherwise NULL.
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7038 */
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7039 static char_u *
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7040 sgrn2cn(
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7041 char_u *head,
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7042 int n)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7043 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7044 char_u *p = sgrn2(head, n);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7045
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7046 return p && p[0] == 0x0a && p[1] == '\033' ? ++p : NULL;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7047 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7048
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7049 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7050 * mch_write(): write the output buffer to the screen, translating ESC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7051 * sequences into calls to console output routines.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7052 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7053 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7054 mch_write(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7055 char_u *s,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7056 int len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7057 {
24506
cf773d752eb9 patch 8.2.2793: MS-Windows: string literals are writable with MSVC
Bram Moolenaar <Bram@vim.org>
parents: 24494
diff changeset
7058 char_u *end = s + len;
cf773d752eb9 patch 8.2.2793: MS-Windows: string literals are writable with MSVC
Bram Moolenaar <Bram@vim.org>
parents: 24494
diff changeset
7059
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7060 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7061 if (gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7062 return;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7063 # endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7064
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7065 if (!term_console)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7066 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7067 write(1, s, (unsigned)len);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7068 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7069 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7070
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7071 // translate ESC | sequences into faked bios calls
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7072 while (len--)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7073 {
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7074 int prefix = -1;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7075 char_u ch;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7076
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7077 // While processing a sequence, on rare occasions it seems that another
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7078 // sequence may be inserted asynchronously.
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7079 if (len < 0)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7080 {
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29245
diff changeset
7081 redraw_all_later(UPD_CLEAR);
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7082 return;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7083 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7084
24506
cf773d752eb9 patch 8.2.2793: MS-Windows: string literals are writable with MSVC
Bram Moolenaar <Bram@vim.org>
parents: 24494
diff changeset
7085 while (s + ++prefix < end)
cf773d752eb9 patch 8.2.2793: MS-Windows: string literals are writable with MSVC
Bram Moolenaar <Bram@vim.org>
parents: 24494
diff changeset
7086 {
cf773d752eb9 patch 8.2.2793: MS-Windows: string literals are writable with MSVC
Bram Moolenaar <Bram@vim.org>
parents: 24494
diff changeset
7087 ch = s[prefix];
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7088 if (ch <= 0x1e && !(ch != '\n' && ch != '\r' && ch != '\b'
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7089 && ch != '\a' && ch != '\033'))
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7090 break;
24506
cf773d752eb9 patch 8.2.2793: MS-Windows: string literals are writable with MSVC
Bram Moolenaar <Bram@vim.org>
parents: 24494
diff changeset
7091 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7092
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7093 if (p_wd)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7094 {
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
7095 WaitForChar(p_wd, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7096 if (prefix != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7097 prefix = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7098 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7099
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7100 if (prefix != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7101 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7102 DWORD nWritten;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7103
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7104 nWritten = write_chars(s, prefix);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7105 # ifdef MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7106 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7107 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7108 fputc('>', fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7109 fwrite(s, sizeof(char_u), nWritten, fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7110 fputs("<\n", fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7111 }
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7112 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7113 len -= (nWritten - 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7114 s += nWritten;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7115 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7116 else if (s[0] == '\n')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7117 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7118 // \n, newline: go to the beginning of the next line or scroll
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7119 if (g_coord.Y == g_srScrollRegion.Bottom)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7120 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7121 scroll(1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7122 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7123 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7124 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7125 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7126 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7127 }
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7128 # ifdef MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7129 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7130 fputs("\\n\n", fdDump);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7131 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7132 s++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7133 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7134 else if (s[0] == '\r')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7135 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7136 // \r, carriage return: go to beginning of line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7137 gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7138 # ifdef MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7139 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7140 fputs("\\r\n", fdDump);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7141 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7142 s++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7143 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7144 else if (s[0] == '\b')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7145 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7146 // \b, backspace: move cursor one position left
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7147 if (g_coord.X > g_srScrollRegion.Left)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7148 g_coord.X--;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7149 else if (g_coord.Y > g_srScrollRegion.Top)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7150 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7151 g_coord.X = g_srScrollRegion.Right;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7152 g_coord.Y--;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7153 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7154 gotoxy(g_coord.X + 1, g_coord.Y + 1);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7155 # ifdef MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7156 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7157 fputs("\\b\n", fdDump);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7158 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7159 s++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7160 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7161 else if (s[0] == '\a')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7162 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7163 // \a, bell
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7164 MessageBeep(0xFFFFFFFF);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7165 # ifdef MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7166 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7167 fputs("\\a\n", fdDump);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7168 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7169 s++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7170 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7171 else if (s[0] == ESC && len >= 3-1 && s[1] == '|')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7172 {
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7173 # ifdef MCH_WRITE_DUMP
24
8ff7fd162d3c updated for version 7.0016
vimboss
parents: 23
diff changeset
7174 char_u *old_s = s;
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7175 # endif
24
8ff7fd162d3c updated for version 7.0016
vimboss
parents: 23
diff changeset
7176 char_u *p;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7177 int arg1 = 0, arg2 = 0, argc = 0, args[16];
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7178 char_u *sp;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7179
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7180 switch (s[2])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7181 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7182 case '0': case '1': case '2': case '3': case '4':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7183 case '5': case '6': case '7': case '8': case '9':
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7184 if (*(p = get_seq(args, &argc, s)) != 'm')
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7185 goto notsgr;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7186
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7187 p = s;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7188
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7189 // Handling frequent optional sequences. Output to the screen
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7190 // takes too long, so do not output as much as possible.
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7191
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7192 // If resetFG,FG,BG,<cr>,BG,FG are connected, the preceding
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7193 // resetFG,FG,BG are omitted.
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7194 if (sgrn2(sgrn2(sgrn2cn(sgrn2(sgrnc(p, 39), 38), 48), 48), 38))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7195 {
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7196 p = sgrn2(sgrn2(sgrnc(p, 39), 38), 48);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7197 len = len + 1 - (int)(p - s);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7198 s = p;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7199 break;
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7200 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7201
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7202 // If FG,BG,BG,FG of SGR are connected, the first FG can be
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7203 // omitted.
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7204 if (sgrn2(sgrn2(sgrn2c((sp = sgrn2(p, 38)), 48), 48), 38))
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7205 p = sp;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7206
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7207 // If FG,BG,FG,BG of SGR are connected, the first FG can be
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7208 // omitted.
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7209 if (sgrn2(sgrn2(sgrn2c((sp = sgrn2(p, 38)), 48), 38), 48))
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7210 p = sp;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7211
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7212 // If BG,BG of SGR are connected, the first BG can be omitted.
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7213 if (sgrn2((sp = sgrn2(p, 48)), 48))
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7214 p = sp;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7215
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7216 // If restoreFG and FG are connected, the restoreFG can be
28844
c0403cd5ca06 patch 8.2.4945: inconsistent use of white space
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
7217 // omitted.
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7218 if (sgrn2((sp = sgrnc(p, 39)), 38))
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7219 p = sp;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7220
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7221 p = get_seq(args, &argc, p);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7222
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
7223 notsgr:
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7224 arg1 = args[0];
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7225 arg2 = args[1];
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7226 if (*p == 'm')
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7227 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7228 if (argc == 1 && args[0] == 0)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7229 normvideo();
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7230 else if (argc == 1)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7231 {
31839
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
7232 if (USE_VTP)
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
7233 textcolor((WORD)arg1);
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7234 else
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
7235 textattr((WORD)arg1);
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7236 }
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
7237 else if (vtp_working)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7238 vtp_sgr_bulks(argc, args);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7239 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7240 else if (argc == 2 && *p == 'H')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7241 {
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7242 gotoxy(arg2, arg1);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7243 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7244 else if (argc == 2 && *p == 'r')
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7245 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7246 set_scroll_region(0, arg1 - 1, Columns - 1, arg2 - 1);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7247 }
15852
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
7248 else if (argc == 2 && *p == 'R')
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
7249 {
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
7250 set_scroll_region_tb(arg1, arg2);
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
7251 }
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
7252 else if (argc == 2 && *p == 'V')
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
7253 {
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
7254 set_scroll_region_lr(arg1, arg2);
acd4fc05422b patch 8.1.0933: When using VTP scroll region isn't used properly
Bram Moolenaar <Bram@vim.org>
parents: 15848
diff changeset
7255 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7256 else if (argc == 1 && *p == 'A')
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7257 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7258 gotoxy(g_coord.X + 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7259 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7260 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7261 else if (argc == 1 && *p == 'b')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7262 {
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7263 textbackground((WORD) arg1);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7264 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7265 else if (argc == 1 && *p == 'C')
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7266 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7267 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7268 g_coord.Y + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7269 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7270 else if (argc == 1 && *p == 'f')
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7271 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7272 textcolor((WORD) arg1);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7273 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7274 else if (argc == 1 && *p == 'H')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7275 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7276 gotoxy(1, arg1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7277 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7278 else if (argc == 1 && *p == 'L')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7279 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7280 insert_lines(arg1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7281 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7282 else if (argc == 1 && *p == 'M')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7283 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7284 delete_lines(arg1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7285 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7286
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 819
diff changeset
7287 len -= (int)(p - s);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7288 s = p + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7289 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7290
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7291 case 'A':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7292 gotoxy(g_coord.X + 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7293 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7294 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7295
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7296 case 'B':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7297 visual_bell();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7298 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7299
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7300 case 'C':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7301 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7302 g_coord.Y + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7303 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7304
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7305 case 'E':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7306 termcap_mode_end();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7307 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7308
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7309 case 'F':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7310 standout();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7311 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7312
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7313 case 'f':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7314 standend();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7315 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7316
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7317 case 'H':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7318 gotoxy(1, 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7319 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7320
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7321 case 'j':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7322 clear_to_end_of_display();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7323 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7324
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7325 case 'J':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7326 clear_screen();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7327 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7328
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7329 case 'K':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7330 clear_to_end_of_line();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7331 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7332
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7333 case 'L':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7334 insert_lines(1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7335 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7336
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7337 case 'M':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7338 delete_lines(1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7339 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7340
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7341 case 'S':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7342 termcap_mode_start();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7343 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7344
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7345 case 'V':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7346 cursor_visible(TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7347 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7348
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7349 case 'v':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7350 cursor_visible(FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7351 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7352
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7353 got3:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7354 s += 3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7355 len -= 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7356 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7357
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7358 # ifdef MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7359 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7360 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7361 fputs("ESC | ", fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7362 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7363 fputc('\n', fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7364 }
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7365 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7366 }
30019
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
7367 else if (s[0] == ESC && len >= 3-1 && s[1] == '[')
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
7368 {
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
7369 int l = 2;
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
7370
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
7371 if (isdigit(s[l]))
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
7372 l++;
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
7373 if (s[l] == ' ' && s[l + 1] == 'q')
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
7374 {
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
7375 // DECSCUSR (cursor style) sequences
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
7376 if (vtp_working)
30019
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
7377 vtp_printf("%.*s", l + 2, s); // Pass through
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
7378 s += l + 2;
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
7379 len -= l + 1;
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
7380 }
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
7381 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7382 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7383 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7384 // Write a single character
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7385 DWORD nWritten;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7386
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7387 nWritten = write_chars(s, 1);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7388 # ifdef MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7389 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7390 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7391 fputc('>', fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7392 fwrite(s, sizeof(char_u), nWritten, fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7393 fputs("<\n", fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7394 }
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7395 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7396
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7397 len -= (nWritten - 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7398 s += nWritten;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7399 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7400 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7401
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7402 # ifdef MCH_WRITE_DUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7403 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7404 fflush(fdDump);
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
7405 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7406 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7407
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7408 #endif // FEAT_GUI_MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7409
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7410
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7411 /*
8589
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
7412 * Delay for "msec" milliseconds.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7413 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7414 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7415 mch_delay(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7416 long msec,
21927
88070e222e82 patch 8.2.1513: cannot interrupt shell used for filename expansion
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
7417 int flags UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7418 {
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7419 #if defined(FEAT_GUI_MSWIN) && !defined(VIMDLL)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7420 Sleep((int)msec); // never wait for input
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7421 #else // Console
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7422 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7423 if (gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7424 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7425 Sleep((int)msec); // never wait for input
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7426 return;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7427 }
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7428 # endif
21927
88070e222e82 patch 8.2.1513: cannot interrupt shell used for filename expansion
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
7429 if (flags & MCH_DELAY_IGNOREINPUT)
14
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7430 # ifdef FEAT_MZSCHEME
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7431 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq)
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7432 {
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7433 int towait = p_mzq;
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7434
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7435 // if msec is large enough, wait by portions in p_mzq
14
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7436 while (msec > 0)
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7437 {
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7438 mzvim_check_threads();
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7439 if (msec < towait)
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7440 towait = msec;
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7441 Sleep(towait);
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7442 msec -= towait;
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7443 }
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7444 }
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7445 else
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7446 # endif
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
7447 Sleep((int)msec);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7448 else
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
7449 WaitForChar(msec, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7450 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7451 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7452
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7453
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7454 /*
7657
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
7455 * This version of remove is not scared by a readonly (backup) file.
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
7456 * This can also remove a symbolic link like Unix.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7457 * Return 0 for success, -1 for failure.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7458 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7459 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7460 mch_remove(char_u *name)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7461 {
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7462 WCHAR *wn;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7463 int n;
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
7464
7657
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
7465 /*
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
7466 * On Windows, deleting a directory's symbolic link is done by
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
7467 * RemoveDirectory(): mch_rmdir. It seems unnatural, but it is fact.
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
7468 */
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
7469 if (mch_isdir(name) && mch_is_symbolic_link(name))
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
7470 return mch_rmdir(name);
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
7471
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
7472 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
7473
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7474 wn = enc_to_utf16(name, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7475 if (wn == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7476 return -1;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7477
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7478 n = DeleteFileW(wn) ? 0 : -1;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7479 vim_free(wn);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7480 return n;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7481 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7482
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7483
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7484 /*
10240
175b1116f96a commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents: 10060
diff changeset
7485 * Check for an "interrupt signal": CTRL-break or CTRL-C.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7486 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7487 void
18139
59bc3cd42cf5 patch 8.1.2064: MS-Windows: compiler warnings for unused arguments
Bram Moolenaar <Bram@vim.org>
parents: 18133
diff changeset
7488 mch_breakcheck(int force UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7489 {
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7490 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7491 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7492 if (!gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7493 # endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7494 if (g_fCtrlCPressed || g_fCBrkPressed)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7495 {
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7496 ctrl_break_was_pressed = g_fCBrkPressed;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7497 g_fCtrlCPressed = g_fCBrkPressed = FALSE;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7498 got_int = TRUE;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
7499 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7500 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7501 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7502
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7503 // physical RAM to leave for the OS
7460
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
7504 #define WINNT_RESERVE_BYTES (256*1024*1024)
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
7505
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
7506 /*
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
7507 * How much main memory in KiB that can be used by VIM.
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
7508 */
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
7509 long_u
10783
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
7510 mch_total_mem(int special UNUSED)
7460
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
7511 {
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7512 MEMORYSTATUSEX ms;
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7513
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7514 // Need to use GlobalMemoryStatusEx() when there is more memory than
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7515 // what fits in 32 bits.
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7516 ms.dwLength = sizeof(MEMORYSTATUSEX);
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7517 GlobalMemoryStatusEx(&ms);
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7518 if (ms.ullAvailVirtual < ms.ullTotalPhys)
7460
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
7519 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7520 // Process address space fits in physical RAM, use all of it.
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7521 return (long_u)(ms.ullAvailVirtual / 1024);
7460
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
7522 }
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7523 if (ms.ullTotalPhys <= WINNT_RESERVE_BYTES)
7460
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
7524 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7525 // Catch old NT box or perverse hardware setup.
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7526 return (long_u)((ms.ullTotalPhys / 2) / 1024);
7460
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
7527 }
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7528 // Use physical RAM less reserve for OS + data.
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7529 return (long_u)((ms.ullTotalPhys - WINNT_RESERVE_BYTES) / 1024);
7460
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
7530 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7531
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7532 /*
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7533 * mch_wrename() works around a bug in rename (aka MoveFile) in
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7534 * Windows 95: rename("foo.bar", "foo.bar~") will generate a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7535 * file whose short file name is "FOO.BAR" (its long file name will
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7536 * be correct: "foo.bar~"). Because a file can be accessed by
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7537 * either its SFN or its LFN, "foo.bar" has effectively been
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7538 * renamed to "foo.bar", which is not at all what was wanted. This
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7539 * seems to happen only when renaming files with three-character
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7540 * extensions by appending a suffix that does not include ".".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7541 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7542 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7543 * There is another problem, which isn't really a bug but isn't right either:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7544 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7545 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7546 * service pack 6. Doesn't seem to happen on Windows 98.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7547 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7548 * Like rename(), returns 0 upon success, non-zero upon failure.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7549 * Should probably set errno appropriately when errors occur.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7550 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7551 int
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7552 mch_wrename(WCHAR *wold, WCHAR *wnew)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7553 {
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7554 WCHAR *p;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7555 int i;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7556 WCHAR szTempFile[_MAX_PATH + 1];
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7557 WCHAR szNewPath[_MAX_PATH + 1];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7558 HANDLE hf;
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7559
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7560 // No need to play tricks unless the file name contains a "~" as the
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7561 // seventh character.
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7562 p = wold;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7563 for (i = 0; wold[i] != NUL; ++i)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7564 if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':')
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7565 && wold[i + 1] != 0)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7566 p = wold + i + 1;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7567 if ((int)(wold + i - p) < 8 || p[6] != '~')
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7568 return (MoveFileW(wold, wnew) == 0);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7569
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7570 // Get base path of new file name. Undocumented feature: If pszNewFile is
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7571 // a directory, no error is returned and pszFilePart will be NULL.
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7572 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7573 return -1;
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7574 *p = NUL;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7575
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7576 // Get (and create) a unique temporary file name in directory of new file
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7577 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7578 return -2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7579
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7580 // blow the temp file away
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7581 if (!DeleteFileW(szTempFile))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7582 return -3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7583
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7584 // rename old file to the temp file
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7585 if (!MoveFileW(wold, szTempFile))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7586 return -4;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7587
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7588 // now create an empty file called pszOldFile; this prevents the operating
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7589 // system using pszOldFile as an alias (SFN) if we're renaming within the
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7590 // same directory. For example, we're editing a file called
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7591 // filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7592 // to filena~1.txt~ (i.e., we're making a backup while writing it), the
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7593 // SFN for filena~1.txt~ will be filena~1.txt, by default, which will
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7594 // cause all sorts of problems later in buf_write(). So, we create an
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7595 // empty file called filena~1.txt and the system will have to find some
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7596 // other SFN for filena~1.txt~, such as filena~2.txt
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7597 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7598 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7599 return -5;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7600 if (!CloseHandle(hf))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7601 return -6;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7602
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7603 // rename the temp file to the new file
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7604 if (!MoveFileW(szTempFile, wnew))
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7605 {
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7606 // Renaming failed. Rename the file back to its old name, so that it
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7607 // looks like nothing happened.
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7608 (void)MoveFileW(szTempFile, wold);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7609 return -7;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7610 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7611
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7612 // Seems to be left around on Novell filesystems
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7613 DeleteFileW(szTempFile);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7614
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7615 // finally, remove the empty old file
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7616 if (!DeleteFileW(wold))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7617 return -8;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7618
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7619 return 0;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7620 }
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7621
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7622
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7623 /*
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7624 * Converts the filenames to UTF-16, then call mch_wrename().
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7625 * Like rename(), returns 0 upon success, non-zero upon failure.
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7626 */
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7627 int
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7628 mch_rename(
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7629 const char *pszOldFile,
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7630 const char *pszNewFile)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7631 {
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7632 WCHAR *wold = NULL;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7633 WCHAR *wnew = NULL;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7634 int retval = -1;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7635
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7636 wold = enc_to_utf16((char_u *)pszOldFile, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7637 wnew = enc_to_utf16((char_u *)pszNewFile, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7638 if (wold != NULL && wnew != NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7639 retval = mch_wrename(wold, wnew);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7640 vim_free(wold);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7641 vim_free(wnew);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7642 return retval;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7643 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7644
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7645 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7646 * Get the default shell for the current hardware platform
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7647 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7648 char *
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7649 default_shell(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7650 {
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7651 return "cmd.exe";
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7652 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7653
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7654 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7655 * mch_access() extends access() to do more detailed check on network drives.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7656 * Returns 0 if file "n" has access rights according to "p", -1 otherwise.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7657 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7658 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7659 mch_access(char *n, int p)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7660 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7661 HANDLE hFile;
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7662 int retval = -1; // default: fail
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7663 WCHAR *wn;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7664
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7665 wn = enc_to_utf16((char_u *)n, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7666 if (wn == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7667 return -1;
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
7668
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
7669 if (mch_isdir((char_u *)n))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7670 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7671 WCHAR TempNameW[_MAX_PATH + 16] = L"";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7672
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7673 if (p & R_OK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7674 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7675 // Read check is performed by seeing if we can do a find file on
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7676 // the directory for any file.
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7677 int i;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7678 WIN32_FIND_DATAW d;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7679
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7680 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7681 TempNameW[i] = wn[i];
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7682 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/')
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7683 TempNameW[i++] = '\\';
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7684 TempNameW[i++] = '*';
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7685 TempNameW[i++] = 0;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7686
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7687 hFile = FindFirstFileW(TempNameW, &d);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7688 if (hFile == INVALID_HANDLE_VALUE)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7689 goto getout;
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7690 else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7691 (void)FindClose(hFile);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7692 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7693
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7694 if (p & W_OK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7695 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7696 // Trying to create a temporary file in the directory should catch
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7697 // directories on read-only network shares. However, in
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7698 // directories whose ACL allows writes but denies deletes will end
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7699 // up keeping the temporary file :-(.
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7700 if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW))
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7701 goto getout;
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7702 else
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7703 DeleteFileW(TempNameW);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7704 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7705 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7706 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7707 {
13853
1ea18443d569 patch 8.0.1798: MS-Windows: file considered read-only too often
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
7708 // Don't consider a file read-only if another process has opened it.
1ea18443d569 patch 8.0.1798: MS-Windows: file considered read-only too often
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
7709 DWORD share_mode = FILE_SHARE_READ | FILE_SHARE_WRITE;
1ea18443d569 patch 8.0.1798: MS-Windows: file considered read-only too often
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
7710
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7711 // Trying to open the file for the required access does ACL, read-only
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7712 // network share, and file attribute checks.
13853
1ea18443d569 patch 8.0.1798: MS-Windows: file considered read-only too often
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
7713 DWORD access_mode = ((p & W_OK) ? GENERIC_WRITE : 0)
1ea18443d569 patch 8.0.1798: MS-Windows: file considered read-only too often
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
7714 | ((p & R_OK) ? GENERIC_READ : 0);
1ea18443d569 patch 8.0.1798: MS-Windows: file considered read-only too often
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
7715
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7716 hFile = CreateFileW(wn, access_mode, share_mode,
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7717 NULL, OPEN_EXISTING, 0, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7718 if (hFile == INVALID_HANDLE_VALUE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7719 goto getout;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7720 CloseHandle(hFile);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7721 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7722
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7723 retval = 0; // success
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7724 getout:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7725 vim_free(wn);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7726 return retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7727 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7728
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7729 /*
1752
a8aae2e1d2ae updated for version 7.2-049
vimboss
parents: 1686
diff changeset
7730 * Version of open() that may use UTF-16 file name.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7731 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7732 int
11921
bafbdbc64bbe patch 8.0.0840: MS-Windows: fopen() and open() prototypes are wrong
Christian Brabandt <cb@256bit.org>
parents: 11723
diff changeset
7733 mch_open(const char *name, int flags, int mode)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7734 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7735 WCHAR *wn;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7736 int f;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7737
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7738 wn = enc_to_utf16((char_u *)name, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7739 if (wn == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7740 return -1;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7741
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7742 f = _wopen(wn, flags, mode);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7743 vim_free(wn);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7744 return f;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7745 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7746
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7747 /*
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7748 * Version of fopen() that uses UTF-16 file name.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7749 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7750 FILE *
11921
bafbdbc64bbe patch 8.0.0840: MS-Windows: fopen() and open() prototypes are wrong
Christian Brabandt <cb@256bit.org>
parents: 11723
diff changeset
7751 mch_fopen(const char *name, const char *mode)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7752 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7753 WCHAR *wn, *wm;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7754 FILE *f = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7755
15603
639b8318472c patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15553
diff changeset
7756 #if defined(DEBUG) && _MSC_VER >= 1400
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7757 // Work around an annoying assertion in the Microsoft debug CRT
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7758 // when mode's text/binary setting doesn't match _get_fmode().
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7759 char newMode = mode[strlen(mode) - 1];
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7760 int oldMode = 0;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7761
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7762 _get_fmode(&oldMode);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7763 if (newMode == 't')
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7764 _set_fmode(_O_TEXT);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7765 else if (newMode == 'b')
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7766 _set_fmode(_O_BINARY);
15603
639b8318472c patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15553
diff changeset
7767 #endif
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7768 wn = enc_to_utf16((char_u *)name, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7769 wm = enc_to_utf16((char_u *)mode, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7770 if (wn != NULL && wm != NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7771 f = _wfopen(wn, wm);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7772 vim_free(wn);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7773 vim_free(wm);
1569
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
7774
15603
639b8318472c patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15553
diff changeset
7775 #if defined(DEBUG) && _MSC_VER >= 1400
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7776 _set_fmode(oldMode);
15603
639b8318472c patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15553
diff changeset
7777 #endif
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
7778 return f;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7779 }
15603
639b8318472c patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15553
diff changeset
7780
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7781 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7782 * SUB STREAM (aka info stream) handling:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7783 *
23229
b545334ae654 patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents: 23090
diff changeset
7784 * NTFS can have sub streams for each file. The normal contents of a file is
b545334ae654 patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents: 23090
diff changeset
7785 * stored in the main stream, and extra contents (author information, title and
b545334ae654 patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents: 23090
diff changeset
7786 * so on) can be stored in a sub stream. After Windows 2000, the user can
b545334ae654 patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents: 23090
diff changeset
7787 * access and store this information in sub streams via an explorer's property
b545334ae654 patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents: 23090
diff changeset
7788 * menu item in the right click menu. This information in sub streams was lost
b545334ae654 patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents: 23090
diff changeset
7789 * when copying only the main stream. Therefore we have to copy sub streams.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7790 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7791 * Incomplete explanation:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7792 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7793 * More useful info and an example:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7794 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7795 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7796
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7797 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7798 * Copy info stream data "substream". Read from the file with BackupRead(sh)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7799 * and write to stream "substream" of file "to".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7800 * Errors are ignored.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7801 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7802 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7803 copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7804 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7805 HANDLE hTo;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7806 WCHAR *to_name;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7807
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7808 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7809 wcscpy(to_name, to);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7810 wcscat(to_name, substream);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7811
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7812 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7813 FILE_ATTRIBUTE_NORMAL, NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7814 if (hTo != INVALID_HANDLE_VALUE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7815 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7816 long done;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7817 DWORD todo;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7818 DWORD readcnt, written;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7819 char buf[4096];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7820
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7821 // Copy block of bytes at a time. Abort when something goes wrong.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7822 for (done = 0; done < len; done += written)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7823 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7824 // (size_t) cast for Borland C 5.5
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 819
diff changeset
7825 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf)
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 819
diff changeset
7826 : (size_t)(len - done));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7827 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7828 FALSE, FALSE, context)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7829 || readcnt != todo
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7830 || !WriteFile(hTo, buf, todo, &written, NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7831 || written != todo)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7832 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7833 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7834 CloseHandle(hTo);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7835 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7836
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7837 free(to_name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7838 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7839
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7840 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7841 * Copy info streams from file "from" to file "to".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7842 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7843 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7844 copy_infostreams(char_u *from, char_u *to)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7845 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7846 WCHAR *fromw;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7847 WCHAR *tow;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7848 HANDLE sh;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7849 WIN32_STREAM_ID sid;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7850 int headersize;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7851 WCHAR streamname[_MAX_PATH];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7852 DWORD readcount;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7853 void *context = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7854 DWORD lo, hi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7855 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7856
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7857 // Convert the file names to wide characters.
1752
a8aae2e1d2ae updated for version 7.2-049
vimboss
parents: 1686
diff changeset
7858 fromw = enc_to_utf16(from, NULL);
a8aae2e1d2ae updated for version 7.2-049
vimboss
parents: 1686
diff changeset
7859 tow = enc_to_utf16(to, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7860 if (fromw != NULL && tow != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7861 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7862 // Open the file for reading.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7863 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7864 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7865 if (sh != INVALID_HANDLE_VALUE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7866 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7867 // Use BackupRead() to find the info streams. Repeat until we
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7868 // have done them all.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7869 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7870 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7871 // Get the header to find the length of the stream name. If
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7872 // the "readcount" is zero we have done all info streams.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7873 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID));
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 819
diff changeset
7874 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7875 if (!BackupRead(sh, (LPBYTE)&sid, headersize,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7876 &readcount, FALSE, FALSE, &context)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7877 || readcount == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7878 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7879
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7880 // We only deal with streams that have a name. The normal
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7881 // file data appears to be without a name, even though docs
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7882 // suggest it is called "::$DATA".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7883 if (sid.dwStreamNameSize > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7884 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7885 // Read the stream name.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7886 if (!BackupRead(sh, (LPBYTE)streamname,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7887 sid.dwStreamNameSize,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7888 &readcount, FALSE, FALSE, &context))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7889 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7890
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7891 // Copy an info stream with a name ":anything:$DATA".
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7892 // Skip "::$DATA", it has no stream name (examples suggest
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7893 // it might be used for the normal file contents).
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7894 // Note that BackupRead() counts bytes, but the name is in
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7895 // wide characters.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7896 len = readcount / sizeof(WCHAR);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7897 streamname[len] = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7898 if (len > 7 && wcsicmp(streamname + len - 6,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7899 L":$DATA") == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7900 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7901 streamname[len - 6] = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7902 copy_substream(sh, &context, tow, streamname,
10
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
7903 (long)sid.Size.u.LowPart);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7904 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7905 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7906
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7907 // Advance to the next stream. We might try seeking too far,
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7908 // but BackupSeek() doesn't skip over stream borders, thus
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7909 // that's OK.
323
03b3684919e3 updated for version 7.0084
vimboss
parents: 297
diff changeset
7910 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7911 &lo, &hi, &context);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7912 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7913
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
7914 // Clear the context.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7915 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7916
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7917 CloseHandle(sh);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7918 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7919 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7920 vim_free(fromw);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7921 vim_free(tow);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7922 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7923
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7924 /*
23819
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7925 * ntdll.dll definitions
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7926 */
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7927 #define FileEaInformation 7
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7928 #ifndef STATUS_SUCCESS
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7929 # define STATUS_SUCCESS ((NTSTATUS) 0x00000000L)
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7930 #endif
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7931
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7932 typedef struct _FILE_FULL_EA_INFORMATION_ {
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7933 ULONG NextEntryOffset;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7934 UCHAR Flags;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7935 UCHAR EaNameLength;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7936 USHORT EaValueLength;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7937 CHAR EaName[1];
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7938 } FILE_FULL_EA_INFORMATION_, *PFILE_FULL_EA_INFORMATION_;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7939
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7940 typedef struct _FILE_EA_INFORMATION_ {
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7941 ULONG EaSize;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7942 } FILE_EA_INFORMATION_, *PFILE_EA_INFORMATION_;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7943
29071
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
7944 #ifndef PROTO
23819
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7945 typedef NTSTATUS (NTAPI *PfnNtOpenFile)(
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7946 PHANDLE FileHandle,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7947 ACCESS_MASK DesiredAccess,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7948 POBJECT_ATTRIBUTES ObjectAttributes,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7949 PIO_STATUS_BLOCK IoStatusBlock,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7950 ULONG ShareAccess,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7951 ULONG OpenOptions);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7952 typedef NTSTATUS (NTAPI *PfnNtClose)(
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7953 HANDLE Handle);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7954 typedef NTSTATUS (NTAPI *PfnNtSetEaFile)(
28844
c0403cd5ca06 patch 8.2.4945: inconsistent use of white space
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
7955 HANDLE FileHandle,
c0403cd5ca06 patch 8.2.4945: inconsistent use of white space
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
7956 PIO_STATUS_BLOCK IoStatusBlock,
c0403cd5ca06 patch 8.2.4945: inconsistent use of white space
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
7957 PVOID Buffer,
c0403cd5ca06 patch 8.2.4945: inconsistent use of white space
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
7958 ULONG Length);
23819
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7959 typedef NTSTATUS (NTAPI *PfnNtQueryEaFile)(
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7960 HANDLE FileHandle,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7961 PIO_STATUS_BLOCK IoStatusBlock,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7962 PVOID Buffer,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7963 ULONG Length,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7964 BOOLEAN ReturnSingleEntry,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7965 PVOID EaList,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7966 ULONG EaListLength,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7967 PULONG EaIndex,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7968 BOOLEAN RestartScan);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7969 typedef NTSTATUS (NTAPI *PfnNtQueryInformationFile)(
28844
c0403cd5ca06 patch 8.2.4945: inconsistent use of white space
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
7970 HANDLE FileHandle,
c0403cd5ca06 patch 8.2.4945: inconsistent use of white space
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
7971 PIO_STATUS_BLOCK IoStatusBlock,
c0403cd5ca06 patch 8.2.4945: inconsistent use of white space
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
7972 PVOID FileInformation,
c0403cd5ca06 patch 8.2.4945: inconsistent use of white space
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
7973 ULONG Length,
23819
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7974 FILE_INFORMATION_CLASS FileInformationClass);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7975 typedef VOID (NTAPI *PfnRtlInitUnicodeString)(
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7976 PUNICODE_STRING DestinationString,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7977 PCWSTR SourceString);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7978
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7979 PfnNtOpenFile pNtOpenFile = NULL;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7980 PfnNtClose pNtClose = NULL;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7981 PfnNtSetEaFile pNtSetEaFile = NULL;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7982 PfnNtQueryEaFile pNtQueryEaFile = NULL;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7983 PfnNtQueryInformationFile pNtQueryInformationFile = NULL;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7984 PfnRtlInitUnicodeString pRtlInitUnicodeString = NULL;
29071
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
7985 #endif
23819
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7986
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7987 /*
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7988 * Load ntdll.dll functions.
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7989 */
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7990 static BOOL
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7991 load_ntdll(void)
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7992 {
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7993 static int loaded = -1;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
7994
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
7995 if (loaded != -1)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
7996 return (BOOL) loaded;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
7997
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
7998 HMODULE hNtdll = GetModuleHandle("ntdll.dll");
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
7999 if (hNtdll != NULL)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8000 {
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8001 pNtOpenFile = (PfnNtOpenFile) GetProcAddress(hNtdll, "NtOpenFile");
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8002 pNtClose = (PfnNtClose) GetProcAddress(hNtdll, "NtClose");
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8003 pNtSetEaFile = (PfnNtSetEaFile)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8004 GetProcAddress(hNtdll, "NtSetEaFile");
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8005 pNtQueryEaFile = (PfnNtQueryEaFile)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8006 GetProcAddress(hNtdll, "NtQueryEaFile");
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8007 pNtQueryInformationFile = (PfnNtQueryInformationFile)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8008 GetProcAddress(hNtdll, "NtQueryInformationFile");
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8009 pRtlInitUnicodeString = (PfnRtlInitUnicodeString)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8010 GetProcAddress(hNtdll, "RtlInitUnicodeString");
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8011 }
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8012 if (pNtOpenFile == NULL
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8013 || pNtClose == NULL
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8014 || pNtSetEaFile == NULL
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8015 || pNtQueryEaFile == NULL
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8016 || pNtQueryInformationFile == NULL
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8017 || pRtlInitUnicodeString == NULL)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8018 loaded = FALSE;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8019 else
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8020 loaded = TRUE;
23819
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8021 return (BOOL) loaded;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8022 }
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8023
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8024 /*
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8025 * Copy extended attributes (EA) from file "from" to file "to".
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8026 */
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8027 static void
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8028 copy_extattr(char_u *from, char_u *to)
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8029 {
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8030 char_u *fromf = NULL;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8031 char_u *tof = NULL;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8032 WCHAR *fromw = NULL;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8033 WCHAR *tow = NULL;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8034 UNICODE_STRING u;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8035 HANDLE h;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8036 OBJECT_ATTRIBUTES oa;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8037 IO_STATUS_BLOCK iosb;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8038 FILE_EA_INFORMATION_ eainfo = {0};
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8039 void *ea = NULL;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8040
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8041 if (!load_ntdll())
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8042 return;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8043
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8044 // Convert the file names to the fully qualified object names.
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8045 fromf = alloc(STRLEN(from) + 5);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8046 tof = alloc(STRLEN(to) + 5);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8047 if (fromf == NULL || tof == NULL)
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8048 goto theend;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8049 STRCPY(fromf, "\\??\\");
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8050 STRCAT(fromf, from);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8051 STRCPY(tof, "\\??\\");
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8052 STRCAT(tof, to);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8053
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8054 // Convert the names to wide characters.
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8055 fromw = enc_to_utf16(fromf, NULL);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8056 tow = enc_to_utf16(tof, NULL);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8057 if (fromw == NULL || tow == NULL)
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8058 goto theend;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8059
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8060 // Get the EA.
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8061 pRtlInitUnicodeString(&u, fromw);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8062 InitializeObjectAttributes(&oa, &u, 0, NULL, NULL);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8063 if (pNtOpenFile(&h, FILE_READ_EA, &oa, &iosb, 0,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8064 FILE_NON_DIRECTORY_FILE) != STATUS_SUCCESS)
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8065 goto theend;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8066 pNtQueryInformationFile(h, &iosb, &eainfo, sizeof(eainfo),
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8067 FileEaInformation);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8068 if (eainfo.EaSize != 0)
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8069 {
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8070 ea = alloc(eainfo.EaSize);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8071 if (ea != NULL)
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8072 {
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8073 if (pNtQueryEaFile(h, &iosb, ea, eainfo.EaSize, FALSE,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8074 NULL, 0, NULL, TRUE) != STATUS_SUCCESS)
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8075 {
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8076 vim_free(ea);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8077 ea = NULL;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8078 }
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8079 }
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8080 }
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8081 pNtClose(h);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8082
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8083 // Set the EA.
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8084 if (ea != NULL)
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8085 {
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8086 pRtlInitUnicodeString(&u, tow);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8087 InitializeObjectAttributes(&oa, &u, 0, NULL, NULL);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8088 if (pNtOpenFile(&h, FILE_WRITE_EA, &oa, &iosb, 0,
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8089 FILE_NON_DIRECTORY_FILE) != STATUS_SUCCESS)
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8090 goto theend;
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8091
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8092 pNtSetEaFile(h, &iosb, ea, eainfo.EaSize);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8093 pNtClose(h);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8094 }
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8095
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8096 theend:
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8097 vim_free(fromf);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8098 vim_free(tof);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8099 vim_free(fromw);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8100 vim_free(tow);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8101 vim_free(ea);
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8102 }
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8103
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8104 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8105 * Copy file attributes from file "from" to file "to".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8106 * For Windows NT and later we copy info streams.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8107 * Always returns zero, errors are ignored.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8108 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8109 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8110 mch_copy_file_attribute(char_u *from, char_u *to)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8111 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8112 // File streams only work on Windows NT and later.
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
8113 copy_infostreams(from, to);
23819
7237ed5f89bd patch 8.2.2451: MS-Windows: Extended Attributes not preserved
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
8114 copy_extattr(from, to);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8115 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8116 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8117
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8118
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8119 /*
24848
c91b3e5b7896 patch 8.2.2962: MS-Windows command line arguments have wrong encoding
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
8120 * The command line arguments in UTF-16
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8121 */
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
8122 static int nArgsW = 0;
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8123 static LPWSTR *ArglistW = NULL;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8124 static int global_argc = 0;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8125 static char **global_argv;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8126
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8127 static int used_file_argc = 0; // last argument in global_argv[] used
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8128 // for the argument list.
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8129 static int *used_file_indexes = NULL; // indexes in global_argv[] for
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8130 // command line arguments added to
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8131 // the argument list
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8132 static int used_file_count = 0; // nr of entries in used_file_indexes
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8133 static int used_file_literal = FALSE; // take file names literally
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8134 static int used_file_full_path = FALSE; // file name was full path
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8135 static int used_file_diff_mode = FALSE; // file name was with diff mode
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8136 static int used_alist_count = 0;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8137
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8138
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8139 /*
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8140 * Get the command line arguments. Unicode version.
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8141 * Returns argc. Zero when something fails.
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8142 */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8143 int
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8144 get_cmd_argsW(char ***argvp)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8145 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8146 char **argv = NULL;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8147 int argc = 0;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8148 int i;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8149
6193
59cd2b16f718 updated for version 7.4.432
Bram Moolenaar <bram@vim.org>
parents: 6185
diff changeset
8150 free_cmd_argsW();
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8151 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW);
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8152 if (ArglistW != NULL)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8153 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8154 argv = malloc((nArgsW + 1) * sizeof(char *));
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8155 if (argv != NULL)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8156 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8157 argc = nArgsW;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8158 argv[argc] = NULL;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8159 for (i = 0; i < argc; ++i)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8160 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8161 int len;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8162
24848
c91b3e5b7896 patch 8.2.2962: MS-Windows command line arguments have wrong encoding
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
8163 // Convert each Unicode argument to UTF-8.
c91b3e5b7896 patch 8.2.2962: MS-Windows command line arguments have wrong encoding
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
8164 WideCharToMultiByte_alloc(CP_UTF8, 0,
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 819
diff changeset
8165 ArglistW[i], (int)wcslen(ArglistW[i]) + 1,
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8166 (LPSTR *)&argv[i], &len, 0, 0);
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8167 if (argv[i] == NULL)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8168 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8169 // Out of memory, clear everything.
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8170 while (i > 0)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8171 free(argv[--i]);
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8172 free(argv);
5529
0e21e2a38ec6 updated for version 7.4.113
Bram Moolenaar <bram@vim.org>
parents: 5494
diff changeset
8173 argv = NULL;
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8174 argc = 0;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8175 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8176 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8177 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8178 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8179
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8180 global_argc = argc;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8181 global_argv = argv;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8182 if (argc > 0)
6193
59cd2b16f718 updated for version 7.4.432
Bram Moolenaar <bram@vim.org>
parents: 6185
diff changeset
8183 {
59cd2b16f718 updated for version 7.4.432
Bram Moolenaar <bram@vim.org>
parents: 6185
diff changeset
8184 if (used_file_indexes != NULL)
59cd2b16f718 updated for version 7.4.432
Bram Moolenaar <bram@vim.org>
parents: 6185
diff changeset
8185 free(used_file_indexes);
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8186 used_file_indexes = malloc(argc * sizeof(int));
6193
59cd2b16f718 updated for version 7.4.432
Bram Moolenaar <bram@vim.org>
parents: 6185
diff changeset
8187 }
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8188
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8189 if (argvp != NULL)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8190 *argvp = argv;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8191 return argc;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8192 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8193
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8194 void
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8195 free_cmd_argsW(void)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8196 {
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8197 if (ArglistW == NULL)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8198 return;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8199
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8200 GlobalFree(ArglistW);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8201 ArglistW = NULL;
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8202 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8203
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8204 /*
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8205 * Remember "name" is an argument that was added to the argument list.
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8206 * This avoids that we have to re-parse the argument list when fix_arg_enc()
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8207 * is called.
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8208 */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8209 void
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
8210 used_file_arg(char *name, int literal, int full_path, int diff_mode)
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8211 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8212 int i;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8213
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8214 if (used_file_indexes == NULL)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8215 return;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8216 for (i = used_file_argc + 1; i < global_argc; ++i)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8217 if (STRCMP(global_argv[i], name) == 0)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8218 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8219 used_file_argc = i;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8220 used_file_indexes[used_file_count++] = i;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8221 break;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8222 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8223 used_file_literal = literal;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8224 used_file_full_path = full_path;
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
8225 used_file_diff_mode = diff_mode;
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8226 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8227
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8228 /*
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8229 * Remember the length of the argument list as it was. If it changes then we
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8230 * leave it alone when 'encoding' is set.
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8231 */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8232 void
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8233 set_alist_count(void)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8234 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8235 used_alist_count = GARGCOUNT;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8236 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8237
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8238 /*
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8239 * Fix the encoding of the command line arguments. Invoked when 'encoding'
24848
c91b3e5b7896 patch 8.2.2962: MS-Windows command line arguments have wrong encoding
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
8240 * has been changed while starting up. Use the UTF-16 command line arguments
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8241 * and convert them to 'encoding'.
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8242 */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8243 void
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8244 fix_arg_enc(void)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8245 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8246 int i;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8247 int idx;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8248 char_u *str;
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
8249 int *fnum_list;
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8250
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8251 // Safety checks:
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8252 // - if argument count differs between the wide and non-wide argument
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8253 // list, something must be wrong.
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8254 // - the file name arguments must have been located.
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8255 // - the length of the argument list wasn't changed by the user.
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
8256 if (global_argc != nArgsW
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8257 || ArglistW == NULL
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8258 || used_file_indexes == NULL
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8259 || used_file_count == 0
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8260 || used_alist_count != GARGCOUNT)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8261 return;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8262
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8263 // Remember the buffer numbers for the arguments.
16825
ce04ebdf26b8 patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents: 16782
diff changeset
8264 fnum_list = ALLOC_MULT(int, GARGCOUNT);
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
8265 if (fnum_list == NULL)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8266 return; // out of memory
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
8267 for (i = 0; i < GARGCOUNT; ++i)
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
8268 fnum_list[i] = GARGLIST[i].ae_fnum;
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
8269
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8270 // Clear the argument list. Make room for the new arguments.
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8271 alist_clear(&global_alist);
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8272 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL)
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8273 return; // out of memory
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8274
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8275 for (i = 0; i < used_file_count; ++i)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8276 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8277 idx = used_file_indexes[i];
1752
a8aae2e1d2ae updated for version 7.2-049
vimboss
parents: 1686
diff changeset
8278 str = utf16_to_enc(ArglistW[idx], NULL);
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8279 if (str != NULL)
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
8280 {
11991
15ec6d5adf43 patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents: 11949
diff changeset
8281 int literal = used_file_literal;
15ec6d5adf43 patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents: 11949
diff changeset
8282
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
8283 #ifdef FEAT_DIFF
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8284 // When using diff mode may need to concatenate file name to
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8285 // directory name. Just like it's done in main().
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
8286 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
8287 && !mch_isdir(alist_name(&GARGLIST[0])))
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
8288 {
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
8289 char_u *r;
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
8290
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
8291 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
8292 if (r != NULL)
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
8293 {
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
8294 vim_free(str);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
8295 str = r;
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
8296 }
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
8297 }
18773
38a3bef525e6 patch 8.1.2376: preprocessor indents are incorrect
Bram Moolenaar <Bram@vim.org>
parents: 18662
diff changeset
8298 #endif
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8299 // Re-use the old buffer by renaming it. When not using literal
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8300 // names it's done by alist_expand() below.
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
8301 if (used_file_literal)
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
8302 buf_set_name(fnum_list[i], str);
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
8303
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8304 // Check backtick literal. backtick literal is already expanded in
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8305 // main.c, so this part add str as literal.
11991
15ec6d5adf43 patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents: 11949
diff changeset
8306 if (literal == FALSE)
15ec6d5adf43 patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents: 11949
diff changeset
8307 {
12015
7e704d75a882 patch 8.0.0888: compiler warnings with 64 bit build
Christian Brabandt <cb@256bit.org>
parents: 11991
diff changeset
8308 size_t len = STRLEN(str);
7e704d75a882 patch 8.0.0888: compiler warnings with 64 bit build
Christian Brabandt <cb@256bit.org>
parents: 11991
diff changeset
8309
11991
15ec6d5adf43 patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents: 11949
diff changeset
8310 if (len > 2 && *str == '`' && *(str + len - 1) == '`')
15ec6d5adf43 patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents: 11949
diff changeset
8311 literal = TRUE;
15ec6d5adf43 patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents: 11949
diff changeset
8312 }
15ec6d5adf43 patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents: 11949
diff changeset
8313 alist_add(&global_alist, str, literal ? 2 : 0);
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
8314 }
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8315 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8316
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8317 if (!used_file_literal)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8318 {
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8319 // Now expand wildcards in the arguments.
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8320 // Temporarily add '(' and ')' to 'isfname'. These are valid
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8321 // filename characters but are excluded from 'isfname' to make
26771
fc859aea8cec patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
8322 // "gf" work on a file name in parentheses (e.g.: see vim.h).
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8323 // Also, unset wildignore to not be influenced by this option.
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8324 // The arguments specified in command-line should be kept even if
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8325 // encoding options were changed.
26071
0bb9004c993b patch 8.2.3569: error for :let when vimrc is Vim 9 script
Bram Moolenaar <Bram@vim.org>
parents: 25342
diff changeset
8326 // Use :legacy so that it also works when in Vim9 script.
0bb9004c993b patch 8.2.3569: error for :let when vimrc is Vim 9 script
Bram Moolenaar <Bram@vim.org>
parents: 25342
diff changeset
8327 do_cmdline_cmd((char_u *)":legacy let g:SaVe_ISF = &isf|set isf+=(,)");
0bb9004c993b patch 8.2.3569: error for :let when vimrc is Vim 9 script
Bram Moolenaar <Bram@vim.org>
parents: 25342
diff changeset
8328 do_cmdline_cmd((char_u *)":legacy let g:SaVe_WIG = &wig|set wig=");
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
8329 alist_expand(fnum_list, used_alist_count);
26071
0bb9004c993b patch 8.2.3569: error for :let when vimrc is Vim 9 script
Bram Moolenaar <Bram@vim.org>
parents: 25342
diff changeset
8330 do_cmdline_cmd(
0bb9004c993b patch 8.2.3569: error for :let when vimrc is Vim 9 script
Bram Moolenaar <Bram@vim.org>
parents: 25342
diff changeset
8331 (char_u *)":legacy let &isf = g:SaVe_ISF|unlet g:SaVe_ISF");
0bb9004c993b patch 8.2.3569: error for :let when vimrc is Vim 9 script
Bram Moolenaar <Bram@vim.org>
parents: 25342
diff changeset
8332 do_cmdline_cmd(
0bb9004c993b patch 8.2.3569: error for :let when vimrc is Vim 9 script
Bram Moolenaar <Bram@vim.org>
parents: 25342
diff changeset
8333 (char_u *)":legacy let &wig = g:SaVe_WIG|unlet g:SaVe_WIG");
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8334 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8335
18810
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8336 // If wildcard expansion failed, we are editing the first file of the
44b855153d8e patch 8.1.2393: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18786
diff changeset
8337 // arglist and there is no file name: Edit the first argument now.
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8338 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8339 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8340 do_cmdline_cmd((char_u *)":rewind");
26171
fa8161b003f6 patch 8.2.3617: ":verbose pwd" does not mention 'autochdir' was applied
Bram Moolenaar <Bram@vim.org>
parents: 26071
diff changeset
8341 if (GARGCOUNT == 1 && used_file_full_path
fa8161b003f6 patch 8.2.3617: ":verbose pwd" does not mention 'autochdir' was applied
Bram Moolenaar <Bram@vim.org>
parents: 26071
diff changeset
8342 && vim_chdirfile(alist_name(&GARGLIST[0]), "drop") == OK)
fa8161b003f6 patch 8.2.3617: ":verbose pwd" does not mention 'autochdir' was applied
Bram Moolenaar <Bram@vim.org>
parents: 26071
diff changeset
8343 last_chdir_reason = "drop";
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8344 }
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
8345
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
8346 set_alist_count();
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
8347 }
10781
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
8348
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
8349 int
18139
59bc3cd42cf5 patch 8.1.2064: MS-Windows: compiler warnings for unused arguments
Bram Moolenaar <Bram@vim.org>
parents: 18133
diff changeset
8350 mch_setenv(char *var, char *value, int x UNUSED)
10781
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
8351 {
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
8352 char_u *envbuf;
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
8353 WCHAR *p;
10781
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
8354
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16750
diff changeset
8355 envbuf = alloc(STRLEN(var) + STRLEN(value) + 2);
10781
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
8356 if (envbuf == NULL)
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
8357 return -1;
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
8358
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
8359 sprintf((char *)envbuf, "%s=%s", var, value);
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
8360
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
8361 p = enc_to_utf16(envbuf, NULL);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
8362
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
8363 vim_free(envbuf);
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
8364 if (p == NULL)
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
8365 return -1;
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
8366 _wputenv(p);
15603
639b8318472c patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15553
diff changeset
8367 #ifdef libintl_wputenv
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
8368 libintl_wputenv(p);
15603
639b8318472c patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15553
diff changeset
8369 #endif
16196
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
8370 // Unlike Un*x systems, we can free the string for _wputenv().
973070a30381 patch 8.1.1103: MS-Windows: old API calls are no longer needed
Bram Moolenaar <Bram@vim.org>
parents: 16182
diff changeset
8371 vim_free(p);
10781
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
8372
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
8373 return 0;
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
8374 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8375
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8376 /*
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8377 * Support for 256 colors and 24-bit colors was added in Windows 10
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8378 * version 1703 (Creators update).
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8379 */
15725
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8380 #define VTP_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 15063)
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8381
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8382 /*
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8383 * Support for pseudo-console (ConPTY) was added in windows 10
18064
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8384 * version 1809 (October 2018 update).
15804
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8385 */
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8386 #define CONPTY_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 17763)
18064
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8387
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8388 /*
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8389 * ConPTY differences between versions, need different logic.
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8390 * version 1903 (May 2019 update).
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8391 */
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8392 #define CONPTY_1903_BUILD MAKE_VER(10, 0, 18362)
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8393
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8394 /*
18611
6a7ebc2ee528 patch 8.1.2299: ConPTY in MS-Windows 1909 is still wrong
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
8395 * version 1909 (November 2019 update).
6a7ebc2ee528 patch 8.1.2299: ConPTY in MS-Windows 1909 is still wrong
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
8396 */
6a7ebc2ee528 patch 8.1.2299: ConPTY in MS-Windows 1909 is still wrong
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
8397 #define CONPTY_1909_BUILD MAKE_VER(10, 0, 18363)
6a7ebc2ee528 patch 8.1.2299: ConPTY in MS-Windows 1909 is still wrong
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
8398
6a7ebc2ee528 patch 8.1.2299: ConPTY in MS-Windows 1909 is still wrong
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
8399 /*
20201
304015471ae9 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed
Bram Moolenaar <Bram@vim.org>
parents: 20183
diff changeset
8400 * Stay ahead of the next update, and when it's done, fix this.
304015471ae9 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed
Bram Moolenaar <Bram@vim.org>
parents: 20183
diff changeset
8401 * version ? (2020 update, temporarily use the build number of insider preview)
304015471ae9 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed
Bram Moolenaar <Bram@vim.org>
parents: 20183
diff changeset
8402 */
304015471ae9 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed
Bram Moolenaar <Bram@vim.org>
parents: 20183
diff changeset
8403 #define CONPTY_NEXT_UPDATE_BUILD MAKE_VER(10, 0, 19587)
304015471ae9 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed
Bram Moolenaar <Bram@vim.org>
parents: 20183
diff changeset
8404
304015471ae9 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed
Bram Moolenaar <Bram@vim.org>
parents: 20183
diff changeset
8405 /*
18064
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8406 * Confirm until this version. Also the logic changes.
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8407 * insider preview.
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8408 */
18235
88716bc1c20b patch 8.1.2112: build number for ConPTY is outdated
Bram Moolenaar <Bram@vim.org>
parents: 18180
diff changeset
8409 #define CONPTY_INSIDER_BUILD MAKE_VER(10, 0, 18995)
18064
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8410
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8411 /*
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8412 * Not stable now.
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8413 */
15804
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8414 #define CONPTY_STABLE_BUILD MAKE_VER(10, 0, 32767) // T.B.D.
31067
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
8415 // Notes:
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
8416 // Win 10 22H2 Final is build 19045, it's conpty is widely used.
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
8417 // Strangely, 19045 is newer but is a lower build number than the 2020 insider
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
8418 // preview which had a build 19587. And, not sure how stable that was?
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
8419 // Win Server 2022 (May 10, 2022) is build 20348, its conpty is widely used.
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
8420 // Win 11 starts from build 22000, even though the major version says 10!
15725
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8421
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8422 static void
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8423 vtp_flag_init(void)
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8424 {
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8425 DWORD ver = get_build_number();
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
8426 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
15725
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8427 DWORD mode;
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8428 HANDLE out;
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8429
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
8430 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
8431 if (!gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
8432 # endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
8433 {
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
8434 out = GetStdHandle(STD_OUTPUT_HANDLE);
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
8435
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
8436 vtp_working = (ver >= VTP_FIRST_SUPPORT_BUILD) ? 1 : 0;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
8437 GetConsoleMode(out, &mode);
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
8438 mode |= (ENABLE_PROCESSED_OUTPUT | ENABLE_VIRTUAL_TERMINAL_PROCESSING);
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
8439 if (SetConsoleMode(out, mode) == 0)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
8440 vtp_working = 0;
31839
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
8441
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
8442 // VTP uses alternate screen buffer.
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
8443 // But, not if running in a nested terminal
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
8444 use_alternate_screen_buffer = win10_22H2_or_later && p_rs && vtp_working
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
8445 && !mch_getenv("VIM_TERMINAL");
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
8446 }
15725
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8447 #endif
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8448
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8449 if (ver >= CONPTY_FIRST_SUPPORT_BUILD)
15804
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8450 conpty_working = 1;
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8451 if (ver >= CONPTY_STABLE_BUILD)
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8452 conpty_stable = 1;
15725
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8453
18064
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8454 if (ver <= CONPTY_INSIDER_BUILD)
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8455 conpty_type = 3;
18611
6a7ebc2ee528 patch 8.1.2299: ConPTY in MS-Windows 1909 is still wrong
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
8456 if (ver <= CONPTY_1909_BUILD)
6a7ebc2ee528 patch 8.1.2299: ConPTY in MS-Windows 1909 is still wrong
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
8457 conpty_type = 2;
18064
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8458 if (ver <= CONPTY_1903_BUILD)
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8459 conpty_type = 2;
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8460 if (ver < CONPTY_FIRST_SUPPORT_BUILD)
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8461 conpty_type = 1;
20201
304015471ae9 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed
Bram Moolenaar <Bram@vim.org>
parents: 20183
diff changeset
8462
304015471ae9 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed
Bram Moolenaar <Bram@vim.org>
parents: 20183
diff changeset
8463 if (ver >= CONPTY_NEXT_UPDATE_BUILD)
304015471ae9 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed
Bram Moolenaar <Bram@vim.org>
parents: 20183
diff changeset
8464 conpty_fix_type = 1;
15725
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8465 }
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8466
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
8467 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) || defined(PROTO)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8468
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8469 static void
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8470 vtp_init(void)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8471 {
14650
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
8472 # ifdef FEAT_TERMGUICOLORS
31800
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8473 CONSOLE_SCREEN_BUFFER_INFOEX csbi;
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8474 csbi.cbSize = sizeof(csbi);
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8475 GetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8476 save_console_bg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_bg];
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8477 save_console_fg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_fg];
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8478 store_console_bg_rgb = save_console_bg_rgb;
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8479 store_console_fg_rgb = save_console_fg_rgb;
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8480
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8481 COLORREF bg;
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8482 bg = (COLORREF)csbi.ColorTable[g_color_index_bg];
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8483 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8484 default_console_color_bg = bg;
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8485
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8486 COLORREF fg;
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8487 fg = (COLORREF)csbi.ColorTable[g_color_index_fg];
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8488 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8489 default_console_color_fg = fg;
15034
6e4e0d43b20b patch 8.1.0528: various typos in comments
Bram Moolenaar <Bram@vim.org>
parents: 14891
diff changeset
8490 # endif
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8491 set_console_color_rgb();
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8492 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8493
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8494 static void
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8495 vtp_exit(void)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8496 {
19239
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8497 restore_console_color_rgb();
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8498 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8499
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
8500 int
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8501 vtp_printf(
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8502 char *format,
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8503 ...)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8504 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8505 char_u buf[100];
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8506 va_list list;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8507 DWORD result;
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8508 int len;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8509
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8510 va_start(list, format);
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8511 len = vim_vsnprintf((char *)buf, 100, (char *)format, list);
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8512 va_end(list);
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8513 WriteConsoleA(g_hConOut, buf, (DWORD)len, &result, NULL);
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8514 return (int)result;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8515 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8516
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8517 static void
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8518 vtp_sgr_bulk(
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8519 int arg)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8520 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8521 int args[1];
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8522
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8523 args[0] = arg;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8524 vtp_sgr_bulks(1, args);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8525 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8526
27521
3ad379c0ab28 patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 27455
diff changeset
8527 # define FAST256(x) \
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8528 if ((*p-- = "0123456789"[(n = x % 10)]) \
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8529 && x >= 10 && (*p-- = "0123456789"[((m = x % 100) - n) / 10]) \
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8530 && x >= 100 && (*p-- = "012"[((x & 0xff) - m) / 100]));
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8531
27521
3ad379c0ab28 patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 27455
diff changeset
8532 # define FAST256CASE(x) \
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8533 case x: \
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8534 FAST256(newargs[x - 1]);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8535
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8536 static void
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8537 vtp_sgr_bulks(
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8538 int argc,
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8539 int *args)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8540 {
27521
3ad379c0ab28 patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 27455
diff changeset
8541 # define MAXSGR 16
3ad379c0ab28 patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 27455
diff changeset
8542 # define SGRBUFSIZE 2 + 4 * MAXSGR + 1 // '\033[' + SGR + 'm'
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8543 char_u buf[SGRBUFSIZE];
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8544 char_u *p;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8545 int in, out;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8546 int newargs[16];
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8547 static int sgrfgr = -1, sgrfgg, sgrfgb;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8548 static int sgrbgr = -1, sgrbgg, sgrbgb;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8549
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8550 if (argc == 0)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8551 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8552 sgrfgr = sgrbgr = -1;
30019
347cf03fee2b patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminal
Bram Moolenaar <Bram@vim.org>
parents: 30013
diff changeset
8553 vtp_printf("\033[m");
20227
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8554 return;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8555 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8556
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8557 in = out = 0;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8558 while (in < argc)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8559 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8560 int s = args[in];
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8561 int copylen = 1;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8562
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8563 if (s == 38)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8564 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8565 if (argc - in >= 5 && args[in + 1] == 2)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8566 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8567 if (sgrfgr == args[in + 2] && sgrfgg == args[in + 3]
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8568 && sgrfgb == args[in + 4])
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8569 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8570 in += 5;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8571 copylen = 0;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8572 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8573 else
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8574 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8575 sgrfgr = args[in + 2];
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8576 sgrfgg = args[in + 3];
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8577 sgrfgb = args[in + 4];
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8578 copylen = 5;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8579 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8580 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8581 else if (argc - in >= 3 && args[in + 1] == 5)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8582 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8583 sgrfgr = -1;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8584 copylen = 3;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8585 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8586 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8587 else if (s == 48)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8588 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8589 if (argc - in >= 5 && args[in + 1] == 2)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8590 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8591 if (sgrbgr == args[in + 2] && sgrbgg == args[in + 3]
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8592 && sgrbgb == args[in + 4])
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8593 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8594 in += 5;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8595 copylen = 0;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8596 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8597 else
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8598 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8599 sgrbgr = args[in + 2];
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8600 sgrbgg = args[in + 3];
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8601 sgrbgb = args[in + 4];
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8602 copylen = 5;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8603 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8604 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8605 else if (argc - in >= 3 && args[in + 1] == 5)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8606 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8607 sgrbgr = -1;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8608 copylen = 3;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8609 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8610 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8611 else if (30 <= s && s <= 39)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8612 sgrfgr = -1;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8613 else if (90 <= s && s <= 97)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8614 sgrfgr = -1;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8615 else if (40 <= s && s <= 49)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8616 sgrbgr = -1;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8617 else if (100 <= s && s <= 107)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8618 sgrbgr = -1;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8619 else if (s == 0)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8620 sgrfgr = sgrbgr = -1;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8621
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8622 while (copylen--)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8623 newargs[out++] = args[in++];
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8624 }
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8625
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8626 p = &buf[sizeof(buf) - 1];
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8627 *p-- = 'm';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8628
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8629 switch (out)
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8630 {
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8631 int n, m;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8632 DWORD r;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8633
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8634 FAST256CASE(16);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8635 *p-- = ';';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8636 FAST256CASE(15);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8637 *p-- = ';';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8638 FAST256CASE(14);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8639 *p-- = ';';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8640 FAST256CASE(13);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8641 *p-- = ';';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8642 FAST256CASE(12);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8643 *p-- = ';';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8644 FAST256CASE(11);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8645 *p-- = ';';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8646 FAST256CASE(10);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8647 *p-- = ';';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8648 FAST256CASE(9);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8649 *p-- = ';';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8650 FAST256CASE(8);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8651 *p-- = ';';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8652 FAST256CASE(7);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8653 *p-- = ';';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8654 FAST256CASE(6);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8655 *p-- = ';';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8656 FAST256CASE(5);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8657 *p-- = ';';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8658 FAST256CASE(4);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8659 *p-- = ';';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8660 FAST256CASE(3);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8661 *p-- = ';';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8662 FAST256CASE(2);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8663 *p-- = ';';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8664 FAST256CASE(1);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8665 *p-- = '[';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8666 *p = '\033';
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8667 WriteConsoleA(g_hConOut, p, (DWORD)(&buf[SGRBUFSIZE] - p), &r, NULL);
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8668 default:
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8669 break;
f2e4c12b24b3 patch 8.2.0669: MS-Windows: display in VTP is a bit slow
Bram Moolenaar <Bram@vim.org>
parents: 20201
diff changeset
8670 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8671 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8672
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
8673 static void
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
8674 wt_init(void)
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
8675 {
31067
983c16e2dfb7 patch 9.0.0868: MS-Windows: after Vim exits console resizing problem
Bram Moolenaar <Bram@vim.org>
parents: 31031
diff changeset
8676 wt_working = mch_getenv("WT_SESSION") != NULL;
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
8677 }
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
8678
13827
27e09f1a8e5c patch 8.0.1785: missing symbol in Win32 small build
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
8679 # ifdef FEAT_TERMGUICOLORS
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
8680 static int
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
8681 ctermtoxterm(
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
8682 int cterm)
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
8683 {
13839
ca8953d36264 patch 8.0.1791: using uint8_t does not work everywhere
Christian Brabandt <cb@256bit.org>
parents: 13827
diff changeset
8684 char_u r, g, b, idx;
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
8685
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
8686 cterm_color2rgb(cterm, &r, &g, &b, &idx);
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
8687 return (((int)r << 16) | ((int)g << 8) | (int)b);
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
8688 }
13827
27e09f1a8e5c patch 8.0.1785: missing symbol in Win32 small build
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
8689 # endif
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
8690
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8691 static void
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8692 set_console_color_rgb(void)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8693 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8694 # ifdef FEAT_TERMGUICOLORS
30320
0763cb330a65 patch 9.0.0496: no good reason to keep supporting Windows-XP
Bram Moolenaar <Bram@vim.org>
parents: 30200
diff changeset
8695 CONSOLE_SCREEN_BUFFER_INFOEX csbi;
18786
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8696 guicolor_T fg, bg;
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8697 int ctermfg, ctermbg;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8698
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
8699 if (!vtp_working)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8700 return;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8701
18786
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8702 get_default_console_color(&ctermfg, &ctermbg, &fg, &bg);
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8703
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
8704 if (p_tgc || t_colors >= 256)
20589
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
8705 {
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
8706 term_fg_rgb_color(fg);
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
8707 term_bg_rgb_color(bg);
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
8708 return;
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
8709 }
ecaceb5c5644 patch 8.2.0848: MS-Windows: the Windows terminal code has some flaws
Bram Moolenaar <Bram@vim.org>
parents: 20478
diff changeset
8710
31839
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
8711 if (use_alternate_screen_buffer)
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
8712 return;
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
8713
31800
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8714 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8715 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8716
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8717 csbi.cbSize = sizeof(csbi);
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8718 GetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8719
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8720 csbi.cbSize = sizeof(csbi);
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8721 csbi.srWindow.Right += 1;
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8722 csbi.srWindow.Bottom += 1;
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8723 store_console_bg_rgb = csbi.ColorTable[g_color_index_bg];
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8724 store_console_fg_rgb = csbi.ColorTable[g_color_index_fg];
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8725 csbi.ColorTable[g_color_index_bg] = (COLORREF)bg;
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8726 csbi.ColorTable[g_color_index_fg] = (COLORREF)fg;
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8727 SetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8728 # endif
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8729 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8730
18786
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8731 # if defined(FEAT_TERMGUICOLORS) || defined(PROTO)
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8732 void
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8733 get_default_console_color(
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8734 int *cterm_fg,
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8735 int *cterm_bg,
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8736 guicolor_T *gui_fg,
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8737 guicolor_T *gui_bg)
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8738 {
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8739 int id;
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8740 guicolor_T guifg = INVALCOLOR;
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8741 guicolor_T guibg = INVALCOLOR;
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8742 int ctermfg = 0;
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8743 int ctermbg = 0;
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
8744 int dummynull = 0;
18786
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8745
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8746 id = syn_name2id((char_u *)"Normal");
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8747 if (id > 0 && p_tgc)
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8748 syn_id2colors(id, &guifg, &guibg);
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8749 if (guifg == INVALCOLOR)
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8750 {
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8751 ctermfg = -1;
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8752 if (id > 0)
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
8753 syn_id2cterm_bg(id, &ctermfg, &dummynull);
31800
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8754 if (ctermfg != -1)
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8755 guifg = ctermtoxterm(ctermfg);
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
8756 else
31800
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8757 guifg = USE_WT ? INVALCOLOR : default_console_color_fg;
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8758 cterm_normal_fg_gui_color = guifg;
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8759 ctermfg = ctermfg < 0 ? 0 : ctermfg;
18786
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8760 }
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8761 if (guibg == INVALCOLOR)
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8762 {
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8763 ctermbg = -1;
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8764 if (id > 0)
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
8765 syn_id2cterm_bg(id, &dummynull, &ctermbg);
31800
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8766 if (ctermbg != -1)
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8767 guibg = ctermtoxterm(ctermbg);
30112
7ad136fb7fcd patch 9.0.0392: inverted condition is a bit confusing
Bram Moolenaar <Bram@vim.org>
parents: 30019
diff changeset
8768 else
31800
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8769 guibg = USE_WT ? INVALCOLOR : default_console_color_bg;
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8770 cterm_normal_bg_gui_color = guibg;
ea09e0f546f0 patch 9.0.1232: ColorTable saving and restoring does not work properly
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
8771 ctermbg = ctermbg < 0 ? 0 : ctermbg;
18786
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8772 }
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8773
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8774 *cterm_fg = ctermfg;
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8775 *cterm_bg = ctermbg;
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8776 *gui_fg = guifg;
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8777 *gui_bg = guibg;
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8778 }
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8779 # endif
1756fe125914 patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 18773
diff changeset
8780
19239
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8781 /*
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8782 * Set the console colors to the original colors or the last set colors.
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8783 */
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8784 static void
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8785 reset_console_color_rgb(void)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8786 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8787 # ifdef FEAT_TERMGUICOLORS
31839
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
8788 if (use_alternate_screen_buffer)
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
8789 return;
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
8790
30320
0763cb330a65 patch 9.0.0496: no good reason to keep supporting Windows-XP
Bram Moolenaar <Bram@vim.org>
parents: 30200
diff changeset
8791 CONSOLE_SCREEN_BUFFER_INFOEX csbi;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8792
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8793 csbi.cbSize = sizeof(csbi);
30320
0763cb330a65 patch 9.0.0496: no good reason to keep supporting Windows-XP
Bram Moolenaar <Bram@vim.org>
parents: 30200
diff changeset
8794 GetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8795
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8796 csbi.cbSize = sizeof(csbi);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8797 csbi.srWindow.Right += 1;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8798 csbi.srWindow.Bottom += 1;
19239
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8799 csbi.ColorTable[g_color_index_bg] = (COLORREF)store_console_bg_rgb;
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8800 csbi.ColorTable[g_color_index_fg] = (COLORREF)store_console_fg_rgb;
30320
0763cb330a65 patch 9.0.0496: no good reason to keep supporting Windows-XP
Bram Moolenaar <Bram@vim.org>
parents: 30200
diff changeset
8801 SetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
19239
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8802 # endif
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8803 }
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8804
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8805 /*
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8806 * Set the console colors to the original colors.
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8807 */
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8808 static void
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8809 restore_console_color_rgb(void)
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8810 {
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8811 # ifdef FEAT_TERMGUICOLORS
31839
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
8812 if (use_alternate_screen_buffer)
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
8813 return;
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
8814
30320
0763cb330a65 patch 9.0.0496: no good reason to keep supporting Windows-XP
Bram Moolenaar <Bram@vim.org>
parents: 30200
diff changeset
8815 CONSOLE_SCREEN_BUFFER_INFOEX csbi;
19239
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8816
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8817 csbi.cbSize = sizeof(csbi);
30320
0763cb330a65 patch 9.0.0496: no good reason to keep supporting Windows-XP
Bram Moolenaar <Bram@vim.org>
parents: 30200
diff changeset
8818 GetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
19239
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8819
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8820 csbi.cbSize = sizeof(csbi);
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8821 csbi.srWindow.Right += 1;
c189e3826ec3 patch 8.2.0178: with VTP the screen may not be restored properly
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
8822 csbi.srWindow.Bottom += 1;
14650
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
8823 csbi.ColorTable[g_color_index_bg] = (COLORREF)save_console_bg_rgb;
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
8824 csbi.ColorTable[g_color_index_fg] = (COLORREF)save_console_fg_rgb;
30320
0763cb330a65 patch 9.0.0496: no good reason to keep supporting Windows-XP
Bram Moolenaar <Bram@vim.org>
parents: 30200
diff changeset
8825 SetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8826 # endif
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8827 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8828
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8829 void
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8830 control_console_color_rgb(void)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8831 {
31031
467d950013a1 patch 9.0.0850: MS-Windows Terminal has unstable color control
Bram Moolenaar <Bram@vim.org>
parents: 31006
diff changeset
8832 if (vtp_working)
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8833 set_console_color_rgb();
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8834 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8835 reset_console_color_rgb();
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8836 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8837
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8838 int
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8839 use_vtp(void)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8840 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8841 return USE_VTP;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8842 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
8843
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
8844 int
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
8845 is_term_win32(void)
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
8846 {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
8847 return T_NAME != NULL && STRCMP(T_NAME, "win32") == 0;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
8848 }
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
8849
15725
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8850 int
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8851 has_vtp_working(void)
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8852 {
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8853 return vtp_working;
a3e2e7948ee4 patch 8.1.0870: Vim doesn't use the new ConPTY support in Windows 10
Bram Moolenaar <Bram@vim.org>
parents: 15621
diff changeset
8854 }
15804
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8855
15848
cea7a0fde805 patch 8.1.0931: vtp_working included in GUI build but unused
Bram Moolenaar <Bram@vim.org>
parents: 15804
diff changeset
8856 #endif
cea7a0fde805 patch 8.1.0931: vtp_working included in GUI build but unused
Bram Moolenaar <Bram@vim.org>
parents: 15804
diff changeset
8857
15804
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8858 int
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8859 has_conpty_working(void)
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8860 {
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8861 return conpty_working;
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8862 }
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8863
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8864 int
18064
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8865 get_conpty_type(void)
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8866 {
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8867 return conpty_type;
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8868 }
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8869
8b4f9be5db73 patch 8.1.2027: MS-Windows: problem with ambiwidth characters
Bram Moolenaar <Bram@vim.org>
parents: 17569
diff changeset
8870 int
15804
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8871 is_conpty_stable(void)
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8872 {
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8873 return conpty_stable;
864ec0dd71b9 patch 8.1.0909: MS-Windows: using ConPTY even though it is not stable
Bram Moolenaar <Bram@vim.org>
parents: 15725
diff changeset
8874 }
15866
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
8875
20201
304015471ae9 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed
Bram Moolenaar <Bram@vim.org>
parents: 20183
diff changeset
8876 int
304015471ae9 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed
Bram Moolenaar <Bram@vim.org>
parents: 20183
diff changeset
8877 get_conpty_fix_type(void)
304015471ae9 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed
Bram Moolenaar <Bram@vim.org>
parents: 20183
diff changeset
8878 {
304015471ae9 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed
Bram Moolenaar <Bram@vim.org>
parents: 20183
diff changeset
8879 return conpty_fix_type;
304015471ae9 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed
Bram Moolenaar <Bram@vim.org>
parents: 20183
diff changeset
8880 }
304015471ae9 patch 8.2.0656: MS-Windows: redrawing right screen edge may not be needed
Bram Moolenaar <Bram@vim.org>
parents: 20183
diff changeset
8881
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16196
diff changeset
8882 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL) || defined(PROTO)
15866
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
8883 void
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
8884 resize_console_buf(void)
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
8885 {
31839
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
8886 if (use_alternate_screen_buffer)
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
8887 return;
d156287184f6 patch 9.0.1252: MS-Windows: scrollback cropped off on Vim exit
Bram Moolenaar <Bram@vim.org>
parents: 31837
diff changeset
8888
15866
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
8889 CONSOLE_SCREEN_BUFFER_INFO csbi;
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
8890 COORD coord;
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
8891 SMALL_RECT newsize;
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
8892
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8893 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8894 return;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8895
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8896 coord.X = SRWIDTH(csbi.srWindow);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8897 coord.Y = SRHEIGHT(csbi.srWindow);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8898 SetConsoleScreenBufferSize(g_hConOut, coord);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8899
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8900 newsize.Left = 0;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8901 newsize.Top = 0;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8902 newsize.Right = coord.X - 1;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8903 newsize.Bottom = coord.Y - 1;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8904 SetConsoleWindowInfo(g_hConOut, TRUE, &newsize);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8905
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8906 SetConsoleScreenBufferSize(g_hConOut, coord);
15866
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
8907 }
6ddcd10aa7af patch 8.1.0940: MS-Windows console resizing not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 15862
diff changeset
8908 #endif
25342
c4298ed56ffa patch 8.2.3208: dynamic library load error does not mention why it failed
Bram Moolenaar <Bram@vim.org>
parents: 25084
diff changeset
8909
c4298ed56ffa patch 8.2.3208: dynamic library load error does not mention why it failed
Bram Moolenaar <Bram@vim.org>
parents: 25084
diff changeset
8910 char *
c4298ed56ffa patch 8.2.3208: dynamic library load error does not mention why it failed
Bram Moolenaar <Bram@vim.org>
parents: 25084
diff changeset
8911 GetWin32Error(void)
c4298ed56ffa patch 8.2.3208: dynamic library load error does not mention why it failed
Bram Moolenaar <Bram@vim.org>
parents: 25084
diff changeset
8912 {
27657
a077948be0f4 patch 8.2.4354: dynamic loading of libsodium not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 27581
diff changeset
8913 static char *oldmsg = NULL;
25342
c4298ed56ffa patch 8.2.3208: dynamic library load error does not mention why it failed
Bram Moolenaar <Bram@vim.org>
parents: 25084
diff changeset
8914 char *msg = NULL;
27657
a077948be0f4 patch 8.2.4354: dynamic loading of libsodium not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 27581
diff changeset
8915
25342
c4298ed56ffa patch 8.2.3208: dynamic library load error does not mention why it failed
Bram Moolenaar <Bram@vim.org>
parents: 25084
diff changeset
8916 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER|FORMAT_MESSAGE_FROM_SYSTEM,
c4298ed56ffa patch 8.2.3208: dynamic library load error does not mention why it failed
Bram Moolenaar <Bram@vim.org>
parents: 25084
diff changeset
8917 NULL, GetLastError(), 0, (LPSTR)&msg, 0, NULL);
27657
a077948be0f4 patch 8.2.4354: dynamic loading of libsodium not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 27581
diff changeset
8918 if (oldmsg != NULL)
a077948be0f4 patch 8.2.4354: dynamic loading of libsodium not handled properly
Bram Moolenaar <Bram@vim.org>
parents: 27581
diff changeset
8919 LocalFree(oldmsg);
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8920 if (msg == NULL)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8921 return NULL;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8922
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8923 // remove trailing \r\n
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8924 char *pcrlf = strstr(msg, "\r\n");
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8925 if (pcrlf != NULL)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8926 *pcrlf = '\0';
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31674
diff changeset
8927 oldmsg = msg;
25342
c4298ed56ffa patch 8.2.3208: dynamic library load error does not mention why it failed
Bram Moolenaar <Bram@vim.org>
parents: 25084
diff changeset
8928 return msg;
c4298ed56ffa patch 8.2.3208: dynamic library load error does not mention why it failed
Bram Moolenaar <Bram@vim.org>
parents: 25084
diff changeset
8929 }
29071
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8930
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8931 #if defined(FEAT_RELTIME) || defined(PROTO)
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8932 static HANDLE timer_handle;
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8933 static int timer_active = FALSE;
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8934
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8935 /*
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8936 * Calls to start_timeout alternate the return value pointer between the two
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8937 * entries in timeout_flags. If the previously active timeout is very close to
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8938 * expiring when start_timeout() is called then a race condition means that the
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8939 * set_flag() function may still be invoked after the previous timer is
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8940 * deleted. Ping-ponging between the two flags prevents this causing 'fake'
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8941 * timeouts.
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8942 */
29245
b12fd2b3be63 patch 8.2.5141: using "volatile int" in a signal handler might be wrong
Bram Moolenaar <Bram@vim.org>
parents: 29220
diff changeset
8943 static sig_atomic_t timeout_flags[2];
b12fd2b3be63 patch 8.2.5141: using "volatile int" in a signal handler might be wrong
Bram Moolenaar <Bram@vim.org>
parents: 29220
diff changeset
8944 static int timeout_flag_idx = 0;
b12fd2b3be63 patch 8.2.5141: using "volatile int" in a signal handler might be wrong
Bram Moolenaar <Bram@vim.org>
parents: 29220
diff changeset
8945 static sig_atomic_t *timeout_flag = &timeout_flags[0];
29071
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8946
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8947
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8948 static void CALLBACK
29105
faf7fcd1c8d5 patch 8.2.5073: clang on MS-Windows produces warnings
Bram Moolenaar <Bram@vim.org>
parents: 29096
diff changeset
8949 set_flag(void *param, BOOLEAN unused2 UNUSED)
29071
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8950 {
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8951 int *timeout_flag = (int *)param;
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8952
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8953 *timeout_flag = TRUE;
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8954 }
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8955
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8956 /*
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8957 * Stop any active timeout.
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8958 */
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8959 void
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8960 stop_timeout(void)
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8961 {
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8962 if (timer_active)
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8963 {
30882
7449da0e006b patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Bram Moolenaar <Bram@vim.org>
parents: 30641
diff changeset
8964 BOOL ret = DeleteTimerQueueTimer(NULL, timer_handle, NULL);
29071
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8965 timer_active = FALSE;
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8966 if (!ret && GetLastError() != ERROR_IO_PENDING)
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8967 {
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8968 semsg(_(e_could_not_clear_timeout_str), GetWin32Error());
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8969 }
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8970 }
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8971 *timeout_flag = FALSE;
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8972 }
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8973
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8974 /*
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8975 * Start the timeout timer.
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8976 *
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8977 * The period is defined in milliseconds.
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8978 *
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8979 * The return value is a pointer to a flag that is initialised to 0. If the
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8980 * timeout expires, the flag is set to 1. This will only return pointers to
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8981 * static memory; i.e. any pointer returned by this function may always be
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8982 * safely dereferenced.
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8983 *
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8984 * This function is not expected to fail, but if it does it still returns a
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8985 * valid flag pointer; the flag will remain stuck at zero.
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8986 */
29245
b12fd2b3be63 patch 8.2.5141: using "volatile int" in a signal handler might be wrong
Bram Moolenaar <Bram@vim.org>
parents: 29220
diff changeset
8987 volatile sig_atomic_t *
29071
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8988 start_timeout(long msec)
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8989 {
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8990 BOOL ret;
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8991
29220
d6f8b784d0f6 patch 8.2.5129: timeout handling is not optimal
Bram Moolenaar <Bram@vim.org>
parents: 29212
diff changeset
8992 timeout_flag = &timeout_flags[timeout_flag_idx];
29071
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8993
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8994 stop_timeout();
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8995 ret = CreateTimerQueueTimer(
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8996 &timer_handle, NULL, set_flag, timeout_flag,
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8997 (DWORD)msec, 0, WT_EXECUTEDEFAULT);
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8998 if (!ret)
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
8999 {
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
9000 semsg(_(e_could_not_set_timeout_str), GetWin32Error());
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
9001 }
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
9002 else
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
9003 {
29220
d6f8b784d0f6 patch 8.2.5129: timeout handling is not optimal
Bram Moolenaar <Bram@vim.org>
parents: 29212
diff changeset
9004 timeout_flag_idx = (timeout_flag_idx + 1) % 2;
29071
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
9005 timer_active = TRUE;
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
9006 *timeout_flag = FALSE;
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
9007 }
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
9008 return timeout_flag;
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
9009 }
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 28844
diff changeset
9010 #endif