annotate src/os_win32.c @ 14862:27b9a84395b5 v8.1.0443

patch 8.1.0443: unnecessary static function prototypes commit https://github.com/vim/vim/commit/6dff58f15cede9139b2fcfc64c9064326ea3d3b0 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 30 21:43:26 2018 +0200 patch 8.1.0443: unnecessary static function prototypes Problem: Unnecessary static function prototypes. Solution: Remove unnecessary prototypes.
author Christian Brabandt <cb@256bit.org>
date Sun, 30 Sep 2018 21:45:07 +0200
parents 193471015e1a
children ccedb80725c5
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 * the console version only, so there is a lot of "#ifndef FEAT_GUI_W32".
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
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
33 /* cproto fails on missing include files */
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>
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
36 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
37
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38 #undef chdir
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39 #ifdef __GNUC__
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40 # ifndef __MINGW32__
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41 # include <dirent.h>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
42 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
43 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
44 # include <direct.h>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
45 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
46
3927
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
47 #ifndef PROTO
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
48 # if defined(FEAT_TITLE) && !defined(FEAT_GUI_W32)
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
49 # include <shellapi.h>
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
50 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
51 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
52
10317
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
53 #ifdef FEAT_JOB_CHANNEL
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
54 # include <tlhelp32.h>
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
55 #endif
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
56
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
57 #ifdef __MINGW32__
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
58 # ifndef FROM_LEFT_1ST_BUTTON_PRESSED
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59 # define FROM_LEFT_1ST_BUTTON_PRESSED 0x0001
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
60 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
61 # ifndef RIGHTMOST_BUTTON_PRESSED
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
62 # define RIGHTMOST_BUTTON_PRESSED 0x0002
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
64 # ifndef FROM_LEFT_2ND_BUTTON_PRESSED
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
65 # define FROM_LEFT_2ND_BUTTON_PRESSED 0x0004
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
66 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
67 # ifndef FROM_LEFT_3RD_BUTTON_PRESSED
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68 # define FROM_LEFT_3RD_BUTTON_PRESSED 0x0008
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
69 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
70 # ifndef FROM_LEFT_4TH_BUTTON_PRESSED
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71 # define FROM_LEFT_4TH_BUTTON_PRESSED 0x0010
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
75 * EventFlags
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
76 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
77 # ifndef MOUSE_MOVED
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 # define MOUSE_MOVED 0x0001
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
80 # ifndef DOUBLE_CLICK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
81 # define DOUBLE_CLICK 0x0002
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85 /* Record all output and all keyboard & mouse input */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86 /* #define MCH_WRITE_DUMP */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
87
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
88 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89 FILE* fdDump = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93 * When generating prototypes for Win32 on Unix, these lines make the syntax
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94 * errors disappear. They do not need to be correct.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
95 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96 #ifdef PROTO
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
97 #define WINAPI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98 typedef char * LPCSTR;
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
99 typedef char * LPWSTR;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100 typedef int ACCESS_MASK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
101 typedef int BOOL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
102 typedef int COLORREF;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
103 typedef int CONSOLE_CURSOR_INFO;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
104 typedef int COORD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
105 typedef int DWORD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
106 typedef int HANDLE;
7668
21b0a39d13ed commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents: 7657
diff changeset
107 typedef int LPHANDLE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
108 typedef int HDC;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
109 typedef int HFONT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
110 typedef int HICON;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
111 typedef int HINSTANCE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
112 typedef int HWND;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
113 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
114 typedef int INT;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
115 typedef int KEY_EVENT_RECORD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
116 typedef int LOGFONT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
117 typedef int LPBOOL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
118 typedef int LPCTSTR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119 typedef int LPDWORD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
120 typedef int LPSTR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
121 typedef int LPTSTR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
122 typedef int LPVOID;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
123 typedef int MOUSE_EVENT_RECORD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
124 typedef int PACL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
125 typedef int PDWORD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
126 typedef int PHANDLE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
127 typedef int PRINTDLG;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
128 typedef int PSECURITY_DESCRIPTOR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
129 typedef int PSID;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
130 typedef int SECURITY_INFORMATION;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
131 typedef int SHORT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
132 typedef int SMALL_RECT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
133 typedef int TEXTMETRIC;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
134 typedef int TOKEN_INFORMATION_CLASS;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
135 typedef int TRUSTEE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
136 typedef int WORD;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
137 typedef int WCHAR;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
138 typedef void VOID;
3927
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
139 typedef int BY_HANDLE_FILE_INFORMATION;
5112
f063be86b632 updated for version 7.3.1299
Bram Moolenaar <bram@vim.org>
parents: 5049
diff changeset
140 typedef int SE_OBJECT_TYPE;
f063be86b632 updated for version 7.3.1299
Bram Moolenaar <bram@vim.org>
parents: 5049
diff changeset
141 typedef int PSNSECINFO;
f063be86b632 updated for version 7.3.1299
Bram Moolenaar <bram@vim.org>
parents: 5049
diff changeset
142 typedef int PSNSECINFOW;
6359
9f9058aeba0d updated for version 7.4.512
Bram Moolenaar <bram@vim.org>
parents: 6345
diff changeset
143 typedef int STARTUPINFO;
9f9058aeba0d updated for version 7.4.512
Bram Moolenaar <bram@vim.org>
parents: 6345
diff changeset
144 typedef int PROCESS_INFORMATION;
10025
068f397d0da4 commit https://github.com/vim/vim/commit/d90b6c02e2900576fb37d95b5e4f4a32b2d7383f
Christian Brabandt <cb@256bit.org>
parents: 9959
diff changeset
145 typedef int LPSECURITY_ATTRIBUTES;
068f397d0da4 commit https://github.com/vim/vim/commit/d90b6c02e2900576fb37d95b5e4f4a32b2d7383f
Christian Brabandt <cb@256bit.org>
parents: 9959
diff changeset
146 # define __stdcall /* empty */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
147 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
148
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
149 #if defined(__BORLANDC__)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
150 /* Strangely Borland uses a non-standard name. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
151 # define wcsicmp(a, b) wcscmpi((a), (b))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
152 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
153
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
154 #ifndef FEAT_GUI_W32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
155 /* Win32 Console handles for input and output */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
156 static HANDLE g_hConIn = INVALID_HANDLE_VALUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
157 static HANDLE g_hConOut = INVALID_HANDLE_VALUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
158
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
159 /* Win32 Screen buffer,coordinate,console I/O information */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
160 static SMALL_RECT g_srScrollRegion;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
161 static COORD g_coord; /* 0-based, but external coords are 1-based */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
162
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
163 /* The attribute of the screen when the editor was started */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
164 static WORD g_attrDefault = 7; /* lightgray text on black background */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
165 static WORD g_attrCurrent;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
166
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
167 static int g_fCBrkPressed = FALSE; /* set by ctrl-break interrupt */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
168 static int g_fCtrlCPressed = FALSE; /* set when ctrl-C or ctrl-break detected */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
169 static int g_fForceExit = FALSE; /* set when forcefully exiting */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
170
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
171 static void scroll(unsigned cLines);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
172 static void set_scroll_region(unsigned left, unsigned top,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
173 unsigned right, unsigned bottom);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
174 static void delete_lines(unsigned cLines);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175 static void gotoxy(unsigned x, unsigned y);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
176 static void standout(void);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
177 static int s_cursor_visible = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
178 static int did_create_conin = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
179 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
180 static int s_dont_use_vimrun = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
181 static int need_vimrun_warning = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
182 static char *vimrun_path = "vimrun ";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
183 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
184
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
185 static int win32_getattrs(char_u *name);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
186 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
187 static int win32_set_archive(char_u *name);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
188
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189 #ifndef FEAT_GUI_W32
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
190 static int vtp_working = 0;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
191 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
192 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
193 static int vtp_printf(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
194 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
195 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
196
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
197 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
198 static guicolor_T save_console_fg_rgb;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
199
14650
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
200 static int g_color_index_bg = 0;
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
201 static int g_color_index_fg = 7;
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
202
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
203 # ifdef FEAT_TERMGUICOLORS
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
204 static int default_console_color_bg = 0x000000; // black
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
205 static int default_console_color_fg = 0xc0c0c0; // white
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
206 # endif
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
207
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
208 # 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
209 # define USE_VTP (vtp_working && is_term_win32() && (p_tgc || (!p_tgc && t_colors >= 256)))
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
210 # else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
211 # define USE_VTP 0
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
212 # endif
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
213
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
214 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
215 static void 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
216 #endif
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
217
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
218 /* This flag is newly created from 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
219 #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
220 # 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
221 #endif
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
222
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
223 #ifndef FEAT_GUI_W32
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
224 static int suppress_winsize = 1; /* don't fiddle with console */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
225 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
226
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
227 static char_u *exe_path = NULL;
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
228
5633
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
229 static BOOL win8_or_later = FALSE;
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
230
8090
54cfe888c627 commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents: 8084
diff changeset
231 #ifndef FEAT_GUI_W32
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
232 /* Dynamic loading for portability */
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
233 typedef struct _DYN_CONSOLE_SCREEN_BUFFER_INFOEX
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
234 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
235 ULONG cbSize;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
236 COORD dwSize;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
237 COORD dwCursorPosition;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
238 WORD wAttributes;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
239 SMALL_RECT srWindow;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
240 COORD dwMaximumWindowSize;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
241 WORD wPopupAttributes;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
242 BOOL bFullscreenSupported;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
243 COLORREF ColorTable[16];
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
244 } DYN_CONSOLE_SCREEN_BUFFER_INFOEX, *PDYN_CONSOLE_SCREEN_BUFFER_INFOEX;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
245 typedef BOOL (WINAPI *PfnGetConsoleScreenBufferInfoEx)(HANDLE, PDYN_CONSOLE_SCREEN_BUFFER_INFOEX);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
246 static PfnGetConsoleScreenBufferInfoEx pGetConsoleScreenBufferInfoEx;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
247 typedef BOOL (WINAPI *PfnSetConsoleScreenBufferInfoEx)(HANDLE, PDYN_CONSOLE_SCREEN_BUFFER_INFOEX);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
248 static PfnSetConsoleScreenBufferInfoEx pSetConsoleScreenBufferInfoEx;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
249 static BOOL has_csbiex = FALSE;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
250
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
251 /*
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
252 * 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
253 */
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
254 typedef BOOL (WINAPI *PfnRtlGetVersion)(LPOSVERSIONINFOW);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
255 # define MAKE_VER(major, minor, build) \
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
256 (((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
257
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
258 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
259 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
260 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
261 OSVERSIONINFOW osver = {sizeof(OSVERSIONINFOW)};
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
262 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
263 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
264 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
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 hNtdll = GetModuleHandle("ntdll.dll");
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
267 if (hNtdll != NULL)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
268 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
269 pRtlGetVersion =
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
270 (PfnRtlGetVersion)GetProcAddress(hNtdll, "RtlGetVersion");
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
271 pRtlGetVersion(&osver);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
272 ver = MAKE_VER(min(osver.dwMajorVersion, 255),
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
273 min(osver.dwMinorVersion, 255),
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
274 min(osver.dwBuildNumber, 32767));
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
275 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
276 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
277 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
278
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
279
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
280 /*
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
281 * Version of ReadConsoleInput() that works with IME.
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
282 * Works around problems on Windows 8.
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
283 */
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
284 static BOOL
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
285 read_console_input(
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
286 HANDLE hInput,
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
287 INPUT_RECORD *lpBuffer,
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
288 DWORD nLength,
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
289 LPDWORD lpEvents)
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
290 {
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
291 enum
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
292 {
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
293 IRSIZE = 10
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
294 };
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
295 static INPUT_RECORD s_irCache[IRSIZE];
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
296 static DWORD s_dwIndex = 0;
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
297 static DWORD s_dwMax = 0;
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
298 DWORD dwEvents;
5635
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
299 int head;
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
300 int tail;
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
301 int i;
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
302
6981
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
303 if (nLength == -2)
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
304 return (s_dwMax > 0) ? TRUE : FALSE;
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
305
5633
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
306 if (!win8_or_later)
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
307 {
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
308 if (nLength == -1)
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
309 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
310 return ReadConsoleInputW(hInput, lpBuffer, 1, &dwEvents);
5633
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
311 }
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
312
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
313 if (s_dwMax == 0)
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
314 {
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
315 if (nLength == -1)
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
316 return PeekConsoleInputW(hInput, lpBuffer, 1, lpEvents);
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
317 if (!ReadConsoleInputW(hInput, s_irCache, IRSIZE, &dwEvents))
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
318 return FALSE;
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
319 s_dwIndex = 0;
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
320 s_dwMax = dwEvents;
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
321 if (dwEvents == 0)
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
322 {
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
323 *lpEvents = 0;
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
324 return TRUE;
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
325 }
5635
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
326
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
327 if (s_dwMax > 1)
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
328 {
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
329 head = 0;
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
330 tail = s_dwMax - 1;
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
331 while (head != tail)
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
332 {
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
333 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
334 && s_irCache[head + 1].EventType
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
335 == WINDOW_BUFFER_SIZE_EVENT)
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
336 {
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
337 /* Remove duplicate event to avoid flicker. */
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
338 for (i = head; i < tail; ++i)
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
339 s_irCache[i] = s_irCache[i + 1];
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
340 --tail;
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
341 continue;
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
342 }
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
343 head++;
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
344 }
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
345 s_dwMax = tail + 1;
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
346 }
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
347 }
5635
a01819fb6e2b updated for version 7.4.164
Bram Moolenaar <bram@vim.org>
parents: 5633
diff changeset
348
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
349 *lpBuffer = s_irCache[s_dwIndex];
6981
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
350 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
351 s_dwMax = 0;
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
352 *lpEvents = 1;
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
353 return TRUE;
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
354 }
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
355
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
356 /*
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
357 * Version of PeekConsoleInput() that works with IME.
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
358 */
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
359 static BOOL
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
360 peek_console_input(
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
361 HANDLE hInput,
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
362 INPUT_RECORD *lpBuffer,
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
363 DWORD nLength,
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
364 LPDWORD lpEvents)
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
365 {
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
366 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
367 }
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
368
8090
54cfe888c627 commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents: 8084
diff changeset
369 # ifdef FEAT_CLIENTSERVER
6981
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
370 static DWORD
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
371 msg_wait_for_multiple_objects(
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
372 DWORD nCount,
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
373 LPHANDLE pHandles,
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
374 BOOL fWaitAll,
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
375 DWORD dwMilliseconds,
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
376 DWORD dwWakeMask)
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
377 {
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
378 if (read_console_input(NULL, NULL, -2, NULL))
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
379 return WAIT_OBJECT_0;
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
380 return MsgWaitForMultipleObjects(nCount, pHandles, fWaitAll,
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
381 dwMilliseconds, dwWakeMask);
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
382 }
8090
54cfe888c627 commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents: 8084
diff changeset
383 # endif
54cfe888c627 commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents: 8084
diff changeset
384
54cfe888c627 commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents: 8084
diff changeset
385 # ifndef FEAT_CLIENTSERVER
6981
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
386 static DWORD
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
387 wait_for_single_object(
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
388 HANDLE hHandle,
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
389 DWORD dwMilliseconds)
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
390 {
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
391 if (read_console_input(NULL, NULL, -2, NULL))
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
392 return WAIT_OBJECT_0;
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
393 return WaitForSingleObject(hHandle, dwMilliseconds);
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
394 }
8090
54cfe888c627 commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents: 8084
diff changeset
395 # endif
54cfe888c627 commit https://github.com/vim/vim/commit/418f81b5fa400ed59793384f2f3d9df45390f080
Christian Brabandt <cb@256bit.org>
parents: 8084
diff changeset
396 #endif
6981
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
397
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
398 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
399 get_exe_name(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
400 {
2630
0de47f0d731e updated for version 7.3.051
Bram Moolenaar <bram@vim.org>
parents: 2615
diff changeset
401 /* Maximum length of $PATH is more than MAXPATHL. 8191 is often mentioned
0de47f0d731e updated for version 7.3.051
Bram Moolenaar <bram@vim.org>
parents: 2615
diff changeset
402 * as the maximum length that works (plus a NUL byte). */
0de47f0d731e updated for version 7.3.051
Bram Moolenaar <bram@vim.org>
parents: 2615
diff changeset
403 #define MAX_ENV_PATH_LEN 8192
0de47f0d731e updated for version 7.3.051
Bram Moolenaar <bram@vim.org>
parents: 2615
diff changeset
404 char temp[MAX_ENV_PATH_LEN];
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
405 char_u *p;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
406
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
407 if (exe_name == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
408 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
409 /* store the name of the executable, may be used for $VIM */
2630
0de47f0d731e updated for version 7.3.051
Bram Moolenaar <bram@vim.org>
parents: 2615
diff changeset
410 GetModuleFileName(NULL, temp, MAX_ENV_PATH_LEN - 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
411 if (*temp != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
412 exe_name = FullName_save((char_u *)temp, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
413 }
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
414
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
415 if (exe_path == NULL && exe_name != NULL)
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
416 {
2615
c6fe65c000d2 updated for version 7.3.037
Bram Moolenaar <bram@vim.org>
parents: 2613
diff changeset
417 exe_path = vim_strnsave(exe_name,
c6fe65c000d2 updated for version 7.3.037
Bram Moolenaar <bram@vim.org>
parents: 2613
diff changeset
418 (int)(gettail_sep(exe_name) - exe_name));
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
419 if (exe_path != NULL)
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
420 {
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
421 /* Append our starting directory to $PATH, so that when doing
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
422 * "!xxd" it's found in our starting directory. Needed because
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
423 * SearchPath() also looks there. */
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
424 p = mch_getenv("PATH");
2630
0de47f0d731e updated for version 7.3.051
Bram Moolenaar <bram@vim.org>
parents: 2615
diff changeset
425 if (p == NULL
0de47f0d731e updated for version 7.3.051
Bram Moolenaar <bram@vim.org>
parents: 2615
diff changeset
426 || STRLEN(p) + STRLEN(exe_path) + 2 < MAX_ENV_PATH_LEN)
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
427 {
2630
0de47f0d731e updated for version 7.3.051
Bram Moolenaar <bram@vim.org>
parents: 2615
diff changeset
428 if (p == NULL || *p == NUL)
0de47f0d731e updated for version 7.3.051
Bram Moolenaar <bram@vim.org>
parents: 2615
diff changeset
429 temp[0] = NUL;
0de47f0d731e updated for version 7.3.051
Bram Moolenaar <bram@vim.org>
parents: 2615
diff changeset
430 else
0de47f0d731e updated for version 7.3.051
Bram Moolenaar <bram@vim.org>
parents: 2615
diff changeset
431 {
0de47f0d731e updated for version 7.3.051
Bram Moolenaar <bram@vim.org>
parents: 2615
diff changeset
432 STRCPY(temp, p);
0de47f0d731e updated for version 7.3.051
Bram Moolenaar <bram@vim.org>
parents: 2615
diff changeset
433 STRCAT(temp, ";");
0de47f0d731e updated for version 7.3.051
Bram Moolenaar <bram@vim.org>
parents: 2615
diff changeset
434 }
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
435 STRCAT(temp, exe_path);
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
436 vim_setenv((char_u *)"PATH", (char_u *)temp);
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
437 }
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
438 }
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
439 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
440 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
441
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
442 /*
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
443 * Unescape characters in "p" that appear in "escaped".
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
444 */
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
445 static void
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
446 unescape_shellxquote(char_u *p, char_u *escaped)
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
447 {
3386
cb2ae92ce106 updated for version 7.3.459
Bram Moolenaar <bram@vim.org>
parents: 3367
diff changeset
448 int l = (int)STRLEN(p);
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
449 int n;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
450
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
451 while (*p != NUL)
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
452 {
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
453 if (*p == '^' && vim_strchr(escaped, p[1]) != NULL)
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
454 mch_memmove(p, p + 1, l--);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
455 #ifdef FEAT_MBYTE
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
456 n = (*mb_ptr2len)(p);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
457 #else
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
458 n = 1;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
459 #endif
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
460 p += n;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
461 l -= n;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
462 }
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
463 }
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
464
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
465 /*
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
466 * Load library "name".
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
467 */
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
468 HINSTANCE
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
469 vimLoadLib(char *name)
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
470 {
3902
d24d309c365f updated for version 7.3.707
Bram Moolenaar <bram@vim.org>
parents: 3889
diff changeset
471 HINSTANCE dll = NULL;
3889
48af86560945 updated for version 7.3.701
Bram Moolenaar <bram@vim.org>
parents: 3720
diff changeset
472
48af86560945 updated for version 7.3.701
Bram Moolenaar <bram@vim.org>
parents: 3720
diff changeset
473 /* NOTE: Do not use mch_dirname() and mch_chdir() here, they may call
48af86560945 updated for version 7.3.701
Bram Moolenaar <bram@vim.org>
parents: 3720
diff changeset
474 * vimLoadLib() recursively, which causes a stack overflow. */
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
475 if (exe_path == NULL)
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
476 get_exe_name();
3902
d24d309c365f updated for version 7.3.707
Bram Moolenaar <bram@vim.org>
parents: 3889
diff changeset
477 if (exe_path != NULL)
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
478 {
3902
d24d309c365f updated for version 7.3.707
Bram Moolenaar <bram@vim.org>
parents: 3889
diff changeset
479 WCHAR old_dirw[MAXPATHL];
d24d309c365f updated for version 7.3.707
Bram Moolenaar <bram@vim.org>
parents: 3889
diff changeset
480
d24d309c365f updated for version 7.3.707
Bram Moolenaar <bram@vim.org>
parents: 3889
diff changeset
481 if (GetCurrentDirectoryW(MAXPATHL, old_dirw) != 0)
d24d309c365f updated for version 7.3.707
Bram Moolenaar <bram@vim.org>
parents: 3889
diff changeset
482 {
d24d309c365f updated for version 7.3.707
Bram Moolenaar <bram@vim.org>
parents: 3889
diff changeset
483 /* Change directory to where the executable is, both to make
d24d309c365f updated for version 7.3.707
Bram Moolenaar <bram@vim.org>
parents: 3889
diff changeset
484 * sure we find a .dll there and to avoid looking for a .dll
d24d309c365f updated for version 7.3.707
Bram Moolenaar <bram@vim.org>
parents: 3889
diff changeset
485 * in the current directory. */
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
486 SetCurrentDirectory((LPCSTR)exe_path);
3902
d24d309c365f updated for version 7.3.707
Bram Moolenaar <bram@vim.org>
parents: 3889
diff changeset
487 dll = LoadLibrary(name);
d24d309c365f updated for version 7.3.707
Bram Moolenaar <bram@vim.org>
parents: 3889
diff changeset
488 SetCurrentDirectoryW(old_dirw);
d24d309c365f updated for version 7.3.707
Bram Moolenaar <bram@vim.org>
parents: 3889
diff changeset
489 return dll;
d24d309c365f updated for version 7.3.707
Bram Moolenaar <bram@vim.org>
parents: 3889
diff changeset
490 }
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
491 }
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
492 return dll;
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
493 }
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
494
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
495 #if defined(DYNAMIC_ICONV) || defined(DYNAMIC_GETTEXT) || defined(PROTO)
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
496 /*
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
497 * 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
498 * 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
499 * If 'info' is 1, return the module name which the function 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
500 */
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
501 static void *
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
502 get_imported_func_info(HINSTANCE hInst, const char *funcname, int info)
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
503 {
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
504 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
505 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
506 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
507 PIMAGE_IMPORT_DESCRIPTOR pImpDesc;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
508 PIMAGE_THUNK_DATA pIAT; /* Import Address Table */
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
509 PIMAGE_THUNK_DATA pINT; /* Import Name Table */
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
510 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
511
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
512 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
513 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
514 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
515 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
516 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
517 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
518 + 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
519 .VirtualAddress);
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
520 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
521 {
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
522 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
523 continue;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
524 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
525 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
526 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
527 {
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
528 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
529 continue;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
530 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
531 + (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
532 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
533 {
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
534 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
535 {
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
536 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
537 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
538 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
539 return (void *)(pImage + pImpDesc->Name);
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
540 default:
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
541 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
542 }
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
543 }
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
544 }
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
545 }
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
546 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
547 }
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
548
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
549 /*
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
550 * 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
551 */
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
552 HINSTANCE
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
553 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
554 {
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
555 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
556
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
557 modulename = (char *)get_imported_func_info(hInst, funcname, 1);
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
558 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
559 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
560 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
561 }
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
562
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
563 /*
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
564 * 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
565 */
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
566 void *
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
567 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
568 {
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
569 return get_imported_func_info(hInst, 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
570 }
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
571 #endif
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
572
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
573 #if defined(DYNAMIC_GETTEXT) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
574 # ifndef GETTEXT_DLL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
575 # define GETTEXT_DLL "libintl.dll"
7613
4456fa2d22e8 commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents: 7460
diff changeset
576 # define GETTEXT_DLL_ALT "libintl-8.dll"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
577 # endif
3622
43fd3896fab7 updated for version 7.3.571
Bram Moolenaar <bram@vim.org>
parents: 3386
diff changeset
578 /* Dummy functions */
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
579 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
580 static char *null_libintl_ngettext(const char *, const char *, unsigned long n);
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
581 static char *null_libintl_textdomain(const char *);
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
582 static char *null_libintl_bindtextdomain(const char *, const char *);
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
583 static char *null_libintl_bind_textdomain_codeset(const char *, const char *);
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
584 static int null_libintl_putenv(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
585 static int null_libintl_wputenv(const wchar_t *);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
586
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
587 static HINSTANCE hLibintlDLL = NULL;
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
588 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
589 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
590 = null_libintl_ngettext;
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
591 char *(*dyn_libintl_textdomain)(const char *) = null_libintl_textdomain;
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
592 char *(*dyn_libintl_bindtextdomain)(const char *, const char *)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
593 = null_libintl_bindtextdomain;
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
594 char *(*dyn_libintl_bind_textdomain_codeset)(const char *, const char *)
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
595 = null_libintl_bind_textdomain_codeset;
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
596 int (*dyn_libintl_putenv)(const char *) = null_libintl_putenv;
10781
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
597 int (*dyn_libintl_wputenv)(const wchar_t *) = null_libintl_wputenv;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
598
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
599 int
7833
c079097365f3 commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents: 7797
diff changeset
600 dyn_libintl_init(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
601 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
602 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
603 static struct
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
604 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
605 char *name;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
606 FARPROC *ptr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
607 } libintl_entry[] =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
608 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
609 {"gettext", (FARPROC*)&dyn_libintl_gettext},
9754
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
610 {"ngettext", (FARPROC*)&dyn_libintl_ngettext},
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
611 {"textdomain", (FARPROC*)&dyn_libintl_textdomain},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
612 {"bindtextdomain", (FARPROC*)&dyn_libintl_bindtextdomain},
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
613 {NULL, NULL}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
614 };
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
615 HINSTANCE hmsvcrt;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
616
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
617 /* No need to initialize twice. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
618 if (hLibintlDLL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
619 return 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
620 /* Load gettext library (libintl.dll) */
7784
29d4ee3f009a commit https://github.com/vim/vim/commit/923e43b837ca4c8edb7998743f142823eaeaf588
Christian Brabandt <cb@256bit.org>
parents: 7734
diff changeset
621 hLibintlDLL = vimLoadLib(GETTEXT_DLL);
7734
616769d423fc commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents: 7668
diff changeset
622 #ifdef GETTEXT_DLL_ALT
7613
4456fa2d22e8 commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents: 7460
diff changeset
623 if (!hLibintlDLL)
4456fa2d22e8 commit https://github.com/vim/vim/commit/286eacd3f6631e985089176fb1dff1bcf1a1d6b5
Christian Brabandt <cb@256bit.org>
parents: 7460
diff changeset
624 hLibintlDLL = vimLoadLib(GETTEXT_DLL_ALT);
7734
616769d423fc commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents: 7668
diff changeset
625 #endif
616769d423fc commit https://github.com/vim/vim/commit/938ee834d345062cd94f8fdfd54fad0019432a83
Christian Brabandt <cb@256bit.org>
parents: 7668
diff changeset
626 if (!hLibintlDLL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
627 {
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
628 if (p_verbose > 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
629 {
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
630 verbose_enter();
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
631 EMSG2(_(e_loadlib), GETTEXT_DLL);
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
632 verbose_leave();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
633 }
2612
fa5dee44df3f updated for version 7.3.034
Bram Moolenaar <bram@vim.org>
parents: 2604
diff changeset
634 return 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
635 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
636 for (i = 0; libintl_entry[i].name != NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
637 && libintl_entry[i].ptr != NULL; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
638 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
639 if ((*libintl_entry[i].ptr = (FARPROC)GetProcAddress(hLibintlDLL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
640 libintl_entry[i].name)) == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
641 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
642 dyn_libintl_end();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
643 if (p_verbose > 0)
292
bf6ee000a80c updated for version 7.0077
vimboss
parents: 203
diff changeset
644 {
bf6ee000a80c updated for version 7.0077
vimboss
parents: 203
diff changeset
645 verbose_enter();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
646 EMSG2(_(e_loadfunc), libintl_entry[i].name);
292
bf6ee000a80c updated for version 7.0077
vimboss
parents: 203
diff changeset
647 verbose_leave();
bf6ee000a80c updated for version 7.0077
vimboss
parents: 203
diff changeset
648 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
649 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
650 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
651 }
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
652
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
653 /* The bind_textdomain_codeset() function is optional. */
323
03b3684919e3 updated for version 7.0084
vimboss
parents: 297
diff changeset
654 dyn_libintl_bind_textdomain_codeset = (void *)GetProcAddress(hLibintlDLL,
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
655 "bind_textdomain_codeset");
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
656 if (dyn_libintl_bind_textdomain_codeset == NULL)
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
657 dyn_libintl_bind_textdomain_codeset =
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
658 null_libintl_bind_textdomain_codeset;
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
659
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
660 /* _putenv() function for the libintl.dll is optional. */
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
661 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
662 if (hmsvcrt != NULL)
10781
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
663 {
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
664 dyn_libintl_putenv = (void *)GetProcAddress(hmsvcrt, "_putenv");
10781
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
665 dyn_libintl_wputenv = (void *)GetProcAddress(hmsvcrt, "_wputenv");
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
666 }
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
667 if (dyn_libintl_putenv == NULL || dyn_libintl_putenv == _putenv)
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
668 dyn_libintl_putenv = null_libintl_putenv;
10781
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
669 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
670 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
671
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
672 return 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
673 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
674
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
675 void
7833
c079097365f3 commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents: 7797
diff changeset
676 dyn_libintl_end(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
677 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
678 if (hLibintlDLL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
679 FreeLibrary(hLibintlDLL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
680 hLibintlDLL = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
681 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
682 dyn_libintl_ngettext = null_libintl_ngettext;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
683 dyn_libintl_textdomain = null_libintl_textdomain;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
684 dyn_libintl_bindtextdomain = null_libintl_bindtextdomain;
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
685 dyn_libintl_bind_textdomain_codeset = null_libintl_bind_textdomain_codeset;
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
686 dyn_libintl_putenv = null_libintl_putenv;
10781
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
687 dyn_libintl_wputenv = null_libintl_wputenv;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
688 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
689
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
690 static char *
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
691 null_libintl_gettext(const char *msgid)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
692 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
693 return (char*)msgid;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
694 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
695
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
696 static char *
9754
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
697 null_libintl_ngettext(
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
698 const char *msgid,
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
699 const char *msgid_plural,
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
700 unsigned long n)
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
701 {
9762
93dcc4329c74 commit https://github.com/vim/vim/commit/c90f2aedd0a5dc2cc75bc9b5f475f8a3e3fe36b1
Christian Brabandt <cb@256bit.org>
parents: 9754
diff changeset
702 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
703 }
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
704
a990e7ed260b commit https://github.com/vim/vim/commit/ee695f787ade7fd88fc5f5497553d95c0c3645b5
Christian Brabandt <cb@256bit.org>
parents: 9750
diff changeset
705 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
706 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
707 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
708 const char *dirname UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
709 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
710 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
711 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
712
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
713 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
714 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
715 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
716 const char *codeset UNUSED)
36
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
717 {
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
718 return NULL;
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
719 }
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
720
125e80798a85 updated for version 7.0021
vimboss
parents: 26
diff changeset
721 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
722 null_libintl_textdomain(const char *domainname UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
723 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
724 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
725 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
726
11929
3457728d1a58 patch 8.0.0844: wrong function prototype because of missing static
Christian Brabandt <cb@256bit.org>
parents: 11921
diff changeset
727 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
728 null_libintl_putenv(const char *envstring UNUSED)
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
729 {
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
730 return 0;
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
731 }
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
732
11929
3457728d1a58 patch 8.0.0844: wrong function prototype because of missing static
Christian Brabandt <cb@256bit.org>
parents: 11921
diff changeset
733 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
734 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
735 {
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
736 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
737 }
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
738
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
739 #endif /* DYNAMIC_GETTEXT */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
740
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
741 /* This symbol is not defined in older versions of the SDK or Visual C++ */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
742
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
743 #ifndef VER_PLATFORM_WIN32_WINDOWS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
744 # define VER_PLATFORM_WIN32_WINDOWS 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
745 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
746
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
747 DWORD g_PlatformId;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
748
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
749 #ifdef HAVE_ACL
3927
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
750 # ifndef PROTO
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
751 # include <aclapi.h>
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
752 # endif
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
753 # ifndef PROTECTED_DACL_SECURITY_INFORMATION
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
754 # define PROTECTED_DACL_SECURITY_INFORMATION 0x80000000L
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
755 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
756 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
757
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
758 #ifdef HAVE_ACL
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
759 /*
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
760 * Enables or disables the specified privilege.
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
761 */
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
762 static BOOL
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
763 win32_enable_privilege(LPTSTR lpszPrivilege, BOOL bEnable)
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
764 {
5590
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
765 BOOL bResult;
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
766 LUID luid;
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
767 HANDLE hToken;
735b70faac4a updated for version 7.4.142
Bram Moolenaar <bram@vim.org>
parents: 5588
diff changeset
768 TOKEN_PRIVILEGES tokenPrivileges;
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
769
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
770 if (!OpenProcessToken(GetCurrentProcess(),
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
771 TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken))
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
772 return FALSE;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
773
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
774 if (!LookupPrivilegeValue(NULL, lpszPrivilege, &luid))
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
775 {
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
776 CloseHandle(hToken);
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
777 return FALSE;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
778 }
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
779
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 5782
diff changeset
780 tokenPrivileges.PrivilegeCount = 1;
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
781 tokenPrivileges.Privileges[0].Luid = luid;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
782 tokenPrivileges.Privileges[0].Attributes = bEnable ?
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
783 SE_PRIVILEGE_ENABLED : 0;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
784
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
785 bResult = AdjustTokenPrivileges(hToken, FALSE, &tokenPrivileges,
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
786 sizeof(TOKEN_PRIVILEGES), NULL, NULL);
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
787
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
788 CloseHandle(hToken);
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
789
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
790 return bResult && GetLastError() == ERROR_SUCCESS;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
791 }
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
792 #endif
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
793
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
794 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
795 * Set g_PlatformId to VER_PLATFORM_WIN32_NT (NT) or
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
796 * VER_PLATFORM_WIN32_WINDOWS (Win95).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
797 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
798 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
799 PlatformId(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
800 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
801 static int done = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
802
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
803 if (!done)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
804 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
805 OSVERSIONINFO ovi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
806
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
807 ovi.dwOSVersionInfoSize = sizeof(ovi);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
808 GetVersionEx(&ovi);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
809
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
810 g_PlatformId = ovi.dwPlatformId;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
811
5633
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
812 if ((ovi.dwMajorVersion == 6 && ovi.dwMinorVersion >= 2)
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
813 || ovi.dwMajorVersion > 6)
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
814 win8_or_later = TRUE;
7db84aadd37a updated for version 7.4.163
Bram Moolenaar <bram@vim.org>
parents: 5627
diff changeset
815
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
816 #ifdef HAVE_ACL
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
817 /* Enable privilege for getting or setting SACLs. */
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
818 win32_enable_privilege(SE_SECURITY_NAME, TRUE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
819 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
820 done = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
821 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
822 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
823
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
824 #ifndef FEAT_GUI_W32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
825
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
826 #define SHIFT (SHIFT_PRESSED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
827 #define CTRL (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
828 #define ALT (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
829 #define ALT_GR (RIGHT_ALT_PRESSED | LEFT_CTRL_PRESSED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
830
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
831
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
832 /* When uChar.AsciiChar is 0, then we need to look at wVirtualKeyCode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
833 * We map function keys to their ANSI terminal equivalents, as produced
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
834 * by ANSI.SYS, for compatibility with the MS-DOS version of Vim. Any
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
835 * ANSI key with a value >= '\300' is nonstandard, but provided anyway
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
836 * so that the user can have access to all SHIFT-, CTRL-, and ALT-
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
837 * combinations of function/arrow/etc keys.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
838 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
839
297
9a1c2a8186b7 updated for version 7.0078
vimboss
parents: 292
diff changeset
840 static const struct
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
841 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
842 WORD wVirtKey;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
843 BOOL fAnsiKey;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
844 int chAlone;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
845 int chShift;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
846 int chCtrl;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
847 int chAlt;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
848 } VirtKeyMap[] =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
849 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
850
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
851 /* Key ANSI alone shift ctrl alt */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
852 { VK_ESCAPE,FALSE, ESC, ESC, ESC, ESC, },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
853
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
854 { VK_F1, TRUE, ';', 'T', '^', 'h', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
855 { VK_F2, TRUE, '<', 'U', '_', 'i', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
856 { VK_F3, TRUE, '=', 'V', '`', 'j', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
857 { VK_F4, TRUE, '>', 'W', 'a', 'k', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
858 { VK_F5, TRUE, '?', 'X', 'b', 'l', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
859 { VK_F6, TRUE, '@', 'Y', 'c', 'm', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
860 { VK_F7, TRUE, 'A', 'Z', 'd', 'n', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
861 { VK_F8, TRUE, 'B', '[', 'e', 'o', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
862 { VK_F9, TRUE, 'C', '\\', 'f', 'p', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
863 { VK_F10, TRUE, 'D', ']', 'g', 'q', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
864 { VK_F11, TRUE, '\205', '\207', '\211', '\213', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
865 { VK_F12, TRUE, '\206', '\210', '\212', '\214', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
866
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
867 { VK_HOME, TRUE, 'G', '\302', 'w', '\303', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
868 { VK_UP, TRUE, 'H', '\304', '\305', '\306', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
869 { VK_PRIOR, TRUE, 'I', '\307', '\204', '\310', }, /*PgUp*/
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
870 { VK_LEFT, TRUE, 'K', '\311', 's', '\312', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
871 { VK_RIGHT, TRUE, 'M', '\313', 't', '\314', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
872 { VK_END, TRUE, 'O', '\315', 'u', '\316', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
873 { VK_DOWN, TRUE, 'P', '\317', '\320', '\321', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
874 { VK_NEXT, TRUE, 'Q', '\322', 'v', '\323', }, /*PgDn*/
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
875 { VK_INSERT,TRUE, 'R', '\324', '\325', '\326', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
876 { VK_DELETE,TRUE, 'S', '\327', '\330', '\331', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
877
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
878 { VK_SNAPSHOT,TRUE, 0, 0, 0, 'r', }, /*PrtScrn*/
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
879
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
880 #if 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
881 /* Most people don't have F13-F20, but what the hell... */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
882 { VK_F13, TRUE, '\332', '\333', '\334', '\335', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
883 { VK_F14, TRUE, '\336', '\337', '\340', '\341', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
884 { VK_F15, TRUE, '\342', '\343', '\344', '\345', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
885 { VK_F16, TRUE, '\346', '\347', '\350', '\351', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
886 { VK_F17, TRUE, '\352', '\353', '\354', '\355', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
887 { VK_F18, TRUE, '\356', '\357', '\360', '\361', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
888 { VK_F19, TRUE, '\362', '\363', '\364', '\365', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
889 { VK_F20, TRUE, '\366', '\367', '\370', '\371', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
890 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
891 { VK_ADD, TRUE, 'N', 'N', 'N', 'N', }, /* keyp '+' */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
892 { VK_SUBTRACT, TRUE,'J', 'J', 'J', 'J', }, /* keyp '-' */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
893 /* { VK_DIVIDE, TRUE,'N', 'N', 'N', 'N', }, keyp '/' */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
894 { VK_MULTIPLY, TRUE,'7', '7', '7', '7', }, /* keyp '*' */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
895
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
896 { VK_NUMPAD0,TRUE, '\332', '\333', '\334', '\335', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
897 { VK_NUMPAD1,TRUE, '\336', '\337', '\340', '\341', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
898 { VK_NUMPAD2,TRUE, '\342', '\343', '\344', '\345', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
899 { VK_NUMPAD3,TRUE, '\346', '\347', '\350', '\351', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
900 { VK_NUMPAD4,TRUE, '\352', '\353', '\354', '\355', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
901 { VK_NUMPAD5,TRUE, '\356', '\357', '\360', '\361', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
902 { VK_NUMPAD6,TRUE, '\362', '\363', '\364', '\365', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
903 { VK_NUMPAD7,TRUE, '\366', '\367', '\370', '\371', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
904 { VK_NUMPAD8,TRUE, '\372', '\373', '\374', '\375', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
905 /* Sorry, out of number space! <negri>*/
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
906 { VK_NUMPAD9,TRUE, '\376', '\377', '\377', '\367', },
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
907
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
908 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
909
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
910
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
911 #ifdef _MSC_VER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
912 // The ToAscii bug destroys several registers. Need to turn off optimization
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
913 // or the GetConsoleKeyboardLayoutName hack will fail in non-debug versions
797
a1a08851eac8 updated for version 7.0232
vimboss
parents: 715
diff changeset
914 # pragma warning(push)
a1a08851eac8 updated for version 7.0232
vimboss
parents: 715
diff changeset
915 # pragma warning(disable: 4748)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
916 # pragma optimize("", off)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
917 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
918
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
919 #if defined(__GNUC__) && !defined(__MINGW32__) && !defined(__CYGWIN__)
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
920 # define UChar UnicodeChar
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
921 #else
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
922 # define UChar uChar.UnicodeChar
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
923 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
924
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
925 /* The return code indicates key code size. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
926 static int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
927 #ifdef __BORLANDC__
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
928 __stdcall
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
929 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
930 win32_kbd_patch_key(
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
931 KEY_EVENT_RECORD *pker)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
932 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
933 UINT uMods = pker->dwControlKeyState;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
934 static int s_iIsDead = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
935 static WORD awAnsiCode[2];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
936 static BYTE abKeystate[256];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
937
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
938
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
939 if (s_iIsDead == 2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
940 {
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
941 pker->UChar = (WCHAR) awAnsiCode[1];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
942 s_iIsDead = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
943 return 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
944 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
945
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
946 if (pker->UChar != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
947 return 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
948
2215
cccb71c2c5c1 Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents: 1752
diff changeset
949 vim_memset(abKeystate, 0, sizeof (abKeystate));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
950
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
951 /* Clear any pending dead keys */
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
952 ToUnicode(VK_SPACE, MapVirtualKey(VK_SPACE, 0), abKeystate, awAnsiCode, 2, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
953
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
954 if (uMods & SHIFT_PRESSED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
955 abKeystate[VK_SHIFT] = 0x80;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
956 if (uMods & CAPSLOCK_ON)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
957 abKeystate[VK_CAPITAL] = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
958
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
959 if ((uMods & ALT_GR) == ALT_GR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
960 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
961 abKeystate[VK_CONTROL] = abKeystate[VK_LCONTROL] =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
962 abKeystate[VK_MENU] = abKeystate[VK_RMENU] = 0x80;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
963 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
964
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
965 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
966 abKeystate, awAnsiCode, 2, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
967
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
968 if (s_iIsDead > 0)
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
969 pker->UChar = (WCHAR) awAnsiCode[0];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
970
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
971 return s_iIsDead;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
972 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
973
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
974 #ifdef _MSC_VER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
975 /* MUST switch optimization on again here, otherwise a call to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
976 * decode_key_event() may crash (e.g. when hitting caps-lock) */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
977 # pragma optimize("", on)
797
a1a08851eac8 updated for version 7.0232
vimboss
parents: 715
diff changeset
978 # pragma warning(pop)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
979
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
980 # if (_MSC_VER < 1100)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
981 /* MUST turn off global optimisation for this next function, or
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
982 * pressing ctrl-minus in insert mode crashes Vim when built with
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
983 * VC4.1. -- negri. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
984 # pragma optimize("g", off)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
985 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
986 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
987
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
988 static BOOL g_fJustGotFocus = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
989
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
990 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
991 * Decode a KEY_EVENT into one or two keystrokes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
992 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
993 static BOOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
994 decode_key_event(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
995 KEY_EVENT_RECORD *pker,
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
996 WCHAR *pch,
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
997 WCHAR *pch2,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
998 int *pmodifiers,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
999 BOOL fDoPost)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1000 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1001 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1002 const int nModifs = pker->dwControlKeyState & (SHIFT | ALT | CTRL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1003
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1004 *pch = *pch2 = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1005 g_fJustGotFocus = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1006
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1007 /* ignore key up events */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1008 if (!pker->bKeyDown)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1009 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1010
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1011 /* ignore some keystrokes */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1012 switch (pker->wVirtualKeyCode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1013 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1014 /* modifiers */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1015 case VK_SHIFT:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1016 case VK_CONTROL:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1017 case VK_MENU: /* Alt key */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1018 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1019
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1020 default:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1021 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1022 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1023
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1024 /* special cases */
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1025 if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0 && pker->UChar == NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1026 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1027 /* Ctrl-6 is Ctrl-^ */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1028 if (pker->wVirtualKeyCode == '6')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1029 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1030 *pch = Ctrl_HAT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1031 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1032 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1033 /* Ctrl-2 is Ctrl-@ */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1034 else if (pker->wVirtualKeyCode == '2')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1035 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1036 *pch = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1037 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1038 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1039 /* Ctrl-- is Ctrl-_ */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1040 else if (pker->wVirtualKeyCode == 0xBD)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1041 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1042 *pch = Ctrl__;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1043 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1044 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1045 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1046
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1047 /* Shift-TAB */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1048 if (pker->wVirtualKeyCode == VK_TAB && (nModifs & SHIFT_PRESSED))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1049 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1050 *pch = K_NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1051 *pch2 = '\017';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1052 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1053 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1054
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1055 for (i = sizeof(VirtKeyMap) / sizeof(VirtKeyMap[0]); --i >= 0; )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1056 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1057 if (VirtKeyMap[i].wVirtKey == pker->wVirtualKeyCode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1058 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1059 if (nModifs == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1060 *pch = VirtKeyMap[i].chAlone;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1061 else if ((nModifs & SHIFT) != 0 && (nModifs & ~SHIFT) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1062 *pch = VirtKeyMap[i].chShift;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1063 else if ((nModifs & CTRL) != 0 && (nModifs & ~CTRL) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1064 *pch = VirtKeyMap[i].chCtrl;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1065 else if ((nModifs & ALT) != 0 && (nModifs & ~ALT) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1066 *pch = VirtKeyMap[i].chAlt;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1067
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1068 if (*pch != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1069 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1070 if (VirtKeyMap[i].fAnsiKey)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1071 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1072 *pch2 = *pch;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1073 *pch = K_NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1074 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1075
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1076 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1077 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1078 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1079 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1080
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1081 i = win32_kbd_patch_key(pker);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1082
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1083 if (i < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1084 *pch = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1085 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1086 {
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1087 *pch = (i > 0) ? pker->UChar : NUL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1088
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1089 if (pmodifiers != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1090 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1091 /* Pass on the ALT key as a modifier, but only when not combined
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1092 * with CTRL (which is ALTGR). */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1093 if ((nModifs & ALT) != 0 && (nModifs & CTRL) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1094 *pmodifiers |= MOD_MASK_ALT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1095
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1096 /* Pass on SHIFT only for special keys, because we don't know when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1097 * it's already included with the character. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1098 if ((nModifs & SHIFT) != 0 && *pch <= 0x20)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1099 *pmodifiers |= MOD_MASK_SHIFT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1100
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1101 /* Pass on CTRL only for non-special keys, because we don't know
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1102 * when it's already included with the character. And not when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1103 * combined with ALT (which is ALTGR). */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1104 if ((nModifs & CTRL) != 0 && (nModifs & ALT) == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1105 && *pch >= 0x20 && *pch < 0x80)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1106 *pmodifiers |= MOD_MASK_CTRL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1107 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1108 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1109
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1110 return (*pch != NUL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1111 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1112
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1113 #ifdef _MSC_VER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1114 # pragma optimize("", on)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1115 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1116
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1117 #endif /* FEAT_GUI_W32 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1118
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1119
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1120 #ifdef FEAT_MOUSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1121
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1122 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1123 * For the GUI the mouse handling is in gui_w32.c.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1124 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1125 # ifdef FEAT_GUI_W32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1126 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
1127 mch_setmouse(int on UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1128 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1129 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1130 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1131 static int g_fMouseAvail = FALSE; /* mouse present */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1132 static int g_fMouseActive = FALSE; /* mouse enabled */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1133 static int g_nMouseClick = -1; /* mouse status */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1134 static int g_xMouse; /* mouse x coordinate */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1135 static int g_yMouse; /* mouse y coordinate */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1136
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1137 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1138 * Enable or disable mouse input
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1139 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1140 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
1141 mch_setmouse(int on)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1142 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1143 DWORD cmodein;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1144
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1145 if (!g_fMouseAvail)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1146 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1147
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1148 g_fMouseActive = on;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1149 GetConsoleMode(g_hConIn, &cmodein);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1150
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1151 if (g_fMouseActive)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1152 cmodein |= ENABLE_MOUSE_INPUT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1153 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1154 cmodein &= ~ENABLE_MOUSE_INPUT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1155
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1156 SetConsoleMode(g_hConIn, cmodein);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1157 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1158
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
1159
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1160 #if defined(FEAT_BEVAL_TERM) || defined(PROTO)
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1161 /*
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1162 * 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
1163 */
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1164 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
1165 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
1166 {
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1167 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
1168 }
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1169 #endif
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1170
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1171 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1172 * Decode a MOUSE_EVENT. If it's a valid event, return MOUSE_LEFT,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1173 * MOUSE_MIDDLE, or MOUSE_RIGHT for a click; MOUSE_DRAG for a mouse
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1174 * move with a button held down; and MOUSE_RELEASE after a MOUSE_DRAG
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1175 * or a MOUSE_LEFT, _MIDDLE, or _RIGHT. We encode the button type,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1176 * the number of clicks, and the Shift/Ctrl/Alt modifiers in g_nMouseClick,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1177 * and we return the mouse position in g_xMouse and g_yMouse.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1178 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1179 * Every MOUSE_LEFT, _MIDDLE, or _RIGHT will be followed by zero or more
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1180 * MOUSE_DRAGs and one MOUSE_RELEASE. MOUSE_RELEASE will be followed only
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1181 * by MOUSE_LEFT, _MIDDLE, or _RIGHT.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1182 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1183 * For multiple clicks, we send, say, MOUSE_LEFT/1 click, MOUSE_RELEASE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1184 * MOUSE_LEFT/2 clicks, MOUSE_RELEASE, MOUSE_LEFT/3 clicks, MOUSE_RELEASE, ....
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1185 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1186 * Windows will send us MOUSE_MOVED notifications whenever the mouse
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1187 * moves, even if it stays within the same character cell. We ignore
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1188 * all MOUSE_MOVED messages if the position hasn't really changed, and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1189 * we ignore all MOUSE_MOVED messages where no button is held down (i.e.,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1190 * we're only interested in MOUSE_DRAG).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1191 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1192 * All of this is complicated by the code that fakes MOUSE_MIDDLE on
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1193 * 2-button mouses by pressing the left & right buttons simultaneously.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1194 * In practice, it's almost impossible to click both at the same time,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1195 * 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
1196 * in such cases, if the user is clicking quickly.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1197 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1198 static BOOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1199 decode_mouse_event(
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
1200 MOUSE_EVENT_RECORD *pmer)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1201 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1202 static int s_nOldButton = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1203 static int s_nOldMouseClick = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1204 static int s_xOldMouse = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1205 static int s_yOldMouse = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1206 static linenr_T s_old_topline = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1207 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1208 static int s_old_topfill = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1209 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1210 static int s_cClicks = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1211 static BOOL s_fReleased = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1212 static DWORD s_dwLastClickTime = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1213 static BOOL s_fNextIsMiddle = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1214
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1215 static DWORD cButtons = 0; /* number of buttons supported */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1216
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1217 const DWORD LEFT = FROM_LEFT_1ST_BUTTON_PRESSED;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1218 const DWORD MIDDLE = FROM_LEFT_2ND_BUTTON_PRESSED;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1219 const DWORD RIGHT = RIGHTMOST_BUTTON_PRESSED;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1220 const DWORD LEFT_RIGHT = LEFT | RIGHT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1221
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1222 int nButton;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1223
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1224 if (cButtons == 0 && !GetNumberOfConsoleMouseButtons(&cButtons))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1225 cButtons = 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1226
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1227 if (!g_fMouseAvail || !g_fMouseActive)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1228 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1229 g_nMouseClick = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1230 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1231 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1232
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1233 /* get a spurious MOUSE_EVENT immediately after receiving focus; ignore */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1234 if (g_fJustGotFocus)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1235 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1236 g_fJustGotFocus = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1237 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1238 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1239
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1240 /* unprocessed mouse click? */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1241 if (g_nMouseClick != -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1242 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1243
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1244 nButton = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1245 g_xMouse = pmer->dwMousePosition.X;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1246 g_yMouse = pmer->dwMousePosition.Y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1247
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1248 if (pmer->dwEventFlags == MOUSE_MOVED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1249 {
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
1250 /* Ignore MOUSE_MOVED events if (x, y) hasn't changed. (We get these
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1251 * events even when the mouse moves only within a char cell.) */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1252 if (s_xOldMouse == g_xMouse && s_yOldMouse == g_yMouse)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1253 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1254 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1255
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1256 /* If no buttons are pressed... */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1257 if ((pmer->dwButtonState & ((1 << cButtons) - 1)) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1258 {
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
1259 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
1260
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1261 /* If the last thing returned was MOUSE_RELEASE, ignore this */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1262 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
1263 {
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1264 #ifdef FEAT_BEVAL_TERM
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1265 /* do return mouse move events when we want them */
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1266 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
1267 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
1268 else
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1269 #endif
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1270 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
1271 }
e534e8b21fd7 patch 8.0.1582: in the MS-Windows console mouse movement is not used
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1272
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1273 s_fReleased = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1274 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1275 else /* one or more buttons pressed */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1276 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1277 /* on a 2-button mouse, hold down left and right buttons
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1278 * simultaneously to get MIDDLE. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1279
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1280 if (cButtons == 2 && s_nOldButton != MOUSE_DRAG)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1281 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1282 DWORD dwLR = (pmer->dwButtonState & LEFT_RIGHT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1283
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1284 /* if either left or right button only is pressed, see if the
4352
04736b4030ec updated for version 7.3.925
Bram Moolenaar <bram@vim.org>
parents: 4238
diff changeset
1285 * next mouse event has both of them pressed */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1286 if (dwLR == LEFT || dwLR == RIGHT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1287 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1288 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1289 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1290 /* wait a short time for next input event */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1291 if (WaitForSingleObject(g_hConIn, p_mouset / 3)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1292 != WAIT_OBJECT_0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1293 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1294 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1295 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1296 DWORD cRecords = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1297 INPUT_RECORD ir;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1298 MOUSE_EVENT_RECORD* pmer2 = &ir.Event.MouseEvent;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1299
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
1300 peek_console_input(g_hConIn, &ir, 1, &cRecords);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1301
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1302 if (cRecords == 0 || ir.EventType != MOUSE_EVENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1303 || !(pmer2->dwButtonState & LEFT_RIGHT))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1304 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1305 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1306 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1307 if (pmer2->dwEventFlags != MOUSE_MOVED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1308 {
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
1309 read_console_input(g_hConIn, &ir, 1, &cRecords);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1310
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1311 return decode_mouse_event(pmer2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1312 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1313 else if (s_xOldMouse == pmer2->dwMousePosition.X &&
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1314 s_yOldMouse == pmer2->dwMousePosition.Y)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1315 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1316 /* throw away spurious mouse move */
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
1317 read_console_input(g_hConIn, &ir, 1, &cRecords);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1318
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1319 /* 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
1320 peek_console_input(g_hConIn, &ir, 1, &cRecords);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1321
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1322 if (cRecords==0 || ir.EventType != MOUSE_EVENT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1323 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1324 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1325 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1326 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1327 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1328 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1329 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1330 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1331 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1332
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1333 if (s_fNextIsMiddle)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1334 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1335 nButton = (pmer->dwEventFlags == MOUSE_MOVED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1336 ? MOUSE_DRAG : MOUSE_MIDDLE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1337 s_fNextIsMiddle = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1338 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1339 else if (cButtons == 2 &&
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1340 ((pmer->dwButtonState & LEFT_RIGHT) == LEFT_RIGHT))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1341 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1342 nButton = MOUSE_MIDDLE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1343
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1344 if (! s_fReleased && pmer->dwEventFlags != MOUSE_MOVED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1345 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1346 s_fNextIsMiddle = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1347 nButton = MOUSE_RELEASE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1348 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1349 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1350 else if ((pmer->dwButtonState & LEFT) == LEFT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1351 nButton = MOUSE_LEFT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1352 else if ((pmer->dwButtonState & MIDDLE) == MIDDLE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1353 nButton = MOUSE_MIDDLE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1354 else if ((pmer->dwButtonState & RIGHT) == RIGHT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1355 nButton = MOUSE_RIGHT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1356
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1357 if (! s_fReleased && ! s_fNextIsMiddle
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1358 && nButton != s_nOldButton && s_nOldButton != MOUSE_DRAG)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1359 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1360
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1361 s_fReleased = s_fNextIsMiddle;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1362 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1363
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1364 if (pmer->dwEventFlags == 0 || pmer->dwEventFlags == DOUBLE_CLICK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1365 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1366 /* button pressed or released, without mouse moving */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1367 if (nButton != -1 && nButton != MOUSE_RELEASE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1368 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1369 DWORD dwCurrentTime = GetTickCount();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1370
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1371 if (s_xOldMouse != g_xMouse
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1372 || s_yOldMouse != g_yMouse
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1373 || s_nOldButton != nButton
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1374 || s_old_topline != curwin->w_topline
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1375 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1376 || s_old_topfill != curwin->w_topfill
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1377 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1378 || (int)(dwCurrentTime - s_dwLastClickTime) > p_mouset)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1379 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1380 s_cClicks = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1381 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1382 else if (++s_cClicks > 4)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1383 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1384 s_cClicks = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1385 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1386
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1387 s_dwLastClickTime = dwCurrentTime;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1388 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1389 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1390 else if (pmer->dwEventFlags == MOUSE_MOVED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1391 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1392 if (nButton != -1 && nButton != MOUSE_RELEASE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1393 nButton = MOUSE_DRAG;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1394
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1395 s_cClicks = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1396 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1397
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1398 if (nButton == -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1399 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1400
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1401 if (nButton != MOUSE_RELEASE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1402 s_nOldButton = nButton;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1403
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1404 g_nMouseClick = nButton;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1405
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1406 if (pmer->dwControlKeyState & SHIFT_PRESSED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1407 g_nMouseClick |= MOUSE_SHIFT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1408 if (pmer->dwControlKeyState & (RIGHT_CTRL_PRESSED | LEFT_CTRL_PRESSED))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1409 g_nMouseClick |= MOUSE_CTRL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1410 if (pmer->dwControlKeyState & (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1411 g_nMouseClick |= MOUSE_ALT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1412
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1413 if (nButton != MOUSE_DRAG && nButton != MOUSE_RELEASE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1414 SET_NUM_MOUSE_CLICKS(g_nMouseClick, s_cClicks);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1415
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1416 /* only pass on interesting (i.e., different) mouse events */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1417 if (s_xOldMouse == g_xMouse
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1418 && s_yOldMouse == g_yMouse
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1419 && s_nOldMouseClick == g_nMouseClick)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1420 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1421 g_nMouseClick = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1422 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1423 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1424
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1425 s_xOldMouse = g_xMouse;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1426 s_yOldMouse = g_yMouse;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1427 s_old_topline = curwin->w_topline;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1428 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1429 s_old_topfill = curwin->w_topfill;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1430 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1431 s_nOldMouseClick = g_nMouseClick;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1432
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1433 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1434 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1435
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1436 # endif /* FEAT_GUI_W32 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1437 #endif /* FEAT_MOUSE */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1438
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1439
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1440 #ifdef MCH_CURSOR_SHAPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1441 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1442 * Set the shape of the cursor.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1443 * 'thickness' can be from 1 (thin) to 99 (block)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1444 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1445 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1446 mch_set_cursor_shape(int thickness)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1447 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1448 CONSOLE_CURSOR_INFO ConsoleCursorInfo;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1449 ConsoleCursorInfo.dwSize = thickness;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1450 ConsoleCursorInfo.bVisible = s_cursor_visible;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1451
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1452 SetConsoleCursorInfo(g_hConOut, &ConsoleCursorInfo);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1453 if (s_cursor_visible)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1454 SetConsoleCursorPosition(g_hConOut, g_coord);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1455 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1456
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1457 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1458 mch_update_cursor(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1459 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1460 int idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1461 int thickness;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1462
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1463 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1464 * How the cursor is drawn depends on the current mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1465 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1466 idx = get_shape_idx(FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1467
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1468 if (shape_table[idx].shape == SHAPE_BLOCK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1469 thickness = 99; /* 100 doesn't work on W95 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1470 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1471 thickness = shape_table[idx].percentage;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1472 mch_set_cursor_shape(thickness);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1473 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1474 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1475
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1476 #ifndef FEAT_GUI_W32 /* this isn't used for the GUI */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1477 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1478 * Handle FOCUS_EVENT.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1479 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1480 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1481 handle_focus_event(INPUT_RECORD ir)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1482 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1483 g_fJustGotFocus = ir.Event.FocusEvent.bSetFocus;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1484 ui_focus_change((int)g_fJustGotFocus);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1485 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1486
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1487 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1488 * Wait until console input from keyboard or mouse is available,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1489 * 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
1490 * When "ignore_input" is TRUE even wait when input is available.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1491 * Return TRUE if something is available FALSE if not.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1492 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1493 static int
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
1494 WaitForChar(long msec, int ignore_input)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1495 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1496 DWORD dwNow = 0, dwEndTime = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1497 INPUT_RECORD ir;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1498 DWORD cRecords;
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1499 WCHAR ch, ch2;
8949
c44ab784f5e5 commit https://github.com/vim/vim/commit/4445f7ee708f1a1304526a5979c9dd9883a92a0a
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
1500 #ifdef FEAT_TIMERS
8947
c07caeb90a35 commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents: 8589
diff changeset
1501 int tb_change_cnt = typebuf.tb_change_cnt;
8949
c44ab784f5e5 commit https://github.com/vim/vim/commit/4445f7ee708f1a1304526a5979c9dd9883a92a0a
Christian Brabandt <cb@256bit.org>
parents: 8947
diff changeset
1502 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1503
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1504 if (msec > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1505 /* Wait until the specified time has elapsed. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1506 dwEndTime = GetTickCount() + msec;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1507 else if (msec < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1508 /* Wait forever. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1509 dwEndTime = INFINITE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1510
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1511 /* We need to loop until the end of the time period, because
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1512 * we might get multiple unusable mouse events in that time.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1513 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1514 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1515 {
14673
f1b7d308de2f patch 8.1.0349: crash when wiping buffer in a callback
Christian Brabandt <cb@256bit.org>
parents: 14650
diff changeset
1516 // 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
1517 if (msec != 0)
f1b7d308de2f patch 8.1.0349: crash when wiping buffer in a callback
Christian Brabandt <cb@256bit.org>
parents: 14650
diff changeset
1518 {
7866
30a9f5fc3508 commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents: 7833
diff changeset
1519 #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
1520 parse_queued_messages();
7866
30a9f5fc3508 commit https://github.com/vim/vim/commit/ca568aeec60dd6cc13b4dcf5cec0e0a07113547f
Christian Brabandt <cb@256bit.org>
parents: 7833
diff changeset
1521 #endif
14
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
1522 #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
1523 mzvim_check_threads();
14
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
1524 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1525 #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
1526 serverProcessPendingMessages();
f1b7d308de2f patch 8.1.0349: crash when wiping buffer in a callback
Christian Brabandt <cb@256bit.org>
parents: 14650
diff changeset
1527 #endif
f1b7d308de2f patch 8.1.0349: crash when wiping buffer in a callback
Christian Brabandt <cb@256bit.org>
parents: 14650
diff changeset
1528 }
7797
0d46cea25641 commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents: 7784
diff changeset
1529
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1530 if (0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1531 #ifdef FEAT_MOUSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1532 || g_nMouseClick != -1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1533 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1534 #ifdef FEAT_CLIENTSERVER
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
1535 || (!ignore_input && input_available())
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1536 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1537 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1538 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1539
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1540 if (msec > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1541 {
5292
d5d6b78cff09 updated for version 7.4b.022
Bram Moolenaar <bram@vim.org>
parents: 5229
diff changeset
1542 /* If the specified wait time has passed, return. Beware that
d5d6b78cff09 updated for version 7.4b.022
Bram Moolenaar <bram@vim.org>
parents: 5229
diff changeset
1543 * GetTickCount() may wrap around (overflow). */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1544 dwNow = GetTickCount();
5292
d5d6b78cff09 updated for version 7.4b.022
Bram Moolenaar <bram@vim.org>
parents: 5229
diff changeset
1545 if ((int)(dwNow - dwEndTime) >= 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1546 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1547 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1548 if (msec != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1549 {
14
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
1550 DWORD dwWaitTime = dwEndTime - dwNow;
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
1551
8493
caed4b2d305f commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents: 8491
diff changeset
1552 #ifdef FEAT_JOB_CHANNEL
10418
56cb9538386c commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents: 10406
diff changeset
1553 /* Check channel while waiting for input. */
8222
4f0677020a43 commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents: 8176
diff changeset
1554 if (dwWaitTime > 100)
10418
56cb9538386c commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents: 10406
diff changeset
1555 {
8222
4f0677020a43 commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents: 8176
diff changeset
1556 dwWaitTime = 100;
10418
56cb9538386c commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents: 10406
diff changeset
1557 /* If there is readahead then parse_queued_messages() timed out
56cb9538386c commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents: 10406
diff changeset
1558 * and we should call it again soon. */
56cb9538386c commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents: 10406
diff changeset
1559 if (channel_any_readahead())
56cb9538386c commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents: 10406
diff changeset
1560 dwWaitTime = 10;
56cb9538386c commit https://github.com/vim/vim/commit/8a8199e4a1814b10630a770165502abb1121cd1b
Christian Brabandt <cb@256bit.org>
parents: 10406
diff changeset
1561 }
8222
4f0677020a43 commit https://github.com/vim/vim/commit/9186a276222ea8a7c88f4092ac5b4201381f4e20
Christian Brabandt <cb@256bit.org>
parents: 8176
diff changeset
1562 #endif
12871
1a450ce6980c patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents: 12724
diff changeset
1563 #ifdef FEAT_BEVAL_GUI
11014
fb2bcfa6a8de patch 8.0.0396: 'balloonexpr' only works synchronously
Christian Brabandt <cb@256bit.org>
parents: 10835
diff changeset
1564 if (p_beval && dwWaitTime > 100)
fb2bcfa6a8de patch 8.0.0396: 'balloonexpr' only works synchronously
Christian Brabandt <cb@256bit.org>
parents: 10835
diff changeset
1565 /* The 'balloonexpr' may indirectly invoke a callback while
fb2bcfa6a8de patch 8.0.0396: 'balloonexpr' only works synchronously
Christian Brabandt <cb@256bit.org>
parents: 10835
diff changeset
1566 * waiting for a character, need to check often. */
fb2bcfa6a8de patch 8.0.0396: 'balloonexpr' only works synchronously
Christian Brabandt <cb@256bit.org>
parents: 10835
diff changeset
1567 dwWaitTime = 100;
fb2bcfa6a8de patch 8.0.0396: 'balloonexpr' only works synchronously
Christian Brabandt <cb@256bit.org>
parents: 10835
diff changeset
1568 #endif
14
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
1569 #ifdef FEAT_MZSCHEME
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
1570 if (mzthreads_allowed() && p_mzq > 0
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
1571 && (msec < 0 || (long)dwWaitTime > p_mzq))
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
1572 dwWaitTime = p_mzq; /* don't wait longer than 'mzquantum' */
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
1573 #endif
8589
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1574 #ifdef FEAT_TIMERS
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1575 {
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1576 long due_time;
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1577
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1578 /* When waiting very briefly don't trigger timers. */
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1579 if (dwWaitTime > 10)
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1580 {
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1581 /* Trigger timers and then get the time in msec until the
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1582 * next one is due. Wait up to that time. */
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1583 due_time = check_due_timer();
8947
c07caeb90a35 commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents: 8589
diff changeset
1584 if (typebuf.tb_change_cnt != tb_change_cnt)
c07caeb90a35 commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents: 8589
diff changeset
1585 {
c07caeb90a35 commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents: 8589
diff changeset
1586 /* timer may have used feedkeys() */
c07caeb90a35 commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents: 8589
diff changeset
1587 return FALSE;
c07caeb90a35 commit https://github.com/vim/vim/commit/40b1b5443c88fab77f1f7c6f9e801f7ffdb7e0a8
Christian Brabandt <cb@256bit.org>
parents: 8589
diff changeset
1588 }
8589
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1589 if (due_time > 0 && dwWaitTime > (DWORD)due_time)
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1590 dwWaitTime = due_time;
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1591 }
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1592 }
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1593 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1594 #ifdef FEAT_CLIENTSERVER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1595 /* Wait for either an event on the console input or a message in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1596 * the client-server window. */
6981
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
1597 if (msg_wait_for_multiple_objects(1, &g_hConIn, FALSE,
14
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
1598 dwWaitTime, QS_SENDMESSAGE) != WAIT_OBJECT_0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1599 #else
6981
f77d1f32c357 patch 7.4.808
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
1600 if (wait_for_single_object(g_hConIn, dwWaitTime) != WAIT_OBJECT_0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1601 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1602 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1603 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1604
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1605 cRecords = 0;
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
1606 peek_console_input(g_hConIn, &ir, 1, &cRecords);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1607
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1608 #ifdef FEAT_MBYTE_IME
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1609 if (State & CMDLINE && msg_row == Rows - 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1610 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1611 CONSOLE_SCREEN_BUFFER_INFO csbi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1612
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1613 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1614 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1615 if (csbi.dwCursorPosition.Y != msg_row)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1616 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1617 /* The screen is now messed up, must redraw the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1618 * command line and later all the windows. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1619 redraw_all_later(CLEAR);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1620 cmdline_row -= (msg_row - csbi.dwCursorPosition.Y);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1621 redrawcmd();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1622 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1623 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1624 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1625 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1626
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1627 if (cRecords > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1628 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1629 if (ir.EventType == KEY_EVENT && ir.Event.KeyEvent.bKeyDown)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1630 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1631 #ifdef FEAT_MBYTE_IME
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1632 /* Windows IME sends two '\n's with only one 'ENTER'. First:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1633 * wVirtualKeyCode == 13. second: wVirtualKeyCode == 0 */
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1634 if (ir.Event.KeyEvent.UChar == 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1635 && ir.Event.KeyEvent.wVirtualKeyCode == 13)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1636 {
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
1637 read_console_input(g_hConIn, &ir, 1, &cRecords);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1638 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1639 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1640 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1641 if (decode_key_event(&ir.Event.KeyEvent, &ch, &ch2,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1642 NULL, FALSE))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1643 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1644 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1645
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
1646 read_console_input(g_hConIn, &ir, 1, &cRecords);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1647
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1648 if (ir.EventType == FOCUS_EVENT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1649 handle_focus_event(ir);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1650 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
1651 {
ee1a1276a759 patch 8.0.1504: Win32: the screen may be cleared on startup
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
1652 /* Only call shell_resized() when the size actually change to
ee1a1276a759 patch 8.0.1504: Win32: the screen may be cleared on startup
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
1653 * avoid the screen is cleard. */
ee1a1276a759 patch 8.0.1504: Win32: the screen may be cleared on startup
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
1654 if (ir.Event.WindowBufferSizeEvent.dwSize.X != Columns
ee1a1276a759 patch 8.0.1504: Win32: the screen may be cleared on startup
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
1655 || ir.Event.WindowBufferSizeEvent.dwSize.Y != Rows)
ee1a1276a759 patch 8.0.1504: Win32: the screen may be cleared on startup
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
1656 shell_resized();
ee1a1276a759 patch 8.0.1504: Win32: the screen may be cleared on startup
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
1657 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1658 #ifdef FEAT_MOUSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1659 else if (ir.EventType == MOUSE_EVENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1660 && decode_mouse_event(&ir.Event.MouseEvent))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1661 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1662 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1663 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1664 else if (msec == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1665 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1666 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1667
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1668 #ifdef FEAT_CLIENTSERVER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1669 /* Something might have been received while we were waiting. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1670 if (input_available())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1671 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1672 #endif
7797
0d46cea25641 commit https://github.com/vim/vim/commit/f12d983deab06b0408781d7a6c2f8970d765b723
Christian Brabandt <cb@256bit.org>
parents: 7784
diff changeset
1673
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1674 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1675 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1676
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1677 #ifndef FEAT_GUI_MSWIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1678 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1679 * return non-zero if a character is available
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1680 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1681 int
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
1682 mch_char_avail(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1683 {
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
1684 return WaitForChar(0L, FALSE);
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
1685 }
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
1686
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
1687 # 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
1688 /*
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
1689 * 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
1690 */
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
1691 int
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
1692 mch_check_messages(void)
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
1693 {
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
1694 return WaitForChar(0L, TRUE);
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
1695 }
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
1696 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1697 #endif
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 * Create the console input. Used when reading stdin doesn't work.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1701 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1702 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1703 create_conin(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1704 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1705 g_hConIn = CreateFile("CONIN$", GENERIC_READ|GENERIC_WRITE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1706 FILE_SHARE_READ|FILE_SHARE_WRITE,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1707 (LPSECURITY_ATTRIBUTES) NULL,
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 835
diff changeset
1708 OPEN_EXISTING, 0, (HANDLE)NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1709 did_create_conin = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1710 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1711
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1712 /*
8589
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
1713 * Get a keystroke or a mouse event, use a blocking wait.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1714 */
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1715 static WCHAR
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1716 tgetch(int *pmodifiers, WCHAR *pch2)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1717 {
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1718 WCHAR ch;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1719
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1720 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1721 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1722 INPUT_RECORD ir;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1723 DWORD cRecords = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1724
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1725 #ifdef FEAT_CLIENTSERVER
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
1726 (void)WaitForChar(-1L, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1727 if (input_available())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1728 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1729 # ifdef FEAT_MOUSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1730 if (g_nMouseClick != -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1731 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1732 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1733 #endif
5580
6fdb1d6646b6 updated for version 7.4.137
Bram Moolenaar <bram@vim.org>
parents: 5578
diff changeset
1734 if (read_console_input(g_hConIn, &ir, 1, &cRecords) == 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1735 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1736 if (did_create_conin)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1737 read_error_exit();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1738 create_conin();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1739 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1740 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1741
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1742 if (ir.EventType == KEY_EVENT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1743 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1744 if (decode_key_event(&ir.Event.KeyEvent, &ch, pch2,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1745 pmodifiers, TRUE))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1746 return ch;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1747 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1748 else if (ir.EventType == FOCUS_EVENT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1749 handle_focus_event(ir);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1750 else if (ir.EventType == WINDOW_BUFFER_SIZE_EVENT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1751 shell_resized();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1752 #ifdef FEAT_MOUSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1753 else if (ir.EventType == MOUSE_EVENT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1754 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1755 if (decode_mouse_event(&ir.Event.MouseEvent))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1756 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1757 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1758 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1759 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1760 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1761 #endif /* !FEAT_GUI_W32 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1762
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1763
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1764 /*
3622
43fd3896fab7 updated for version 7.3.571
Bram Moolenaar <bram@vim.org>
parents: 3386
diff changeset
1765 * mch_inchar(): low-level input function.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1766 * Get one or more characters from the keyboard or the mouse.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1767 * If time == 0, do not wait for characters.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1768 * If time == n, wait a short time for characters.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1769 * If time == -1, wait forever for characters.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1770 * Returns the number of characters read into buf.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1771 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1772 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1773 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
1774 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
1775 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
1776 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
1777 int tb_change_cnt UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1778 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1779 #ifndef FEAT_GUI_W32 /* this isn't used for the GUI */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1780
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1781 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1782 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1783 #define TYPEAHEADLEN 20
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1784 static char_u typeahead[TYPEAHEADLEN]; /* previously typed bytes. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1785 static int typeaheadlen = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1786
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1787 /* First use any typeahead that was kept because "buf" was too small. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1788 if (typeaheadlen > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1789 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1790
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1791 if (time >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1792 {
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
1793 if (!WaitForChar(time, FALSE)) /* no character available */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1794 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1795 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1796 else /* time == -1, wait forever */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1797 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1798 mch_set_winsize_now(); /* Allow winsize changes from now on */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1799
203
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
1800 /*
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
1801 * If there is no character available within 2 seconds (default)
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
1802 * write the autoscript file to disk. Or cause the CursorHold event
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
1803 * to be triggered.
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
1804 */
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
1805 if (!WaitForChar(p_ut, FALSE))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1806 {
609
ba54311bc43e updated for version 7.0173
vimboss
parents: 474
diff changeset
1807 if (trigger_cursorhold() && maxlen >= 3)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1808 {
203
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
1809 buf[0] = K_SPECIAL;
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
1810 buf[1] = KS_EXTRA;
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
1811 buf[2] = (int)KE_CURSORHOLD;
80000fb16feb updated for version 7.0060
vimboss
parents: 41
diff changeset
1812 return 3;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1813 }
368
a7d1d61e5417 updated for version 7.0095
vimboss
parents: 344
diff changeset
1814 before_blocking();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1815 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1816 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1817
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1818 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1819 * Try to read as many characters as there are, until the buffer is full.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1820 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1821
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1822 /* we will get at least one key. Get more if they are available. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1823 g_fCBrkPressed = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1824
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1825 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1826 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1827 fputc('[', fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1828 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1829
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1830 /* Keep looping until there is something in the typeahead buffer and more
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1831 * to get and still room in the buffer (up to two bytes for a char and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1832 * 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
1833 while ((typeaheadlen == 0 || WaitForChar(0L, FALSE))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1834 && typeaheadlen + 5 <= TYPEAHEADLEN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1835 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1836 if (typebuf_changed(tb_change_cnt))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1837 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1838 /* "buf" may be invalid now if a client put something in the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1839 * typeahead buffer and "buf" is in the typeahead buffer. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1840 typeaheadlen = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1841 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1842 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1843 #ifdef FEAT_MOUSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1844 if (g_nMouseClick != -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1845 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1846 # ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1847 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1848 fprintf(fdDump, "{%02x @ %d, %d}",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1849 g_nMouseClick, g_xMouse, g_yMouse);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1850 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1851 typeahead[typeaheadlen++] = ESC + 128;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1852 typeahead[typeaheadlen++] = 'M';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1853 typeahead[typeaheadlen++] = g_nMouseClick;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1854 typeahead[typeaheadlen++] = g_xMouse + '!';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1855 typeahead[typeaheadlen++] = g_yMouse + '!';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1856 g_nMouseClick = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1857 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1858 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1859 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1860 {
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1861 WCHAR ch2 = NUL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1862 int modifiers = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1863
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1864 c = tgetch(&modifiers, &ch2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1865
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1866 if (typebuf_changed(tb_change_cnt))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1867 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1868 /* "buf" may be invalid now if a client put something in the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1869 * typeahead buffer and "buf" is in the typeahead buffer. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1870 typeaheadlen = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1871 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1872 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1873
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1874 if (c == Ctrl_C && ctrl_c_interrupts)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1875 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1876 #if defined(FEAT_CLIENTSERVER)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1877 trash_input_buf();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1878 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1879 got_int = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1880 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1881
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1882 #ifdef FEAT_MOUSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1883 if (g_nMouseClick == -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1884 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1885 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1886 int n = 1;
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 5782
diff changeset
1887
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1888 #ifdef FEAT_MBYTE
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1889 if (ch2 == NUL)
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1890 {
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1891 int i;
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1892 char_u *p;
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1893 WCHAR ch[2];
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1894
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1895 ch[0] = c;
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1896 if (c >= 0xD800 && c <= 0xDBFF) /* High surrogate */
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1897 {
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1898 ch[1] = tgetch(&modifiers, &ch2);
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1899 n++;
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1900 }
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1901 p = utf16_to_enc(ch, &n);
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1902 if (p != NULL)
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1903 {
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1904 for (i = 0; i < n; i++)
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1905 typeahead[typeaheadlen + i] = p[i];
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1906 vim_free(p);
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1907 }
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1908 }
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1909 else
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1910 #endif
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
1911 typeahead[typeaheadlen] = c;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1912 if (ch2 != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1913 {
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
1914 if (c == K_NUL && (ch2 & 0xff00) != 0)
ec86ba548446 patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 12958
diff changeset
1915 {
ec86ba548446 patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 12958
diff changeset
1916 /* fAnsiKey with modifier keys */
ec86ba548446 patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 12958
diff changeset
1917 typeahead[typeaheadlen + n] = (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
1918 n++;
ec86ba548446 patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 12958
diff changeset
1919 }
ec86ba548446 patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 12958
diff changeset
1920 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
1921 {
ec86ba548446 patch 8.0.1371: Shift-Insert doesn't always work in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 12958
diff changeset
1922 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
1923 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
1924 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
1925 }
6047
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 5782
diff changeset
1926 }
ff3816167b73 updated for version 7.4.363
Bram Moolenaar <bram@vim.org>
parents: 5782
diff changeset
1927
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1928 /* Use the ALT key to set the 8th bit of the character
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1929 * when it's one byte, the 8th bit isn't set yet and not
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1930 * using a double-byte encoding (would become a lead
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1931 * byte). */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1932 if ((modifiers & MOD_MASK_ALT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1933 && n == 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1934 && (typeahead[typeaheadlen] & 0x80) == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1935 #ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1936 && !enc_dbcs
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1937 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1938 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1939 {
1443
69bcc0c891d7 updated for version 7.1-158
vimboss
parents: 1414
diff changeset
1940 #ifdef FEAT_MBYTE
69bcc0c891d7 updated for version 7.1-158
vimboss
parents: 1414
diff changeset
1941 n = (*mb_char2bytes)(typeahead[typeaheadlen] | 0x80,
69bcc0c891d7 updated for version 7.1-158
vimboss
parents: 1414
diff changeset
1942 typeahead + typeaheadlen);
69bcc0c891d7 updated for version 7.1-158
vimboss
parents: 1414
diff changeset
1943 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1944 typeahead[typeaheadlen] |= 0x80;
1443
69bcc0c891d7 updated for version 7.1-158
vimboss
parents: 1414
diff changeset
1945 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1946 modifiers &= ~MOD_MASK_ALT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1947 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1948
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1949 if (modifiers != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1950 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1951 /* Prepend modifiers to the character. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1952 mch_memmove(typeahead + typeaheadlen + 3,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1953 typeahead + typeaheadlen, n);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1954 typeahead[typeaheadlen++] = K_SPECIAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1955 typeahead[typeaheadlen++] = (char_u)KS_MODIFIER;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1956 typeahead[typeaheadlen++] = modifiers;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1957 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1958
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1959 typeaheadlen += n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1960
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1961 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1962 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1963 fputc(c, fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1964 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1965 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1966 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1967 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1968
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1969 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1970 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1971 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1972 fputs("]\n", fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1973 fflush(fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1974 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1975 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1976
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1977 theend:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1978 /* Move typeahead to "buf", as much as fits. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1979 len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1980 while (len < maxlen && typeaheadlen > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1981 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1982 buf[len++] = typeahead[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1983 mch_memmove(typeahead, typeahead + 1, --typeaheadlen);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1984 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1985 return len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1986
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1987 #else /* FEAT_GUI_W32 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1988 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1989 #endif /* FEAT_GUI_W32 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1990 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1991
3927
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
1992 #ifndef PROTO
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
1993 # ifndef __MINGW32__
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
1994 # include <shellapi.h> /* required for FindExecutable() */
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 3902
diff changeset
1995 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1996 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1997
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
1998 /*
11054
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
1999 * If "use_path" is TRUE: Return TRUE if "name" is in $PATH.
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2000 * If "use_path" is FALSE: Return TRUE if "name" exists.
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2001 * 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
2002 * the allocated memory.
10
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
2003 * TODO: Should somehow check if it's really executable.
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2004 */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2005 static int
11054
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2006 executable_exists(char *name, char_u **path, int use_path)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2007 {
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2008 char *dum;
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2009 char fname[_MAX_PATH];
6185
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2010 char *curpath, *newpath;
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2011 long n;
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2012
11054
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2013 if (!use_path)
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2014 {
11071
cc22b177dfe8 patch 8.0.0424: compiler warnings on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11060
diff changeset
2015 if (mch_getperm((char_u *)name) != -1 && !mch_isdir((char_u *)name))
11054
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2016 {
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2017 if (path != NULL)
11060
354593196e20 patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11054
diff changeset
2018 {
11071
cc22b177dfe8 patch 8.0.0424: compiler warnings on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11060
diff changeset
2019 if (mch_isFullName((char_u *)name))
11060
354593196e20 patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11054
diff changeset
2020 *path = vim_strsave((char_u *)name);
354593196e20 patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11054
diff changeset
2021 else
354593196e20 patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11054
diff changeset
2022 *path = FullName_save((char_u *)name, FALSE);
354593196e20 patch 8.0.0419: test for v:progpath fails on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 11054
diff changeset
2023 }
11054
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2024 return TRUE;
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2025 }
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2026 return FALSE;
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2027 }
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2028
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2029 #ifdef FEAT_MBYTE
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2030 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2031 {
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
2032 WCHAR *p = enc_to_utf16((char_u *)name, NULL);
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2033 WCHAR fnamew[_MAX_PATH];
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2034 WCHAR *dumw;
6185
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2035 WCHAR *wcurpath, *wnewpath;
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2036
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2037 if (p != NULL)
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2038 {
6185
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2039 wcurpath = _wgetenv(L"PATH");
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2040 wnewpath = (WCHAR*)alloc((unsigned)(wcslen(wcurpath) + 3)
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2041 * sizeof(WCHAR));
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2042 if (wnewpath == NULL)
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2043 return FALSE;
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2044 wcscpy(wnewpath, L".;");
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2045 wcscat(wnewpath, wcurpath);
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2046 n = (long)SearchPathW(wnewpath, p, NULL, _MAX_PATH, fnamew, &dumw);
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2047 vim_free(wnewpath);
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2048 vim_free(p);
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
2049 if (n == 0)
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
2050 return FALSE;
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
2051 if (GetFileAttributesW(fnamew) & FILE_ATTRIBUTE_DIRECTORY)
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
2052 return FALSE;
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
2053 if (path != NULL)
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
2054 *path = utf16_to_enc(fnamew, NULL);
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
2055 return TRUE;
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2056 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2057 }
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2058 #endif
6185
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2059
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2060 curpath = getenv("PATH");
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2061 newpath = (char*)alloc((unsigned)(STRLEN(curpath) + 3));
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2062 if (newpath == NULL)
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2063 return FALSE;
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2064 STRCPY(newpath, ".;");
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2065 STRCAT(newpath, curpath);
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2066 n = (long)SearchPath(newpath, name, NULL, _MAX_PATH, fname, &dum);
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2067 vim_free(newpath);
1fe61f6d5207 updated for version 7.4.428
Bram Moolenaar <bram@vim.org>
parents: 6047
diff changeset
2068 if (n == 0)
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2069 return FALSE;
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
2070 if (mch_isdir((char_u *)fname))
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2071 return FALSE;
5782
5ab2946f7ce5 updated for version 7.4.235
Bram Moolenaar <bram@vim.org>
parents: 5657
diff changeset
2072 if (path != NULL)
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
2073 *path = vim_strsave((char_u *)fname);
9
4102fb4ea781 updated for version 7.0002
vimboss
parents: 7
diff changeset
2074 return TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2075 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2076
2584
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2077 #if ((defined(__MINGW32__) || defined (__CYGWIN32__)) && \
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
2078 __MSVCRT_VERSION__ >= 0x800) || (defined(_MSC_VER) && _MSC_VER >= 1400)
2584
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2079 /*
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2080 * Bad parameter handler.
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2081 *
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2082 * 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
2083 * 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
2084 * the bad parameter handler will prevent the crash.
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2085 *
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2086 * 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
2087 * 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
2088 * 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
2089 * 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
2090 */
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2091 static void
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2092 bad_param_handler(const wchar_t *expression,
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2093 const wchar_t *function,
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2094 const wchar_t *file,
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2095 unsigned int line,
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2096 uintptr_t pReserved)
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2097 {
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2098 }
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2099
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2100 # define SET_INVALID_PARAM_HANDLER \
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2101 ((void)_set_invalid_parameter_handler(bad_param_handler))
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2102 #else
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2103 # define SET_INVALID_PARAM_HANDLER
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2104 #endif
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2105
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2106 #ifdef FEAT_GUI_W32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2107
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2108 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2109 * GUI version of mch_init().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2110 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2111 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2112 mch_init(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2113 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2114 #ifndef __MINGW32__
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2115 extern int _fmode;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2116 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2117
2584
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2118 /* Silently handle invalid parameters to CRT functions */
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2119 SET_INVALID_PARAM_HANDLER;
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2120
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2121 /* Let critical errors result in a failure, not in a dialog box. Required
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2122 * for the timestamp test to work on removed floppies. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2123 SetErrorMode(SEM_FAILCRITICALERRORS);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2124
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2125 _fmode = O_BINARY; /* we do our own CR-LF translation */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2126
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2127 /* Specify window size. Is there a place to get the default from? */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2128 Rows = 25;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2129 Columns = 80;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2130
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2131 /* Look for 'vimrun' */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2132 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2133 char_u vimrun_location[_MAX_PATH + 4];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2134
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2135 /* First try in same directory as gvim.exe */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2136 STRCPY(vimrun_location, exe_name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2137 STRCPY(gettail(vimrun_location), "vimrun.exe");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2138 if (mch_getperm(vimrun_location) >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2139 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2140 if (*skiptowhite(vimrun_location) != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2141 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2142 /* Enclose path with white space in double quotes. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2143 mch_memmove(vimrun_location + 1, vimrun_location,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2144 STRLEN(vimrun_location) + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2145 *vimrun_location = '"';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2146 STRCPY(gettail(vimrun_location), "vimrun\" ");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2147 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2148 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2149 STRCPY(gettail(vimrun_location), "vimrun ");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2150
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2151 vimrun_path = (char *)vim_strsave(vimrun_location);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2152 s_dont_use_vimrun = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2153 }
11054
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2154 else if (executable_exists("vimrun.exe", NULL, TRUE))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2155 s_dont_use_vimrun = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2156
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2157 /* Don't give the warning for a missing vimrun.exe right now, but only
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2158 * when vimrun was supposed to be used. Don't bother people that do
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2159 * not need vimrun.exe. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2160 if (s_dont_use_vimrun)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2161 need_vimrun_warning = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2162 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2163
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2164 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2165 * If "finstr.exe" doesn't exist, use "grep -n" for 'grepprg'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2166 * Otherwise the default "findstr /n" is used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2167 */
11054
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
2168 if (!executable_exists("findstr.exe", NULL, TRUE))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2169 set_option_value((char_u *)"grepprg", 0, (char_u *)"grep -n", 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2170
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2171 #ifdef FEAT_CLIPBOARD
4168
ff193256398a updated for version 7.3.836
Bram Moolenaar <bram@vim.org>
parents: 4122
diff changeset
2172 win_clip_init();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2173 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2174 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2175
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2176
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2177 #else /* FEAT_GUI_W32 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2178
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2179 #define SRWIDTH(sr) ((sr).Right - (sr).Left + 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2180 #define SRHEIGHT(sr) ((sr).Bottom - (sr).Top + 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2181
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2182 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2183 * ClearConsoleBuffer()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2184 * Description:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2185 * Clears the entire contents of the console screen buffer, using the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2186 * specified attribute.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2187 * Returns:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2188 * TRUE on success
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2189 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2190 static BOOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2191 ClearConsoleBuffer(WORD wAttribute)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2192 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2193 CONSOLE_SCREEN_BUFFER_INFO csbi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2194 COORD coord;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2195 DWORD NumCells, dummy;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2196
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2197 if (!GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2198 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2199
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2200 NumCells = csbi.dwSize.X * csbi.dwSize.Y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2201 coord.X = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2202 coord.Y = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2203 if (!FillConsoleOutputCharacter(g_hConOut, ' ', NumCells,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2204 coord, &dummy))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2205 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2206 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2207 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2208 if (!FillConsoleOutputAttribute(g_hConOut, wAttribute, NumCells,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2209 coord, &dummy))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2210 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2211 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2212 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2213
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2214 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2215 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2216
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2217 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2218 * FitConsoleWindow()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2219 * Description:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2220 * Checks if the console window will fit within given buffer dimensions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2221 * Also, if requested, will shrink the window to fit.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2222 * Returns:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2223 * TRUE on success
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2224 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2225 static BOOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2226 FitConsoleWindow(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2227 COORD dwBufferSize,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2228 BOOL WantAdjust)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2229 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2230 CONSOLE_SCREEN_BUFFER_INFO csbi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2231 COORD dwWindowSize;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2232 BOOL NeedAdjust = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2233
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2234 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2235 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2236 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2237 * A buffer resize will fail if the current console window does
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2238 * not lie completely within that buffer. To avoid this, we might
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2239 * have to move and possibly shrink the window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2240 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2241 if (csbi.srWindow.Right >= dwBufferSize.X)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2242 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2243 dwWindowSize.X = SRWIDTH(csbi.srWindow);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2244 if (dwWindowSize.X > dwBufferSize.X)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2245 dwWindowSize.X = dwBufferSize.X;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2246 csbi.srWindow.Right = dwBufferSize.X - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2247 csbi.srWindow.Left = dwBufferSize.X - dwWindowSize.X;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2248 NeedAdjust = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2249 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2250 if (csbi.srWindow.Bottom >= dwBufferSize.Y)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2251 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2252 dwWindowSize.Y = SRHEIGHT(csbi.srWindow);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2253 if (dwWindowSize.Y > dwBufferSize.Y)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2254 dwWindowSize.Y = dwBufferSize.Y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2255 csbi.srWindow.Bottom = dwBufferSize.Y - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2256 csbi.srWindow.Top = dwBufferSize.Y - dwWindowSize.Y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2257 NeedAdjust = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2258 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2259 if (NeedAdjust && WantAdjust)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2260 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2261 if (!SetConsoleWindowInfo(g_hConOut, TRUE, &csbi.srWindow))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2262 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2263 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2264 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2265 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2266
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2267 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2268 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2269
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2270 typedef struct ConsoleBufferStruct
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2271 {
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2272 BOOL IsValid;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2273 CONSOLE_SCREEN_BUFFER_INFO Info;
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2274 PCHAR_INFO Buffer;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2275 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
2276 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
2277 int NumRegions;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2278 } ConsoleBuffer;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2279
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2280 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2281 * SaveConsoleBuffer()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2282 * Description:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2283 * Saves important information about the console buffer, including the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2284 * actual buffer contents. The saved information is suitable for later
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2285 * restoration by RestoreConsoleBuffer().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2286 * Returns:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2287 * TRUE if all information was saved; FALSE otherwise
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2288 * If FALSE, still sets cb->IsValid if buffer characteristics were saved.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2289 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2290 static BOOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2291 SaveConsoleBuffer(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2292 ConsoleBuffer *cb)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2293 {
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2294 DWORD NumCells;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2295 COORD BufferCoord;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2296 SMALL_RECT ReadRegion;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2297 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
2298 int i, numregions;
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2299
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2300 if (cb == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2301 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2302
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2303 if (!GetConsoleScreenBufferInfo(g_hConOut, &cb->Info))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2304 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2305 cb->IsValid = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2306 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2307 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2308 cb->IsValid = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2309
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2310 /*
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2311 * 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
2312 * 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
2313 * 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
2314 */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2315 if (!cb->IsValid || cb->Buffer == NULL ||
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2316 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
2317 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
2318 {
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2319 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
2320 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
2321 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
2322 vim_free(cb->Buffer);
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2323 cb->Buffer = (PCHAR_INFO)alloc(NumCells * sizeof(CHAR_INFO));
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2324 if (cb->Buffer == NULL)
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2325 return FALSE;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2326 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2327
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2328 /*
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2329 * 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
2330 * 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
2331 * 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
2332 * 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
2333 * 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
2334 * 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
2335 * height of each chunk will be (12000 / width).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2336 */
7078
383d6f39669b commit https://github.com/vim/vim/commit/615942452eb74eee7d8386fd3d76a1534181fa06
Christian Brabandt <cb@256bit.org>
parents: 6981
diff changeset
2337 BufferCoord.X = 0;
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2338 ReadRegion.Left = 0;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2339 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
2340 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
2341
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2342 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
2343 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
2344 {
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2345 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
2346 vim_free(cb->Regions);
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2347 cb->Regions = (PSMALL_RECT)alloc(cb->NumRegions * sizeof(SMALL_RECT));
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2348 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
2349 {
13244
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13170
diff changeset
2350 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
2351 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
2352 }
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2353 }
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2354
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2355 for (i = 0, Y = 0; i < cb->NumRegions; i++, Y += Y_incr)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2356 {
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2357 /*
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2358 * 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
2359 */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2360 BufferCoord.Y = Y;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2361 /*
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2362 * 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
2363 * 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
2364 * 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
2365 * 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
2366 */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2367 ReadRegion.Top = Y;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2368 ReadRegion.Bottom = Y + Y_incr - 1;
12050
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2369 if (!ReadConsoleOutputW(g_hConOut, /* output handle */
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2370 cb->Buffer, /* our buffer */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2371 cb->BufferSize, /* dimensions of our buffer */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2372 BufferCoord, /* offset in our buffer */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2373 &ReadRegion)) /* region to save */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2374 {
13244
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13170
diff changeset
2375 VIM_CLEAR(cb->Buffer);
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13170
diff changeset
2376 VIM_CLEAR(cb->Regions);
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2377 return FALSE;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2378 }
12050
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2379 cb->Regions[i] = ReadRegion;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2380 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2381
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2382 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2383 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2384
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2385 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2386 * RestoreConsoleBuffer()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2387 * Description:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2388 * Restores important information about the console buffer, including the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2389 * actual buffer contents, if desired. The information to restore is in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2390 * the same format used by SaveConsoleBuffer().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2391 * Returns:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2392 * TRUE on success
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2393 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2394 static BOOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2395 RestoreConsoleBuffer(
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2396 ConsoleBuffer *cb,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2397 BOOL RestoreScreen)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2398 {
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2399 COORD BufferCoord;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2400 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
2401 int i;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2402
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2403 if (cb == NULL || !cb->IsValid)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2404 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2405
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2406 /*
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2407 * 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
2408 * 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
2409 * 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
2410 */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2411 if (RestoreScreen)
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2412 ClearConsoleBuffer(cb->Info.wAttributes);
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2413
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2414 FitConsoleWindow(cb->Info.dwSize, TRUE);
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2415 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
2416 return FALSE;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2417 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
2418 return FALSE;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2419
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2420 if (!RestoreScreen)
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2421 {
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2422 /*
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2423 * 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
2424 */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2425 return TRUE;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2426 }
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2427
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2428 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
2429 return FALSE;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2430 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
2431 return FALSE;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2432
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2433 /*
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2434 * Restore the screen buffer contents.
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2435 */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2436 if (cb->Buffer != NULL)
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2437 {
12050
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2438 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
2439 {
12050
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2440 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
2441 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
2442 WriteRegion = cb->Regions[i];
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2443 if (!WriteConsoleOutputW(g_hConOut, /* output handle */
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2444 cb->Buffer, /* our buffer */
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2445 cb->BufferSize, /* dimensions of our buffer */
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2446 BufferCoord, /* offset in our buffer */
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2447 &WriteRegion)) /* region to restore */
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2448 {
779c9247cc0e patch 8.0.0905: MS-Windows: broken multi-byte characters in the console
Christian Brabandt <cb@256bit.org>
parents: 12043
diff changeset
2449 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
2450 }
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2451 }
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2452 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2453
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2454 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2455 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2456
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2457 #define FEAT_RESTORE_ORIG_SCREEN
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2458 #ifdef FEAT_RESTORE_ORIG_SCREEN
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2459 static ConsoleBuffer g_cbOrig = { 0 };
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2460 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2461 static ConsoleBuffer g_cbNonTermcap = { 0 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2462 static ConsoleBuffer g_cbTermcap = { 0 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2463
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2464 #ifdef FEAT_TITLE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2465 #ifdef __BORLANDC__
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2466 typedef HWND (__stdcall *GETCONSOLEWINDOWPROC)(VOID);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2467 #else
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
2468 typedef HWND (WINAPI *GETCONSOLEWINDOWPROC)(VOID);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2469 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2470 char g_szOrigTitle[256] = { 0 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2471 HWND g_hWnd = NULL; /* also used in os_mswin.c */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2472 static HICON g_hOrigIconSmall = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2473 static HICON g_hOrigIcon = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2474 static HICON g_hVimIcon = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2475 static BOOL g_fCanChangeIcon = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2476
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2477 /* ICON* are not defined in VC++ 4.0 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2478 #ifndef ICON_SMALL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2479 #define ICON_SMALL 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2480 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2481 #ifndef ICON_BIG
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2482 #define ICON_BIG 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2483 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2484 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2485 * GetConsoleIcon()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2486 * Description:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2487 * Attempts to retrieve the small icon and/or the big icon currently in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2488 * use by a given window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2489 * Returns:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2490 * TRUE on success
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2491 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2492 static BOOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2493 GetConsoleIcon(
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2494 HWND hWnd,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2495 HICON *phIconSmall,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2496 HICON *phIcon)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2497 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2498 if (hWnd == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2499 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2500
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2501 if (phIconSmall != NULL)
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2502 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2503 (WPARAM)ICON_SMALL, (LPARAM)0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2504 if (phIcon != NULL)
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2505 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2506 (WPARAM)ICON_BIG, (LPARAM)0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2507 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2508 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2509
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2510 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2511 * SetConsoleIcon()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2512 * Description:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2513 * Attempts to change the small icon and/or the big icon currently in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2514 * use by a given window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2515 * Returns:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2516 * TRUE on success
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2517 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2518 static BOOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2519 SetConsoleIcon(
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2520 HWND hWnd,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2521 HICON hIconSmall,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2522 HICON hIcon)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2523 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2524 if (hWnd == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2525 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2526
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2527 if (hIconSmall != NULL)
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
2528 SendMessage(hWnd, WM_SETICON,
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
2529 (WPARAM)ICON_SMALL, (LPARAM)hIconSmall);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2530 if (hIcon != NULL)
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
2531 SendMessage(hWnd, WM_SETICON,
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
2532 (WPARAM)ICON_BIG, (LPARAM) hIcon);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2533 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2534 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2535
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2536 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2537 * SaveConsoleTitleAndIcon()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2538 * Description:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2539 * Saves the current console window title in g_szOrigTitle, for later
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2540 * restoration. Also, attempts to obtain a handle to the console window,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2541 * 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
2542 * console window. This is not always possible on some versions of Windows;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2543 * nor is it possible when running Vim remotely using Telnet (since the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2544 * console window the user sees is owned by a remote process).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2545 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2546 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2547 SaveConsoleTitleAndIcon(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2548 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2549 /* Save the original title. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2550 if (!GetConsoleTitle(g_szOrigTitle, sizeof(g_szOrigTitle)))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2551 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2552
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2553 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2554 * Obtain a handle to the console window using GetConsoleWindow() from
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2555 * KERNEL32.DLL; we need to handle in order to change the window icon.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2556 * This function only exists on NT-based Windows, starting with Windows
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2557 * 2000. On older operating systems, we can't change the window icon
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2558 * anyway.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2559 */
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
2560 g_hWnd = GetConsoleWindow();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2561 if (g_hWnd == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2562 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2563
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2564 /* Save the original console window icon. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2565 GetConsoleIcon(g_hWnd, &g_hOrigIconSmall, &g_hOrigIcon);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2566 if (g_hOrigIconSmall == NULL || g_hOrigIcon == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2567 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2568
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2569 /* Extract the first icon contained in the Vim executable. */
6249
7816c24ff890 updated for version 7.4.459
Bram Moolenaar <bram@vim.org>
parents: 6193
diff changeset
2570 if (mch_icon_load((HANDLE *)&g_hVimIcon) == FAIL || g_hVimIcon == NULL)
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
2571 g_hVimIcon = ExtractIcon(NULL, (LPCSTR)exe_name, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2572 if (g_hVimIcon != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2573 g_fCanChangeIcon = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2574 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2575 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2576
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2577 static int g_fWindInitCalled = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2578 static int g_fTermcapMode = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2579 static CONSOLE_CURSOR_INFO g_cci;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2580 static DWORD g_cmodein = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2581 static DWORD g_cmodeout = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2582
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2583 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2584 * non-GUI version of mch_init().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2585 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2586 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
2587 mch_init(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2588 {
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2589 #ifndef FEAT_RESTORE_ORIG_SCREEN
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2590 CONSOLE_SCREEN_BUFFER_INFO csbi;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2591 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2592 #ifndef __MINGW32__
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2593 extern int _fmode;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2594 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2595
2584
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2596 /* Silently handle invalid parameters to CRT functions */
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2597 SET_INVALID_PARAM_HANDLER;
f9bd6784f393 updated for version 7.3.009
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2598
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2599 /* Let critical errors result in a failure, not in a dialog box. Required
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2600 * for the timestamp test to work on removed floppies. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2601 SetErrorMode(SEM_FAILCRITICALERRORS);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2602
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2603 _fmode = O_BINARY; /* we do our own CR-LF translation */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2604 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2605
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2606 /* Obtain handles for the standard Console I/O devices */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2607 if (read_cmd_fd == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2608 g_hConIn = GetStdHandle(STD_INPUT_HANDLE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2609 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2610 create_conin();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2611 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
2612
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2613 #ifdef FEAT_RESTORE_ORIG_SCREEN
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2614 /* Save the initial console buffer for later restoration */
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2615 SaveConsoleBuffer(&g_cbOrig);
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2616 g_attrCurrent = g_attrDefault = g_cbOrig.Info.wAttributes;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2617 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2618 /* Get current text attributes */
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2619 GetConsoleScreenBufferInfo(g_hConOut, &csbi);
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2620 g_attrCurrent = g_attrDefault = csbi.wAttributes;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
2621 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2622 if (cterm_normal_fg_color == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2623 cterm_normal_fg_color = (g_attrCurrent & 0xf) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2624 if (cterm_normal_bg_color == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2625 cterm_normal_bg_color = ((g_attrCurrent >> 4) & 0xf) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2626
14650
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
2627 // Fg and Bg color index nunmber at startup
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
2628 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
2629 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
2630
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2631 /* set termcap codes to current text attributes */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2632 update_tcap(g_attrCurrent);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2633
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2634 GetConsoleCursorInfo(g_hConOut, &g_cci);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2635 GetConsoleMode(g_hConIn, &g_cmodein);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2636 GetConsoleMode(g_hConOut, &g_cmodeout);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2637
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2638 #ifdef FEAT_TITLE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2639 SaveConsoleTitleAndIcon();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2640 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2641 * 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
2642 * Note that Vim presently only has one size of icon (32x32), but it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2643 * automatically gets scaled down to 16x16 when setting the small icon.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2644 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2645 if (g_fCanChangeIcon)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2646 SetConsoleIcon(g_hWnd, g_hVimIcon, g_hVimIcon);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2647 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2648
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2649 ui_get_shellsize();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2650
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2651 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2652 fdDump = fopen("dump", "wt");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2653
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2654 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2655 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2656 time_t t;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2657
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2658 time(&t);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2659 fputs(ctime(&t), fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2660 fflush(fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2661 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2662 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2663
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2664 g_fWindInitCalled = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2665
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2666 #ifdef FEAT_MOUSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2667 g_fMouseAvail = GetSystemMetrics(SM_MOUSEPRESENT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2668 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2669
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2670 #ifdef FEAT_CLIPBOARD
4168
ff193256398a updated for version 7.3.836
Bram Moolenaar <bram@vim.org>
parents: 4122
diff changeset
2671 win_clip_init();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2672 #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
2673
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
2674 vtp_init();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2675 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2676
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2677 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2678 * non-GUI version of mch_exit().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2679 * Shut down and exit with status `r'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2680 * Careful: mch_exit() may be called before mch_init()!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2681 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2682 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2683 mch_exit(int r)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2684 {
10835
c9da7f9137af patch 8.0.0307: asan detects a memory error when EXITFREE is defined
Christian Brabandt <cb@256bit.org>
parents: 10783
diff changeset
2685 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
2686
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
2687 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
2688
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2689 stoptermcap();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2690 if (g_fWindInitCalled)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2691 settmode(TMODE_COOK);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2692
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2693 ml_close_all(TRUE); /* remove all memfiles */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2694
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2695 if (g_fWindInitCalled)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2696 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2697 #ifdef FEAT_TITLE
14479
3375a8cbb442 patch 8.1.0253: saving and restoring window title does not always work
Christian Brabandt <cb@256bit.org>
parents: 14473
diff changeset
2698 mch_restore_title(SAVE_RESTORE_BOTH);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2699 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2700 * Restore both the small and big icons of the console window to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2701 * what they were at startup. Don't do this when the window is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2702 * closed, Vim would hang here.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2703 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2704 if (g_fCanChangeIcon && !g_fForceExit)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2705 SetConsoleIcon(g_hWnd, g_hOrigIconSmall, g_hOrigIcon);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2706 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2707
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2708 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2709 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2710 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2711 time_t t;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2712
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2713 time(&t);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2714 fputs(ctime(&t), fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2715 fclose(fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2716 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2717 fdDump = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2718 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2719 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2720
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2721 SetConsoleCursorInfo(g_hConOut, &g_cci);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2722 SetConsoleMode(g_hConIn, g_cmodein);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2723 SetConsoleMode(g_hConOut, g_cmodeout);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2724
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2725 #ifdef DYNAMIC_GETTEXT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2726 dyn_libintl_end();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2727 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2728
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2729 exit(r);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2730 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2731 #endif /* !FEAT_GUI_W32 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2732
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2733 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2734 * Do we have an interactive window?
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2735 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2736 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2737 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
2738 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
2739 char **argv UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2740 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2741 get_exe_name();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2742
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2743 #ifdef FEAT_GUI_W32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2744 return OK; /* GUI always has a tty */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2745 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2746 if (isatty(1))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2747 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2748 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2749 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2750 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2751
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2752
5326
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2753 #ifdef FEAT_MBYTE
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2754 /*
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2755 * fname_casew(): Wide version of fname_case(). Set the case of the file name,
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2756 * if it already exists. When "len" is > 0, also expand short to long
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2757 * filenames.
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2758 * Return FAIL if wide functions are not available, OK otherwise.
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2759 * NOTE: much of this is identical to fname_case(), keep in sync!
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2760 */
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2761 static int
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2762 fname_casew(
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2763 WCHAR *name,
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2764 int len)
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2765 {
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2766 WCHAR szTrueName[_MAX_PATH + 2];
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2767 WCHAR szTrueNameTemp[_MAX_PATH + 2];
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2768 WCHAR *ptrue, *ptruePrev;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2769 WCHAR *porig, *porigPrev;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2770 int flen;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2771 WIN32_FIND_DATAW fb;
5529
0e21e2a38ec6 updated for version 7.4.113
Bram Moolenaar <bram@vim.org>
parents: 5494
diff changeset
2772 HANDLE hFind = INVALID_HANDLE_VALUE;
5326
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2773 int c;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2774 int slen;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2775
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2776 flen = (int)wcslen(name);
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2777 if (flen > _MAX_PATH)
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2778 return OK;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2779
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2780 /* slash_adjust(name) not needed, already adjusted by fname_case(). */
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2781
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2782 /* Build the new name in szTrueName[] one component at a time. */
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2783 porig = name;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2784 ptrue = szTrueName;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2785
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2786 if (iswalpha(porig[0]) && porig[1] == L':')
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2787 {
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2788 /* copy leading drive letter */
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2789 *ptrue++ = *porig++;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2790 *ptrue++ = *porig++;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2791 }
5529
0e21e2a38ec6 updated for version 7.4.113
Bram Moolenaar <bram@vim.org>
parents: 5494
diff changeset
2792 *ptrue = NUL; /* in case nothing follows */
5326
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2793
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2794 while (*porig != NUL)
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2795 {
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2796 /* copy \ characters */
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2797 while (*porig == psepc)
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2798 *ptrue++ = *porig++;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2799
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2800 ptruePrev = ptrue;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2801 porigPrev = porig;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2802 while (*porig != NUL && *porig != psepc)
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2803 {
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2804 *ptrue++ = *porig++;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2805 }
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2806 *ptrue = NUL;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2807
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2808 /* To avoid a slow failure append "\*" when searching a directory,
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2809 * server or network share. */
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2810 wcscpy(szTrueNameTemp, szTrueName);
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2811 slen = (int)wcslen(szTrueNameTemp);
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2812 if (*porig == psepc && slen + 2 < _MAX_PATH)
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2813 wcscpy(szTrueNameTemp + slen, L"\\*");
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2814
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2815 /* Skip "", "." and "..". */
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2816 if (ptrue > ptruePrev
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2817 && (ptruePrev[0] != L'.'
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2818 || (ptruePrev[1] != NUL
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2819 && (ptruePrev[1] != L'.' || ptruePrev[2] != NUL)))
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2820 && (hFind = FindFirstFileW(szTrueNameTemp, &fb))
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2821 != INVALID_HANDLE_VALUE)
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2822 {
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2823 c = *porig;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2824 *porig = NUL;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2825
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2826 /* Only use the match when it's the same name (ignoring case) or
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2827 * expansion is allowed and there is a match with the short name
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2828 * and there is enough room. */
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2829 if (_wcsicoll(porigPrev, fb.cFileName) == 0
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2830 || (len > 0
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2831 && (_wcsicoll(porigPrev, fb.cAlternateFileName) == 0
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2832 && (int)(ptruePrev - szTrueName)
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2833 + (int)wcslen(fb.cFileName) < len)))
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2834 {
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2835 wcscpy(ptruePrev, fb.cFileName);
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2836
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2837 /* Look for exact match and prefer it if found. Must be a
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2838 * long name, otherwise there would be only one match. */
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2839 while (FindNextFileW(hFind, &fb))
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2840 {
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2841 if (*fb.cAlternateFileName != NUL
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2842 && (wcscoll(porigPrev, fb.cFileName) == 0
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2843 || (len > 0
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2844 && (_wcsicoll(porigPrev,
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2845 fb.cAlternateFileName) == 0
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2846 && (int)(ptruePrev - szTrueName)
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2847 + (int)wcslen(fb.cFileName) < len))))
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2848 {
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2849 wcscpy(ptruePrev, fb.cFileName);
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2850 break;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2851 }
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2852 }
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2853 }
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2854 FindClose(hFind);
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2855 *porig = c;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2856 ptrue = ptruePrev + wcslen(ptruePrev);
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2857 }
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2858 }
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2859
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2860 wcscpy(name, szTrueName);
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2861 return OK;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2862 }
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2863 #endif
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2864
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2865 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2866 * fname_case(): Set the case of the file name, if it already exists.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2867 * When "len" is > 0, also expand short to long filenames.
5326
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2868 * NOTE: much of this is identical to fname_casew(), keep in sync!
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2869 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2870 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2871 fname_case(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2872 char_u *name,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2873 int len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2874 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2875 char szTrueName[_MAX_PATH + 2];
2604
6a85219723b9 updated for version 7.3.027
Bram Moolenaar <bram@vim.org>
parents: 2584
diff changeset
2876 char szTrueNameTemp[_MAX_PATH + 2];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2877 char *ptrue, *ptruePrev;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2878 char *porig, *porigPrev;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2879 int flen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2880 WIN32_FIND_DATA fb;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2881 HANDLE hFind;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2882 int c;
2604
6a85219723b9 updated for version 7.3.027
Bram Moolenaar <bram@vim.org>
parents: 2584
diff changeset
2883 int slen;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2884
434
9595cf1d80a7 updated for version 7.0112
vimboss
parents: 417
diff changeset
2885 flen = (int)STRLEN(name);
5326
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2886 if (flen == 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2887 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2888
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2889 slash_adjust(name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2890
5326
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2891 #ifdef FEAT_MBYTE
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2892 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2893 {
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2894 WCHAR *p = enc_to_utf16(name, NULL);
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2895
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2896 if (p != NULL)
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2897 {
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2898 char_u *q;
6262
452e8b2a0ab3 updated for version 7.4.465
Bram Moolenaar <bram@vim.org>
parents: 6249
diff changeset
2899 WCHAR buf[_MAX_PATH + 1];
452e8b2a0ab3 updated for version 7.4.465
Bram Moolenaar <bram@vim.org>
parents: 6249
diff changeset
2900
452e8b2a0ab3 updated for version 7.4.465
Bram Moolenaar <bram@vim.org>
parents: 6249
diff changeset
2901 wcsncpy(buf, p, _MAX_PATH);
452e8b2a0ab3 updated for version 7.4.465
Bram Moolenaar <bram@vim.org>
parents: 6249
diff changeset
2902 buf[_MAX_PATH] = L'\0';
5326
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2903 vim_free(p);
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2904
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2905 if (fname_casew(buf, (len > 0) ? _MAX_PATH : 0) == OK)
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2906 {
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2907 q = utf16_to_enc(buf, NULL);
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2908 if (q != NULL)
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2909 {
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2910 vim_strncpy(name, q, (len > 0) ? len - 1 : flen);
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2911 vim_free(q);
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2912 return;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2913 }
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2914 }
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2915 }
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
2916 return;
5326
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2917 }
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2918 #endif
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2919
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2920 /* If 'enc' is utf-8, flen can be larger than _MAX_PATH.
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2921 * So we should check this after calling wide function. */
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2922 if (flen > _MAX_PATH)
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2923 return;
8d5cd0ec3e71 updated for version 7.4.016
Bram Moolenaar <bram@vim.org>
parents: 5324
diff changeset
2924
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2925 /* Build the new name in szTrueName[] one component at a time. */
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
2926 porig = (char *)name;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2927 ptrue = szTrueName;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2928
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2929 if (isalpha(porig[0]) && porig[1] == ':')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2930 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2931 /* copy leading drive letter */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2932 *ptrue++ = *porig++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2933 *ptrue++ = *porig++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2934 }
5529
0e21e2a38ec6 updated for version 7.4.113
Bram Moolenaar <bram@vim.org>
parents: 5494
diff changeset
2935 *ptrue = NUL; /* in case nothing follows */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2936
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2937 while (*porig != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2938 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2939 /* copy \ characters */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2940 while (*porig == psepc)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2941 *ptrue++ = *porig++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2942
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2943 ptruePrev = ptrue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2944 porigPrev = porig;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2945 while (*porig != NUL && *porig != psepc)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2946 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2947 #ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2948 int l;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2949
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2950 if (enc_dbcs)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2951 {
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
2952 l = (*mb_ptr2len)((char_u *)porig);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2953 while (--l >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2954 *ptrue++ = *porig++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2955 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2956 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2957 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2958 *ptrue++ = *porig++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2959 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2960 *ptrue = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2961
2604
6a85219723b9 updated for version 7.3.027
Bram Moolenaar <bram@vim.org>
parents: 2584
diff changeset
2962 /* To avoid a slow failure append "\*" when searching a directory,
6a85219723b9 updated for version 7.3.027
Bram Moolenaar <bram@vim.org>
parents: 2584
diff changeset
2963 * server or network share. */
6a85219723b9 updated for version 7.3.027
Bram Moolenaar <bram@vim.org>
parents: 2584
diff changeset
2964 STRCPY(szTrueNameTemp, szTrueName);
2615
c6fe65c000d2 updated for version 7.3.037
Bram Moolenaar <bram@vim.org>
parents: 2613
diff changeset
2965 slen = (int)strlen(szTrueNameTemp);
2604
6a85219723b9 updated for version 7.3.027
Bram Moolenaar <bram@vim.org>
parents: 2584
diff changeset
2966 if (*porig == psepc && slen + 2 < _MAX_PATH)
6a85219723b9 updated for version 7.3.027
Bram Moolenaar <bram@vim.org>
parents: 2584
diff changeset
2967 STRCPY(szTrueNameTemp + slen, "\\*");
6a85219723b9 updated for version 7.3.027
Bram Moolenaar <bram@vim.org>
parents: 2584
diff changeset
2968
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2969 /* Skip "", "." and "..". */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2970 if (ptrue > ptruePrev
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2971 && (ptruePrev[0] != '.'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2972 || (ptruePrev[1] != NUL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2973 && (ptruePrev[1] != '.' || ptruePrev[2] != NUL)))
2604
6a85219723b9 updated for version 7.3.027
Bram Moolenaar <bram@vim.org>
parents: 2584
diff changeset
2974 && (hFind = FindFirstFile(szTrueNameTemp, &fb))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2975 != INVALID_HANDLE_VALUE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2976 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2977 c = *porig;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2978 *porig = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2979
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2980 /* Only use the match when it's the same name (ignoring case) or
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2981 * expansion is allowed and there is a match with the short name
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2982 * and there is enough room. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2983 if (_stricoll(porigPrev, fb.cFileName) == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2984 || (len > 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2985 && (_stricoll(porigPrev, fb.cAlternateFileName) == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2986 && (int)(ptruePrev - szTrueName)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2987 + (int)strlen(fb.cFileName) < len)))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2988 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2989 STRCPY(ptruePrev, fb.cFileName);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2990
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2991 /* Look for exact match and prefer it if found. Must be a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2992 * long name, otherwise there would be only one match. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2993 while (FindNextFile(hFind, &fb))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2994 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2995 if (*fb.cAlternateFileName != NUL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2996 && (strcoll(porigPrev, fb.cFileName) == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2997 || (len > 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2998 && (_stricoll(porigPrev,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2999 fb.cAlternateFileName) == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3000 && (int)(ptruePrev - szTrueName)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3001 + (int)strlen(fb.cFileName) < len))))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3002 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3003 STRCPY(ptruePrev, fb.cFileName);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3004 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3005 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3006 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3007 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3008 FindClose(hFind);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3009 *porig = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3010 ptrue = ptruePrev + strlen(ptruePrev);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3011 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3012 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3013
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3014 STRCPY(name, szTrueName);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3015 }
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 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3019 * Insert user name in s[len].
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3020 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3021 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3022 mch_get_user_name(
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3023 char_u *s,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3024 int len)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3025 {
1414
1f099ff4f6fb updated for version 7.1-129
vimboss
parents: 1199
diff changeset
3026 char szUserName[256 + 1]; /* UNLEN is 256 */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3027 DWORD cch = sizeof szUserName;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3028
5549
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3029 #ifdef FEAT_MBYTE
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3030 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3031 {
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3032 WCHAR wszUserName[256 + 1]; /* UNLEN is 256 */
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3033 DWORD wcch = sizeof(wszUserName) / sizeof(WCHAR);
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3034
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3035 if (GetUserNameW(wszUserName, &wcch))
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3036 {
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3037 char_u *p = utf16_to_enc(wszUserName, NULL);
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3038
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3039 if (p != NULL)
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3040 {
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3041 vim_strncpy(s, p, len - 1);
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3042 vim_free(p);
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3043 return OK;
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3044 }
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3045 }
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3046 }
32e50f85d2c7 updated for version 7.4.123
Bram Moolenaar <bram@vim.org>
parents: 5547
diff changeset
3047 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3048 if (GetUserName(szUserName, &cch))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3049 {
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3050 vim_strncpy(s, (char_u *)szUserName, len - 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3051 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3052 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3053 s[0] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3054 return FAIL;
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 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3059 * Insert host name in s[len].
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3060 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3061 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3062 mch_get_host_name(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3063 char_u *s,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3064 int len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3065 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3066 DWORD cch = len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3067
5551
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3068 #ifdef FEAT_MBYTE
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3069 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3070 {
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3071 WCHAR wszHostName[256 + 1];
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3072 DWORD wcch = sizeof(wszHostName) / sizeof(WCHAR);
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3073
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3074 if (GetComputerNameW(wszHostName, &wcch))
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3075 {
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3076 char_u *p = utf16_to_enc(wszHostName, NULL);
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3077
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3078 if (p != NULL)
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3079 {
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3080 vim_strncpy(s, p, len - 1);
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3081 vim_free(p);
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3082 return;
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3083 }
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3084 }
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3085 }
9faba192ea90 updated for version 7.4.124
Bram Moolenaar <bram@vim.org>
parents: 5549
diff changeset
3086 #endif
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3087 if (!GetComputerName((LPSTR)s, &cch))
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3088 vim_strncpy(s, (char_u *)"PC (Win32 Vim)", len - 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3089 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3090
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3091
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3092 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3093 * return process ID
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3094 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3095 long
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3096 mch_get_pid(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3097 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3098 return (long)GetCurrentProcessId();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3099 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3100
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3101
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3102 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3103 * Get name of current directory into buffer 'buf' of length 'len' bytes.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3104 * Return OK for success, FAIL for failure.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3105 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3106 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3107 mch_dirname(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3108 char_u *buf,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3109 int len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3110 {
14561
3ea4a48213e6 patch 8.1.0294: MS-Windows: sometimes uses short directory name
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3111 char_u abuf[_MAX_PATH + 1];
14567
7267c0d910fe patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Christian Brabandt <cb@256bit.org>
parents: 14561
diff changeset
3112 DWORD lfnlen;
14561
3ea4a48213e6 patch 8.1.0294: MS-Windows: sometimes uses short directory name
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3113
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3114 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3115 * Originally this was:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3116 * return (getcwd(buf, len) != NULL ? OK : FAIL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3117 * But the Win32s known bug list says that getcwd() doesn't work
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3118 * so use the Win32 system call instead. <Negri>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3119 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3120 #ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3121 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3122 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3123 WCHAR wbuf[_MAX_PATH + 1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3124
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3125 if (GetCurrentDirectoryW(_MAX_PATH, wbuf) != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3126 {
14561
3ea4a48213e6 patch 8.1.0294: MS-Windows: sometimes uses short directory name
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3127 WCHAR wcbuf[_MAX_PATH + 1];
14567
7267c0d910fe patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Christian Brabandt <cb@256bit.org>
parents: 14561
diff changeset
3128 char_u *p = NULL;
14561
3ea4a48213e6 patch 8.1.0294: MS-Windows: sometimes uses short directory name
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3129
3ea4a48213e6 patch 8.1.0294: MS-Windows: sometimes uses short directory name
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3130 if (GetLongPathNameW(wbuf, wcbuf, _MAX_PATH) != 0)
14567
7267c0d910fe patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Christian Brabandt <cb@256bit.org>
parents: 14561
diff changeset
3131 {
14561
3ea4a48213e6 patch 8.1.0294: MS-Windows: sometimes uses short directory name
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3132 p = utf16_to_enc(wcbuf, NULL);
14567
7267c0d910fe patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Christian Brabandt <cb@256bit.org>
parents: 14561
diff changeset
3133 if (STRLEN(p) >= (size_t)len)
7267c0d910fe patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Christian Brabandt <cb@256bit.org>
parents: 14561
diff changeset
3134 {
7267c0d910fe patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Christian Brabandt <cb@256bit.org>
parents: 14561
diff changeset
3135 // long path name is too long, fall back to short one
7267c0d910fe patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Christian Brabandt <cb@256bit.org>
parents: 14561
diff changeset
3136 vim_free(p);
7267c0d910fe patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Christian Brabandt <cb@256bit.org>
parents: 14561
diff changeset
3137 p = NULL;
7267c0d910fe patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Christian Brabandt <cb@256bit.org>
parents: 14561
diff changeset
3138 }
7267c0d910fe patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Christian Brabandt <cb@256bit.org>
parents: 14561
diff changeset
3139 }
7267c0d910fe patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Christian Brabandt <cb@256bit.org>
parents: 14561
diff changeset
3140 if (p == NULL)
14561
3ea4a48213e6 patch 8.1.0294: MS-Windows: sometimes uses short directory name
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3141 p = utf16_to_enc(wbuf, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3142
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3143 if (p != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3144 {
417
8f41fe56e2fc updated for version 7.0109
vimboss
parents: 406
diff changeset
3145 vim_strncpy(buf, p, len - 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3146 vim_free(p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3147 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3148 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3149 }
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3150 return FAIL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3151 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3152 #endif
14561
3ea4a48213e6 patch 8.1.0294: MS-Windows: sometimes uses short directory name
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3153 if (GetCurrentDirectory(len, (LPSTR)buf) == 0)
3ea4a48213e6 patch 8.1.0294: MS-Windows: sometimes uses short directory name
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3154 return FAIL;
14567
7267c0d910fe patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Christian Brabandt <cb@256bit.org>
parents: 14561
diff changeset
3155 lfnlen = GetLongPathNameA((LPCSTR)buf, (LPSTR)abuf, _MAX_PATH);
7267c0d910fe patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Christian Brabandt <cb@256bit.org>
parents: 14561
diff changeset
3156 if (lfnlen == 0 || lfnlen >= (DWORD)len)
7267c0d910fe patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Christian Brabandt <cb@256bit.org>
parents: 14561
diff changeset
3157 // Failed to get long path name or it's too long: fall back to the
7267c0d910fe patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Christian Brabandt <cb@256bit.org>
parents: 14561
diff changeset
3158 // short path name.
14561
3ea4a48213e6 patch 8.1.0294: MS-Windows: sometimes uses short directory name
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3159 return OK;
3ea4a48213e6 patch 8.1.0294: MS-Windows: sometimes uses short directory name
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3160
14567
7267c0d910fe patch 8.1.0297: MS-Windows: tests fail, Vim crashes
Christian Brabandt <cb@256bit.org>
parents: 14561
diff changeset
3161 STRCPY(buf, abuf);
14561
3ea4a48213e6 patch 8.1.0294: MS-Windows: sometimes uses short directory name
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
3162 return OK;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3163 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3164
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3165 /*
5494
645358801356 updated for version 7.4.096
Bram Moolenaar <bram@vim.org>
parents: 5376
diff changeset
3166 * Get file permissions for "name".
645358801356 updated for version 7.4.096
Bram Moolenaar <bram@vim.org>
parents: 5376
diff changeset
3167 * Return mode_t or -1 for error.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3168 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3169 long
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3170 mch_getperm(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3171 {
9387
f094d4085014 commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents: 8949
diff changeset
3172 stat_T st;
5494
645358801356 updated for version 7.4.096
Bram Moolenaar <bram@vim.org>
parents: 5376
diff changeset
3173 int n;
645358801356 updated for version 7.4.096
Bram Moolenaar <bram@vim.org>
parents: 5376
diff changeset
3174
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3175 n = mch_stat((char *)name, &st);
5588
2ca470c6096e updated for version 7.4.141
Bram Moolenaar <bram@vim.org>
parents: 5580
diff changeset
3176 return n == 0 ? (long)(unsigned short)st.st_mode : -1L;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3177 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3178
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3179
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3180 /*
5229
1261caf9bc51 updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents: 5112
diff changeset
3181 * Set file permission for "name" to "perm".
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3182 *
5229
1261caf9bc51 updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents: 5112
diff changeset
3183 * Return FAIL for failure, OK otherwise.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3184 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3185 int
5229
1261caf9bc51 updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents: 5112
diff changeset
3186 mch_setperm(char_u *name, long perm)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3187 {
5229
1261caf9bc51 updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents: 5112
diff changeset
3188 long n = -1;
1261caf9bc51 updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents: 5112
diff changeset
3189
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3190 #ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3191 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3192 {
5229
1261caf9bc51 updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents: 5112
diff changeset
3193 WCHAR *p = enc_to_utf16(name, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3194
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3195 if (p != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3196 {
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3197 n = _wchmod(p, perm);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3198 vim_free(p);
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3199 if (n == -1)
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3200 return FAIL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3201 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3202 }
5229
1261caf9bc51 updated for version 7.4a.040
Bram Moolenaar <bram@vim.org>
parents: 5112
diff changeset
3203 if (n == -1)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3204 #endif
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3205 n = _chmod((const char *)name, perm);
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3206 if (n == -1)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3207 return FAIL;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3208
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3209 win32_set_archive(name);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3210
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3211 return OK;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3212 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3213
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3214 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3215 * Set hidden flag for "name".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3216 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3217 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3218 mch_hide(char_u *name)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3219 {
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3220 int attrs = win32_getattrs(name);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3221 if (attrs == -1)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3222 return;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3223
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3224 attrs |= FILE_ATTRIBUTE_HIDDEN;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3225 win32_setattrs(name, attrs);
7
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 /*
7194
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3229 * 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
3230 */
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3231 int
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3232 mch_ishidden(char_u *name)
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3233 {
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3234 int f = win32_getattrs(name);
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3235
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3236 if (f == -1)
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3237 return FALSE; /* file does not exist at all */
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3238
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3239 return (f & FILE_ATTRIBUTE_HIDDEN) != 0;
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3240 }
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3241
272f04b41f51 commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents: 7184
diff changeset
3242 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3243 * return TRUE if "name" is a directory
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3244 * return FALSE if "name" is not a directory or upon error
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3245 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3246 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3247 mch_isdir(char_u *name)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3248 {
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3249 int f = win32_getattrs(name);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3250
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3251 if (f == -1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3252 return FALSE; /* file does not exist at all */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3253
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3254 return (f & FILE_ATTRIBUTE_DIRECTORY) != 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3255 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3256
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3257 /*
7657
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3258 * 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
3259 * 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
3260 * return FALSE for error
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3261 */
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3262 int
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3263 mch_isrealdir(char_u *name)
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3264 {
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3265 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
3266 }
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3267
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3268 /*
2803
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3269 * Create directory "name".
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3270 * Return 0 on success, -1 on error.
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3271 */
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3272 int
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3273 mch_mkdir(char_u *name)
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3274 {
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3275 #ifdef FEAT_MBYTE
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3276 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3277 {
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3278 WCHAR *p;
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3279 int retval;
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3280
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3281 p = enc_to_utf16(name, NULL);
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3282 if (p == NULL)
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3283 return -1;
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3284 retval = _wmkdir(p);
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3285 vim_free(p);
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3286 return retval;
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3287 }
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3288 #endif
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3289 return _mkdir((const char *)name);
2803
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3290 }
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3291
66f2d62271fe updated for version 7.3.177
Bram Moolenaar <bram@vim.org>
parents: 2793
diff changeset
3292 /*
7619
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3293 * Delete directory "name".
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3294 * 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
3295 */
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3296 int
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3297 mch_rmdir(char_u *name)
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3298 {
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3299 #ifdef FEAT_MBYTE
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3300 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3301 {
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3302 WCHAR *p;
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3303 int retval;
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3304
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3305 p = enc_to_utf16(name, NULL);
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3306 if (p == NULL)
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3307 return -1;
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3308 retval = _wrmdir(p);
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3309 vim_free(p);
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3310 return retval;
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3311 }
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3312 #endif
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3313 return _rmdir((const char *)name);
7619
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3314 }
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3315
6fed43c541c8 commit https://github.com/vim/vim/commit/4cf7679383dca81a4a351e2b0ec333c95d6d9085
Christian Brabandt <cb@256bit.org>
parents: 7613
diff changeset
3316 /*
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3317 * Return TRUE if file "fname" has more than one link.
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3318 */
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3319 int
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3320 mch_is_hard_link(char_u *fname)
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3321 {
2793
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3322 BY_HANDLE_FILE_INFORMATION info;
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3323
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3324 return win32_fileinfo(fname, &info) == FILEINFO_OK
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3325 && info.nNumberOfLinks > 1;
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3326 }
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3327
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3328 /*
7657
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3329 * 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
3330 */
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3331 int
7657
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3332 mch_is_symbolic_link(char_u *name)
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3333 {
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3334 HANDLE hFind;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3335 int res = FALSE;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3336 WIN32_FIND_DATAA findDataA;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3337 DWORD fileFlags = 0, reparseTag = 0;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3338 #ifdef FEAT_MBYTE
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3339 WCHAR *wn = NULL;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3340 WIN32_FIND_DATAW findDataW;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3341
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3342 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
7657
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3343 wn = enc_to_utf16(name, NULL);
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3344 if (wn != NULL)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3345 {
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3346 hFind = FindFirstFileW(wn, &findDataW);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3347 vim_free(wn);
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3348 if (hFind != INVALID_HANDLE_VALUE)
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3349 {
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3350 fileFlags = findDataW.dwFileAttributes;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3351 reparseTag = findDataW.dwReserved0;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3352 }
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3353 }
4930
7155782d94fb updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents: 4872
diff changeset
3354 else
7155782d94fb updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents: 4872
diff changeset
3355 #endif
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3356 {
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3357 hFind = FindFirstFile((LPCSTR)name, &findDataA);
4930
7155782d94fb updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents: 4872
diff changeset
3358 if (hFind != INVALID_HANDLE_VALUE)
7155782d94fb updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents: 4872
diff changeset
3359 {
7155782d94fb updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents: 4872
diff changeset
3360 fileFlags = findDataA.dwFileAttributes;
7155782d94fb updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents: 4872
diff changeset
3361 reparseTag = findDataA.dwReserved0;
7155782d94fb updated for version 7.3.1210
Bram Moolenaar <bram@vim.org>
parents: 4872
diff changeset
3362 }
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3363 }
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3364
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3365 if (hFind != INVALID_HANDLE_VALUE)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3366 FindClose(hFind);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3367
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3368 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
3369 && (reparseTag == IO_REPARSE_TAG_SYMLINK
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
3370 || reparseTag == IO_REPARSE_TAG_MOUNT_POINT))
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3371 res = TRUE;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3372
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3373 return res;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3374 }
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3375
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3376 /*
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3377 * 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
3378 * link.
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3379 */
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3380 int
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3381 mch_is_linked(char_u *fname)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3382 {
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3383 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
3384 return TRUE;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3385 return FALSE;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3386 }
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3387
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3388 /*
2793
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3389 * Get the by-handle-file-information for "fname".
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3390 * Returns FILEINFO_OK when OK.
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3391 * returns FILEINFO_ENC_FAIL when enc_to_utf16() failed.
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3392 * Returns FILEINFO_READ_FAIL when CreateFile() failed.
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3393 * Returns FILEINFO_INFO_FAIL when GetFileInformationByHandle() failed.
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3394 */
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3395 int
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3396 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
3397 {
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3398 HANDLE hFile;
2793
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3399 int res = FILEINFO_READ_FAIL;
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3400 #ifdef FEAT_MBYTE
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3401 WCHAR *wn = NULL;
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3402
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3403 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2793
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3404 {
1752
a8aae2e1d2ae updated for version 7.2-049
vimboss
parents: 1686
diff changeset
3405 wn = enc_to_utf16(fname, NULL);
2793
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3406 if (wn == NULL)
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3407 return FILEINFO_ENC_FAIL;
2793
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3408 }
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3409 if (wn != NULL)
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3410 {
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3411 hFile = CreateFileW(wn, /* file name */
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3412 GENERIC_READ, /* access mode */
2793
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3413 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3414 NULL, /* security descriptor */
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3415 OPEN_EXISTING, /* creation disposition */
2793
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3416 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3417 NULL); /* handle to template file */
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3418 vim_free(wn);
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3419 }
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3420 else
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3421 #endif
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3422 hFile = CreateFile((LPCSTR)fname, /* file name */
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3423 GENERIC_READ, /* access mode */
2793
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3424 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share mode */
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3425 NULL, /* security descriptor */
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3426 OPEN_EXISTING, /* creation disposition */
2793
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3427 FILE_FLAG_BACKUP_SEMANTICS, /* file attributes */
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3428 NULL); /* handle to template file */
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3429
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3430 if (hFile != INVALID_HANDLE_VALUE)
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3431 {
2793
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3432 if (GetFileInformationByHandle(hFile, info) != 0)
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3433 res = FILEINFO_OK;
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3434 else
ee48b3da9d53 updated for version 7.3.172
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
3435 res = FILEINFO_INFO_FAIL;
696
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3436 CloseHandle(hFile);
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3437 }
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3438
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3439 return res;
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3440 }
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3441
f0a9ef4db025 updated for version 7.0210
vimboss
parents: 609
diff changeset
3442 /*
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3443 * get file attributes for `name'
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3444 * -1 : error
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3445 * else FILE_ATTRIBUTE_* defined in winnt.h
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3446 */
5494
645358801356 updated for version 7.4.096
Bram Moolenaar <bram@vim.org>
parents: 5376
diff changeset
3447 static int
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3448 win32_getattrs(char_u *name)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3449 {
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3450 int attr;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3451 #ifdef FEAT_MBYTE
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3452 WCHAR *p = NULL;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3453
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3454 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3455 p = enc_to_utf16(name, NULL);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3456
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3457 if (p != NULL)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3458 {
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3459 attr = GetFileAttributesW(p);
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3460 vim_free(p);
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3461 }
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3462 else
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3463 #endif
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3464 attr = GetFileAttributes((char *)name);
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3465
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3466 return attr;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3467 }
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3468
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3469 /*
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3470 * set file attributes for `name' to `attrs'
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3471 *
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3472 * return -1 for failure, 0 otherwise
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3473 */
14862
27b9a84395b5 patch 8.1.0443: unnecessary static function prototypes
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
3474 static int
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3475 win32_setattrs(char_u *name, int attrs)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3476 {
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3477 int res;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3478 #ifdef FEAT_MBYTE
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3479 WCHAR *p = NULL;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3480
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3481 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3482 p = enc_to_utf16(name, NULL);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3483
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3484 if (p != NULL)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3485 {
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3486 res = SetFileAttributesW(p, attrs);
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3487 vim_free(p);
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3488 }
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3489 else
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3490 #endif
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3491 res = SetFileAttributes((char *)name, attrs);
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3492
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3493 return res ? 0 : -1;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3494 }
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3495
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3496 /*
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3497 * Set archive flag for "name".
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3498 */
14862
27b9a84395b5 patch 8.1.0443: unnecessary static function prototypes
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
3499 static int
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3500 win32_set_archive(char_u *name)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3501 {
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3502 int attrs = win32_getattrs(name);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3503 if (attrs == -1)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3504 return -1;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3505
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3506 attrs |= FILE_ATTRIBUTE_ARCHIVE;
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3507 return win32_setattrs(name, attrs);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3508 }
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3509
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3510 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3511 * Return TRUE if file or directory "name" is writable (not readonly).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3512 * Strange semantics of Win32: a readonly directory is writable, but you can't
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3513 * delete a file. Let's say this means it is writable.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3514 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3515 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3516 mch_writable(char_u *name)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3517 {
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3518 int attrs = win32_getattrs(name);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3519
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3520 return (attrs != -1 && (!(attrs & FILE_ATTRIBUTE_READONLY)
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
3521 || (attrs & FILE_ATTRIBUTE_DIRECTORY)));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3522 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3523
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3524 /*
11054
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
3525 * 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
3526 * 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
3527 * 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
3528 * the allocated memory.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3529 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3530 int
6700
f26c1d294156 updated for version 7.4.674
Bram Moolenaar <bram@vim.org>
parents: 6524
diff changeset
3531 mch_can_exe(char_u *name, char_u **path, int use_path)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3532 {
10
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3533 char_u buf[_MAX_PATH];
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 819
diff changeset
3534 int len = (int)STRLEN(name);
10
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3535 char_u *p;
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3536
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3537 if (len >= _MAX_PATH) /* safety check */
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3538 return FALSE;
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3539
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3540 /* If there already is an extension try using the name directly. Also do
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3541 * this with a Unix-shell like 'shell'. */
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3542 if (vim_strchr(gettail(name), '.') != NULL
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3543 || strstr((char *)gettail(p_sh), "sh") != NULL)
11054
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
3544 if (executable_exists((char *)name, path, use_path))
10
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3545 return TRUE;
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3546
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3547 /*
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3548 * Loop over all extensions in $PATHEXT.
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3549 */
417
8f41fe56e2fc updated for version 7.0109
vimboss
parents: 406
diff changeset
3550 vim_strncpy(buf, name, _MAX_PATH - 1);
10
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3551 p = mch_getenv("PATHEXT");
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3552 if (p == NULL)
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3553 p = (char_u *)".com;.exe;.bat;.cmd";
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3554 while (*p)
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3555 {
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3556 if (p[0] == '.' && (p[1] == NUL || p[1] == ';'))
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3557 {
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3558 /* A single "." means no extension is added. */
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3559 buf[len] = NUL;
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3560 ++p;
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3561 if (*p)
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3562 ++p;
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3563 }
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3564 else
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3565 copy_option_part(&p, buf + len, _MAX_PATH - len, ";");
11054
576238eda5a4 patch 8.0.0416: setting v:progpath is not quite right
Christian Brabandt <cb@256bit.org>
parents: 11014
diff changeset
3566 if (executable_exists((char *)buf, path, use_path))
10
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3567 return TRUE;
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3568 }
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
3569 return FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3570 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3571
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3572 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3573 * Check what "name" is:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3574 * NODE_NORMAL: file or directory (or doesn't exist)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3575 * NODE_WRITABLE: writable device, socket, fifo, etc.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3576 * NODE_OTHER: non-writable things
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3577 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3578 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3579 mch_nodetype(char_u *name)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3580 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3581 HANDLE hFile;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3582 int type;
5324
a7478f9f2551 updated for version 7.4.015
Bram Moolenaar <bram@vim.org>
parents: 5292
diff changeset
3583 #ifdef FEAT_MBYTE
a7478f9f2551 updated for version 7.4.015
Bram Moolenaar <bram@vim.org>
parents: 5292
diff changeset
3584 WCHAR *wn = NULL;
a7478f9f2551 updated for version 7.4.015
Bram Moolenaar <bram@vim.org>
parents: 5292
diff changeset
3585 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3586
1004
09d0e83c29b8 updated for version 7.0-130
vimboss
parents: 840
diff changeset
3587 /* We can't open a file with a name "\\.\con" or "\\.\prn" and trying to
09d0e83c29b8 updated for version 7.0-130
vimboss
parents: 840
diff changeset
3588 * read from it later will cause Vim to hang. Thus return NODE_WRITABLE
09d0e83c29b8 updated for version 7.0-130
vimboss
parents: 840
diff changeset
3589 * here. */
09d0e83c29b8 updated for version 7.0-130
vimboss
parents: 840
diff changeset
3590 if (STRNCMP(name, "\\\\.\\", 4) == 0)
09d0e83c29b8 updated for version 7.0-130
vimboss
parents: 840
diff changeset
3591 return NODE_WRITABLE;
09d0e83c29b8 updated for version 7.0-130
vimboss
parents: 840
diff changeset
3592
5324
a7478f9f2551 updated for version 7.4.015
Bram Moolenaar <bram@vim.org>
parents: 5292
diff changeset
3593 #ifdef FEAT_MBYTE
a7478f9f2551 updated for version 7.4.015
Bram Moolenaar <bram@vim.org>
parents: 5292
diff changeset
3594 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3595 wn = enc_to_utf16(name, NULL);
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3596
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3597 if (wn != NULL)
5324
a7478f9f2551 updated for version 7.4.015
Bram Moolenaar <bram@vim.org>
parents: 5292
diff changeset
3598 {
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3599 hFile = CreateFileW(wn, /* file name */
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3600 GENERIC_WRITE, /* access mode */
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3601 0, /* share mode */
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3602 NULL, /* security descriptor */
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3603 OPEN_EXISTING, /* creation disposition */
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3604 0, /* file attributes */
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3605 NULL); /* handle to template file */
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3606 vim_free(wn);
5324
a7478f9f2551 updated for version 7.4.015
Bram Moolenaar <bram@vim.org>
parents: 5292
diff changeset
3607 }
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3608 else
5324
a7478f9f2551 updated for version 7.4.015
Bram Moolenaar <bram@vim.org>
parents: 5292
diff changeset
3609 #endif
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3610 hFile = CreateFile((LPCSTR)name, /* file name */
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3611 GENERIC_WRITE, /* access mode */
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3612 0, /* share mode */
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3613 NULL, /* security descriptor */
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3614 OPEN_EXISTING, /* creation disposition */
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3615 0, /* file attributes */
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
3616 NULL); /* handle to template file */
5324
a7478f9f2551 updated for version 7.4.015
Bram Moolenaar <bram@vim.org>
parents: 5292
diff changeset
3617
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3618 if (hFile == INVALID_HANDLE_VALUE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3619 return NODE_NORMAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3620
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3621 type = GetFileType(hFile);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3622 CloseHandle(hFile);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3623 if (type == FILE_TYPE_CHAR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3624 return NODE_WRITABLE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3625 if (type == FILE_TYPE_DISK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3626 return NODE_NORMAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3627 return NODE_OTHER;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3628 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3629
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3630 #ifdef HAVE_ACL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3631 struct my_acl
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3632 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3633 PSECURITY_DESCRIPTOR pSecurityDescriptor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3634 PSID pSidOwner;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3635 PSID pSidGroup;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3636 PACL pDacl;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3637 PACL pSacl;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3638 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3639 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3640
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3641 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3642 * Return a pointer to the ACL of file "fname" in allocated memory.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3643 * Return NULL if the ACL is not available for whatever reason.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3644 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3645 vim_acl_T
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3646 mch_get_acl(char_u *fname)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3647 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3648 #ifndef HAVE_ACL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3649 return (vim_acl_T)NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3650 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3651 struct my_acl *p = NULL;
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3652 DWORD err;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3653
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3654 p = (struct my_acl *)alloc_clear((unsigned)sizeof(struct my_acl));
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3655 if (p != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3656 {
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3657 # ifdef FEAT_MBYTE
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3658 WCHAR *wn = NULL;
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3659
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3660 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3661 wn = enc_to_utf16(fname, NULL);
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3662 if (wn != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3663 {
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3664 /* Try to retrieve the entire security descriptor. */
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3665 err = GetNamedSecurityInfoW(
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3666 wn, // Abstract filename
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3667 SE_FILE_OBJECT, // File Object
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3668 OWNER_SECURITY_INFORMATION |
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3669 GROUP_SECURITY_INFORMATION |
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3670 DACL_SECURITY_INFORMATION |
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3671 SACL_SECURITY_INFORMATION,
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3672 &p->pSidOwner, // Ownership information.
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3673 &p->pSidGroup, // Group membership.
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3674 &p->pDacl, // Discretionary information.
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3675 &p->pSacl, // For auditing purposes.
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3676 &p->pSecurityDescriptor);
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3677 if (err == ERROR_ACCESS_DENIED ||
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3678 err == ERROR_PRIVILEGE_NOT_HELD)
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3679 {
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3680 /* Retrieve only DACL. */
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3681 (void)GetNamedSecurityInfoW(
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3682 wn,
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3683 SE_FILE_OBJECT,
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3684 DACL_SECURITY_INFORMATION,
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3685 NULL,
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3686 NULL,
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3687 &p->pDacl,
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3688 NULL,
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3689 &p->pSecurityDescriptor);
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3690 }
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3691 if (p->pSecurityDescriptor == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3692 {
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3693 mch_free_acl((vim_acl_T)p);
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3694 p = NULL;
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3695 }
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3696 vim_free(wn);
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3697 }
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3698 else
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3699 # endif
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3700 {
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3701 /* Try to retrieve the entire security descriptor. */
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3702 err = GetNamedSecurityInfo(
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3703 (LPSTR)fname, // Abstract filename
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3704 SE_FILE_OBJECT, // File Object
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3705 OWNER_SECURITY_INFORMATION |
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3706 GROUP_SECURITY_INFORMATION |
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3707 DACL_SECURITY_INFORMATION |
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3708 SACL_SECURITY_INFORMATION,
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3709 &p->pSidOwner, // Ownership information.
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3710 &p->pSidGroup, // Group membership.
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3711 &p->pDacl, // Discretionary information.
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3712 &p->pSacl, // For auditing purposes.
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3713 &p->pSecurityDescriptor);
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3714 if (err == ERROR_ACCESS_DENIED ||
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3715 err == ERROR_PRIVILEGE_NOT_HELD)
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3716 {
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3717 /* Retrieve only DACL. */
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3718 (void)GetNamedSecurityInfo(
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3719 (LPSTR)fname,
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3720 SE_FILE_OBJECT,
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3721 DACL_SECURITY_INFORMATION,
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3722 NULL,
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3723 NULL,
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3724 &p->pDacl,
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3725 NULL,
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3726 &p->pSecurityDescriptor);
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3727 }
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3728 if (p->pSecurityDescriptor == NULL)
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3729 {
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3730 mch_free_acl((vim_acl_T)p);
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3731 p = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3732 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3733 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3734 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3735
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3736 return (vim_acl_T)p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3737 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3738 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3739
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3740 #ifdef HAVE_ACL
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3741 /*
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3742 * Check if "acl" contains inherited ACE.
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3743 */
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3744 static BOOL
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3745 is_acl_inherited(PACL acl)
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3746 {
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3747 DWORD i;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3748 ACL_SIZE_INFORMATION acl_info;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3749 PACCESS_ALLOWED_ACE ace;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3750
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3751 acl_info.AceCount = 0;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3752 GetAclInformation(acl, &acl_info, sizeof(acl_info), AclSizeInformation);
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3753 for (i = 0; i < acl_info.AceCount; i++)
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3754 {
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3755 GetAce(acl, i, (LPVOID *)&ace);
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3756 if (ace->Header.AceFlags & INHERITED_ACE)
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3757 return TRUE;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3758 }
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3759 return FALSE;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3760 }
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3761 #endif
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3762
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3763 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3764 * Set the ACL of file "fname" to "acl" (unless it's NULL).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3765 * Errors are ignored.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3766 * This must only be called with "acl" equal to what mch_get_acl() returned.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3767 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3768 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3769 mch_set_acl(char_u *fname, vim_acl_T acl)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3770 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3771 #ifdef HAVE_ACL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3772 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
3773 SECURITY_INFORMATION sec_info = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3774
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3775 if (p != NULL)
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3776 {
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3777 # ifdef FEAT_MBYTE
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3778 WCHAR *wn = NULL;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3779 # endif
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3780
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3781 /* Set security flags */
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3782 if (p->pSidOwner)
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3783 sec_info |= OWNER_SECURITY_INFORMATION;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3784 if (p->pSidGroup)
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3785 sec_info |= GROUP_SECURITY_INFORMATION;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3786 if (p->pDacl)
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3787 {
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3788 sec_info |= DACL_SECURITY_INFORMATION;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3789 /* Do not inherit its parent's DACL.
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3790 * If the DACL is inherited, Cygwin permissions would be changed.
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3791 */
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3792 if (!is_acl_inherited(p->pDacl))
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3793 sec_info |= PROTECTED_DACL_SECURITY_INFORMATION;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3794 }
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3795 if (p->pSacl)
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3796 sec_info |= SACL_SECURITY_INFORMATION;
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3797
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3798 # ifdef FEAT_MBYTE
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3799 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3800 wn = enc_to_utf16(fname, NULL);
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3801 if (wn != NULL)
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3802 {
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3803 (void)SetNamedSecurityInfoW(
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3804 wn, // Abstract filename
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3805 SE_FILE_OBJECT, // File Object
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3806 sec_info,
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3807 p->pSidOwner, // Ownership information.
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3808 p->pSidGroup, // Group membership.
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3809 p->pDacl, // Discretionary information.
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3810 p->pSacl // For auditing purposes.
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3811 );
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3812 vim_free(wn);
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3813 }
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3814 else
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3815 # endif
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3816 {
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
3817 (void)SetNamedSecurityInfo(
5047
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3818 (LPSTR)fname, // Abstract filename
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3819 SE_FILE_OBJECT, // File Object
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3820 sec_info,
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3821 p->pSidOwner, // Ownership information.
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3822 p->pSidGroup, // Group membership.
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3823 p->pDacl, // Discretionary information.
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3824 p->pSacl // For auditing purposes.
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3825 );
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3826 }
cabdcfe72dc3 updated for version 7.3.1267
Bram Moolenaar <bram@vim.org>
parents: 4930
diff changeset
3827 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3828 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3829 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3830
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3831 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3832 mch_free_acl(vim_acl_T acl)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3833 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3834 #ifdef HAVE_ACL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3835 struct my_acl *p = (struct my_acl *)acl;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3836
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3837 if (p != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3838 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3839 LocalFree(p->pSecurityDescriptor); // Free the memory just in case
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3840 vim_free(p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3841 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3842 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3843 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3844
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3845 #ifndef FEAT_GUI_W32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3846
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3847 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3848 * handler for ctrl-break, ctrl-c interrupts, and fatal events.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3849 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3850 static BOOL WINAPI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3851 handler_routine(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3852 DWORD dwCtrlType)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3853 {
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
3854 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
3855 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
3856
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3857 switch (dwCtrlType)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3858 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3859 case CTRL_C_EVENT:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3860 if (ctrl_c_interrupts)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3861 g_fCtrlCPressed = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3862 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3863
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3864 case CTRL_BREAK_EVENT:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3865 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
3866 ctrl_break_was_pressed = 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
3867 /* ReadConsoleInput is blocking, send a key event to continue. */
ca55e69d9d1b patch 8.0.0917: MS-Windows:CTRL-C handling in terminal window is wrong
Christian Brabandt <cb@256bit.org>
parents: 12066
diff changeset
3868 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
3869 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
3870 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
3871 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
3872 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
3873 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
3874 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
3875 WriteConsoleInput(g_hConIn, &ir, 1, &out);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3876 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3877
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3878 /* fatal events: shut down gracefully */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3879 case CTRL_CLOSE_EVENT:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3880 case CTRL_LOGOFF_EVENT:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3881 case CTRL_SHUTDOWN_EVENT:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3882 windgoto((int)Rows - 1, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3883 g_fForceExit = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3884
1569
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
3885 vim_snprintf((char *)IObuff, IOSIZE, _("Vim: Caught %s event\n"),
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3886 (dwCtrlType == CTRL_CLOSE_EVENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3887 ? _("close")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3888 : dwCtrlType == CTRL_LOGOFF_EVENT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3889 ? _("logoff")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3890 : _("shutdown")));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3891 #ifdef DEBUG
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3892 OutputDebugString(IObuff);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3893 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3894
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3895 preserve_exit(); /* output IObuff, preserve files and exit */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3896
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3897 return TRUE; /* not reached */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3898
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3899 default:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3900 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3901 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3902 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3903
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3904
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3905 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3906 * set the tty in (raw) ? "raw" : "cooked" mode
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3907 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3908 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3909 mch_settmode(int tmode)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3910 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3911 DWORD cmodein;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3912 DWORD cmodeout;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3913 BOOL bEnableHandler;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3914
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3915 GetConsoleMode(g_hConIn, &cmodein);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3916 GetConsoleMode(g_hConOut, &cmodeout);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3917 if (tmode == TMODE_RAW)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3918 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3919 cmodein &= ~(ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3920 ENABLE_ECHO_INPUT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3921 #ifdef FEAT_MOUSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3922 if (g_fMouseActive)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3923 cmodein |= ENABLE_MOUSE_INPUT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3924 #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
3925 cmodeout &= ~(
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
3926 #ifdef FEAT_TERMGUICOLORS
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
3927 /* Do not turn off the ENABLE_PROCESSRD_OUTPUT flag when using
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
3928 * VTP. */
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
3929 ((vtp_working) ? 0 : ENABLE_PROCESSED_OUTPUT) |
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
3930 #else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
3931 ENABLE_PROCESSED_OUTPUT |
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
3932 #endif
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
3933 ENABLE_WRAP_AT_EOL_OUTPUT);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3934 bEnableHandler = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3935 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3936 else /* cooked */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3937 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3938 cmodein |= (ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT |
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3939 ENABLE_ECHO_INPUT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3940 cmodeout |= (ENABLE_PROCESSED_OUTPUT | ENABLE_WRAP_AT_EOL_OUTPUT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3941 bEnableHandler = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3942 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3943 SetConsoleMode(g_hConIn, cmodein);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3944 SetConsoleMode(g_hConOut, cmodeout);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3945 SetConsoleCtrlHandler(handler_routine, bEnableHandler);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3946
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3947 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3948 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3949 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3950 fprintf(fdDump, "mch_settmode(%s, in = %x, out = %x)\n",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3951 tmode == TMODE_RAW ? "raw" :
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3952 tmode == TMODE_COOK ? "cooked" : "normal",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3953 cmodein, cmodeout);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3954 fflush(fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3955 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3956 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3957 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3958
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3959
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3960 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3961 * Get the size of the current window in `Rows' and `Columns'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3962 * Return OK when size could be determined, FAIL otherwise.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3963 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3964 int
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
3965 mch_get_shellsize(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3966 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3967 CONSOLE_SCREEN_BUFFER_INFO csbi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3968
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3969 if (!g_fTermcapMode && g_cbTermcap.IsValid)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3970 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3971 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3972 * For some reason, we are trying to get the screen dimensions
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3973 * even though we are not in termcap mode. The 'Rows' and 'Columns'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3974 * variables are really intended to mean the size of Vim screen
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3975 * while in termcap mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3976 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3977 Rows = g_cbTermcap.Info.dwSize.Y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3978 Columns = g_cbTermcap.Info.dwSize.X;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3979 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3980 else if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3981 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3982 Rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3983 Columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3984 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3985 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3986 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3987 Rows = 25;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3988 Columns = 80;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3989 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3990 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3991 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3992
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3993 /*
14473
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
3994 * 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
3995 */
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
3996 static void
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
3997 ResizeConBuf(
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
3998 HANDLE hConsole,
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
3999 COORD coordScreen)
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4000 {
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4001 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
4002 {
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4003 #ifdef MCH_WRITE_DUMP
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4004 if (fdDump)
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4005 {
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4006 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
4007 GetLastError());
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4008 fflush(fdDump);
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4009 }
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4010 #endif
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4011 }
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4012 }
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4013
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4014 /*
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4015 * 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
4016 */
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4017 static void
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4018 ResizeWindow(
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4019 HANDLE hConsole,
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4020 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
4021 {
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4022 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
4023 {
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4024 #ifdef MCH_WRITE_DUMP
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4025 if (fdDump)
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4026 {
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4027 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
4028 GetLastError());
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4029 fflush(fdDump);
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4030 }
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4031 #endif
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4032 }
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4033 }
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4034
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4035 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4036 * Set a console window to `xSize' * `ySize'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4037 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4038 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4039 ResizeConBufAndWindow(
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4040 HANDLE hConsole,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4041 int xSize,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4042 int ySize)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4043 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4044 CONSOLE_SCREEN_BUFFER_INFO csbi; /* hold current console buffer info */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4045 SMALL_RECT srWindowRect; /* hold the new console size */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4046 COORD coordScreen;
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
4047 static int resized = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4048
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4049 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4050 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4051 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4052 fprintf(fdDump, "ResizeConBufAndWindow(%d, %d)\n", xSize, ySize);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4053 fflush(fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4054 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4055 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4056
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4057 /* get the largest size we can size the console window to */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4058 coordScreen = GetLargestConsoleWindowSize(hConsole);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4059
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4060 /* define the new console window size and scroll position */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4061 srWindowRect.Left = srWindowRect.Top = (SHORT) 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4062 srWindowRect.Right = (SHORT) (min(xSize, coordScreen.X) - 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4063 srWindowRect.Bottom = (SHORT) (min(ySize, coordScreen.Y) - 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4064
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4065 if (GetConsoleScreenBufferInfo(g_hConOut, &csbi))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4066 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4067 int sx, sy;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4068
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4069 sx = csbi.srWindow.Right - csbi.srWindow.Left + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4070 sy = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4071 if (sy < ySize || sx < xSize)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4072 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4073 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4074 * Increasing number of lines/columns, do buffer first.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4075 * Use the maximal size in x and y direction.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4076 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4077 if (sy < ySize)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4078 coordScreen.Y = ySize;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4079 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4080 coordScreen.Y = sy;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4081 if (sx < xSize)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4082 coordScreen.X = xSize;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4083 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4084 coordScreen.X = sx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4085 SetConsoleScreenBufferSize(hConsole, coordScreen);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4086 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4087 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4088
14473
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4089 // define the new console buffer size
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4090 coordScreen.X = xSize;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4091 coordScreen.Y = ySize;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4092
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
4093 // 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
4094 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
4095 {
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4096 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
4097 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
4098 }
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4099 else
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4100 {
2771a99db70c patch 8.1.0250: MS-Windows using VTP: windows size change incorrect
Christian Brabandt <cb@256bit.org>
parents: 14139
diff changeset
4101 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
4102 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
4103 resized = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4104 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4105 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4106
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4107
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4108 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4109 * Set the console window to `Rows' * `Columns'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4110 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4111 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4112 mch_set_shellsize(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4113 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4114 COORD coordScreen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4115
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4116 /* Don't change window size while still starting up */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4117 if (suppress_winsize != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4118 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4119 suppress_winsize = 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4120 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4121 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4122
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4123 if (term_console)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4124 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4125 coordScreen = GetLargestConsoleWindowSize(g_hConOut);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4126
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4127 /* Clamp Rows and Columns to reasonable values */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4128 if (Rows > coordScreen.Y)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4129 Rows = coordScreen.Y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4130 if (Columns > coordScreen.X)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4131 Columns = coordScreen.X;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4132
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4133 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4134 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4135 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4136
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4137 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4138 * Rows and/or Columns has changed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4139 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4140 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4141 mch_new_shellsize(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4142 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4143 set_scroll_region(0, 0, Columns - 1, Rows - 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4144 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4145
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4146
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4147 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4148 * Called when started up, to set the winsize that was delayed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4149 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4150 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4151 mch_set_winsize_now(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4152 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4153 if (suppress_winsize == 2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4154 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4155 suppress_winsize = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4156 mch_set_shellsize();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4157 shell_resized();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4158 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4159 suppress_winsize = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4160 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4161 #endif /* FEAT_GUI_W32 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4162
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4163 static BOOL
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4164 vim_create_process(
5556
b14554844756 updated for version 7.4.126
Bram Moolenaar <bram@vim.org>
parents: 5553
diff changeset
4165 char *cmd,
5569
1b09d6792520 updated for version 7.4.132
Bram Moolenaar <bram@vim.org>
parents: 5556
diff changeset
4166 BOOL inherit_handles,
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4167 DWORD flags,
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4168 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
4169 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
4170 LPVOID *env,
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4171 char *cwd)
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4172 {
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
4173 #ifdef FEAT_MBYTE
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4174 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4175 {
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4176 BOOL ret;
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4177 WCHAR *wcmd, *wcwd = NULL;
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4178
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4179 wcmd = enc_to_utf16((char_u *)cmd, NULL);
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4180 if (wcmd == NULL)
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4181 goto fallback;
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4182 if (cwd != NULL)
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4183 {
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4184 wcwd = enc_to_utf16((char_u *)cwd, NULL);
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4185 if (wcwd == NULL)
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4186 {
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4187 vim_free(wcmd);
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4188 goto fallback;
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4189 }
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4190 }
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4191
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4192 ret = CreateProcessW(
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4193 NULL, /* Executable name */
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4194 wcmd, /* Command to execute */
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4195 NULL, /* Process security attributes */
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4196 NULL, /* Thread security attributes */
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4197 inherit_handles, /* Inherit handles */
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4198 flags, /* Creation flags */
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4199 env, /* Environment */
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4200 wcwd, /* Current directory */
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4201 (LPSTARTUPINFOW)si, /* Startup information */
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4202 pi); /* Process information */
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4203 vim_free(wcmd);
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4204 if (wcwd != NULL)
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4205 vim_free(wcwd);
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4206 return ret;
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4207 }
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4208 fallback:
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4209 #endif
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4210 return CreateProcess(
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4211 NULL, /* Executable name */
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4212 cmd, /* Command to execute */
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4213 NULL, /* Process security attributes */
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4214 NULL, /* Thread security attributes */
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4215 inherit_handles, /* Inherit handles */
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4216 flags, /* Creation flags */
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4217 env, /* Environment */
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
4218 cwd, /* Current directory */
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4219 si, /* Startup information */
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4220 pi); /* Process information */
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4221 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4222
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4223
11230
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4224 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
4225 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
4226 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
4227 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
4228 {
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4229 #ifdef FEAT_MBYTE
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4230 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4231 {
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4232 WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL);
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4233 if (wcmd != NULL)
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4234 {
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4235 HINSTANCE ret;
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4236 ret = ShellExecuteW(NULL, NULL, wcmd, NULL, NULL, 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
4237 vim_free(wcmd);
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4238 return ret;
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4239 }
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4240 }
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4241 #endif
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4242 return ShellExecute(NULL, NULL, cmd, NULL, NULL, 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
4243 }
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4244
a3ea65af63cf patch 8.0.0501: on MS-Windows ":!start" does not work as expected
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
4245
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4246 #if defined(FEAT_GUI_W32) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4247
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4248 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4249 * Specialised version of system() for Win32 GUI mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4250 * This version proceeds as follows:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4251 * 1. Create a console window for use by the subprocess
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4252 * 2. Run the subprocess (it gets the allocated console by default)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4253 * 3. Wait for the subprocess to terminate and get its exit code
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4254 * 4. Prompt the user to press a key to close the console window
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4255 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4256 static int
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4257 mch_system_classic(char *cmd, int options)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4258 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4259 STARTUPINFO si;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4260 PROCESS_INFORMATION pi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4261 DWORD ret = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4262 HWND hwnd = GetFocus();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4263
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4264 si.cb = sizeof(si);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4265 si.lpReserved = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4266 si.lpDesktop = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4267 si.lpTitle = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4268 si.dwFlags = STARTF_USESHOWWINDOW;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4269 /*
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
4270 * 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
4271 * Don't activate the window to keep focus on Vim.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4272 */
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
4273 if (options & SHELL_DOOUT)
2643
e6372ac3ebe5 updated for version 7.3.063
Bram Moolenaar <bram@vim.org>
parents: 2630
diff changeset
4274 si.wShowWindow = SW_SHOWMINNOACTIVE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4275 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4276 si.wShowWindow = SW_SHOWNORMAL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4277 si.cbReserved2 = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4278 si.lpReserved2 = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4279
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4280 /* Now, run the command */
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4281 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
4282 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
4283 &si, &pi, NULL, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4284
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4285 /* Wait for the command to terminate before continuing */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4286 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4287 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4288 int delay = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4289
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4290 /* Keep updating the window while waiting for the shell to finish. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4291 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4292 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4293 MSG msg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4294
3010
e5b17a5f6516 updated for version 7.3.277
Bram Moolenaar <bram@vim.org>
parents: 2935
diff changeset
4295 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4296 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4297 TranslateMessage(&msg);
3010
e5b17a5f6516 updated for version 7.3.277
Bram Moolenaar <bram@vim.org>
parents: 2935
diff changeset
4298 pDispatchMessage(&msg);
3720
27ecf0c87bd2 updated for version 7.3.619
Bram Moolenaar <bram@vim.org>
parents: 3691
diff changeset
4299 delay = 1;
27ecf0c87bd2 updated for version 7.3.619
Bram Moolenaar <bram@vim.org>
parents: 3691
diff changeset
4300 continue;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4301 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4302 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4303 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4304
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4305 /* We start waiting for a very short time and then increase it, so
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4306 * that we respond quickly when the process is quick, and don't
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4307 * consume too much overhead when it's slow. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4308 if (delay < 50)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4309 delay += 10;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4310 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4311 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4312 WaitForSingleObject(pi.hProcess, INFINITE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4313 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4314
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4315 /* Get the command exit code */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4316 GetExitCodeProcess(pi.hProcess, &ret);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4317 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4318
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4319 /* Close the handles to the subprocess, so that it goes away */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4320 CloseHandle(pi.hThread);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4321 CloseHandle(pi.hProcess);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4322
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4323 /* Try to get input focus back. Doesn't always work though. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4324 PostMessage(hwnd, WM_SETFOCUS, 0, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4325
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4326 return ret;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4327 }
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4328
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4329 /*
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4330 * 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
4331 * 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
4332 * 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
4333 */
9750
0f4b76b2757a commit https://github.com/vim/vim/commit/4c38d66d25e4ba433fe87283a4664425a3dbd529
Christian Brabandt <cb@256bit.org>
parents: 9740
diff changeset
4334 static unsigned int __stdcall
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4335 sub_process_writer(LPVOID param)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4336 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4337 HANDLE g_hChildStd_IN_Wr = param;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4338 linenr_T lnum = curbuf->b_op_start.lnum;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4339 DWORD len = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4340 DWORD l;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4341 char_u *lp = ml_get(lnum);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4342 char_u *s;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4343 int written = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4344
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4345 for (;;)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4346 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4347 l = (DWORD)STRLEN(lp + written);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4348 if (l == 0)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4349 len = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4350 else if (lp[written] == NL)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4351 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4352 /* NL -> NUL translation */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4353 WriteFile(g_hChildStd_IN_Wr, "", 1, &len, NULL);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4354 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4355 else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4356 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4357 s = vim_strchr(lp + written, NL);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4358 WriteFile(g_hChildStd_IN_Wr, (char *)lp + written,
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4359 s == NULL ? l : (DWORD)(s - (lp + written)),
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4360 &len, NULL);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4361 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4362 if (len == (int)l)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4363 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4364 /* Finished a line, add a NL, unless this line should not have
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4365 * one. */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4366 if (lnum != curbuf->b_op_end.lnum
6933
62ba356c2d4e patch 7.4.785
Bram Moolenaar <bram@vim.org>
parents: 6710
diff changeset
4367 || (!curbuf->b_p_bin
62ba356c2d4e patch 7.4.785
Bram Moolenaar <bram@vim.org>
parents: 6710
diff changeset
4368 && curbuf->b_p_fixeol)
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4369 || (lnum != curbuf->b_no_eol_lnum
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4370 && (lnum != curbuf->b_ml.ml_line_count
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4371 || curbuf->b_p_eol)))
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4372 {
14730
193471015e1a patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents: 14673
diff changeset
4373 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
4374 (LPDWORD)&vim_ignored, NULL);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4375 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4376
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4377 ++lnum;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4378 if (lnum > curbuf->b_op_end.lnum)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4379 break;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4380
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4381 lp = ml_get(lnum);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4382 written = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4383 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4384 else if (len > 0)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4385 written += len;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4386 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4387
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4388 /* finished all the lines, close pipe */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4389 CloseHandle(g_hChildStd_IN_Wr);
9740
4665d491a69e commit https://github.com/vim/vim/commit/86f2cd5bc574c23fa276d7f57cd1300e24222913
Christian Brabandt <cb@256bit.org>
parents: 9387
diff changeset
4390 return 0;
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4391 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4392
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4393
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4394 # define BUFLEN 100 /* length for buffer, stolen from unix version */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4395
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4396 /*
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4397 * 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
4398 * data on screen or in the buffer accordingly.
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4399 */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4400 static void
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4401 dump_pipe(int options,
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4402 HANDLE g_hChildStd_OUT_Rd,
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4403 garray_T *ga,
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4404 char_u buffer[],
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4405 DWORD *buffer_off)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4406 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4407 DWORD availableBytes = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4408 DWORD i;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4409 int ret;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4410 DWORD len;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4411 DWORD toRead;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4412 int repeatCount;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4413
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4414 /* we query the pipe to see if there is any data to read
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4415 * to avoid to perform a blocking read */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4416 ret = PeekNamedPipe(g_hChildStd_OUT_Rd, /* pipe to query */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4417 NULL, /* optional buffer */
3622
43fd3896fab7 updated for version 7.3.571
Bram Moolenaar <bram@vim.org>
parents: 3386
diff changeset
4418 0, /* buffer size */
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4419 NULL, /* number of read bytes */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4420 &availableBytes, /* available bytes total */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4421 NULL); /* byteLeft */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4422
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4423 repeatCount = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4424 /* 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
4425 while (ret != 0 && availableBytes > 0)
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4426 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4427 repeatCount++;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4428 toRead =
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4429 # ifdef FEAT_MBYTE
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4430 (DWORD)(BUFLEN - *buffer_off);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4431 # else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4432 (DWORD)BUFLEN;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4433 # endif
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4434 toRead = availableBytes < toRead ? availableBytes : toRead;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4435 ReadFile(g_hChildStd_OUT_Rd, buffer
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4436 # ifdef FEAT_MBYTE
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4437 + *buffer_off, toRead
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4438 # else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4439 , toRead
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4440 # endif
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4441 , &len, NULL);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4442
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4443 /* If we haven't read anything, there is a problem */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4444 if (len == 0)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4445 break;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4446
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4447 availableBytes -= len;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4448
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4449 if (options & SHELL_READ)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4450 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4451 /* Do NUL -> NL translation, append NL separated
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4452 * lines to the current buffer. */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4453 for (i = 0; i < len; ++i)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4454 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4455 if (buffer[i] == NL)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4456 append_ga_line(ga);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4457 else if (buffer[i] == NUL)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4458 ga_append(ga, NL);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4459 else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4460 ga_append(ga, buffer[i]);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4461 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4462 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4463 # ifdef FEAT_MBYTE
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4464 else if (has_mbyte)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4465 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4466 int l;
3030
07bc2ccfe555 updated for version 7.3.287
Bram Moolenaar <bram@vim.org>
parents: 3010
diff changeset
4467 int c;
07bc2ccfe555 updated for version 7.3.287
Bram Moolenaar <bram@vim.org>
parents: 3010
diff changeset
4468 char_u *p;
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4469
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4470 len += *buffer_off;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4471 buffer[len] = NUL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4472
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4473 /* Check if the last character in buffer[] is
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4474 * incomplete, keep these bytes for the next
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4475 * round. */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4476 for (p = buffer; p < buffer + len; p += l)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4477 {
9898
bff8a09016a5 commit https://github.com/vim/vim/commit/d3c907b5d2b352482b580a0cf687cbbea4c19ea1
Christian Brabandt <cb@256bit.org>
parents: 9762
diff changeset
4478 l = MB_CPTR2LEN(p);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4479 if (l == 0)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4480 l = 1; /* NUL byte? */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4481 else if (MB_BYTE2LEN(*p) != l)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4482 break;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4483 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4484 if (p == buffer) /* no complete character */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4485 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4486 /* avoid getting stuck at an illegal byte */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4487 if (len >= 12)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4488 ++p;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4489 else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4490 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4491 *buffer_off = len;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4492 return;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4493 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4494 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4495 c = *p;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4496 *p = NUL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4497 msg_puts(buffer);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4498 if (p < buffer + len)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4499 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4500 *p = c;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4501 *buffer_off = (DWORD)((buffer + len) - p);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4502 mch_memmove(buffer, p, *buffer_off);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4503 return;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4504 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4505 *buffer_off = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4506 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4507 # endif /* FEAT_MBYTE */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4508 else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4509 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4510 buffer[len] = NUL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4511 msg_puts(buffer);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4512 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4513
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4514 windgoto(msg_row, msg_col);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4515 cursor_on();
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4516 out_flush();
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4517 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4518 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4519
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4520 /*
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4521 * 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
4522 * 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
4523 */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4524 static int
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4525 mch_system_piped(char *cmd, int options)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4526 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4527 STARTUPINFO si;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4528 PROCESS_INFORMATION pi;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4529 DWORD ret = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4530
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4531 HANDLE g_hChildStd_IN_Rd = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4532 HANDLE g_hChildStd_IN_Wr = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4533 HANDLE g_hChildStd_OUT_Rd = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4534 HANDLE g_hChildStd_OUT_Wr = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4535
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4536 char_u buffer[BUFLEN + 1]; /* reading buffer + size */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4537 DWORD len;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4538
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4539 /* buffer used to receive keys */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4540 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4541 int ta_len = 0; /* valid bytes in ta_buf[] */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4542
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4543 DWORD i;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4544 int c;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4545 int noread_cnt = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4546 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
4547 int delay = 1;
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4548 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
4549 char *p = NULL;
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4550
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4551 SECURITY_ATTRIBUTES saAttr;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4552
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4553 /* Set the bInheritHandle flag so pipe handles are inherited. */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4554 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4555 saAttr.bInheritHandle = TRUE;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4556 saAttr.lpSecurityDescriptor = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4557
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4558 if ( ! CreatePipe(&g_hChildStd_OUT_Rd, &g_hChildStd_OUT_Wr, &saAttr, 0)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4559 /* 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
4560 || ! SetHandleInformation(g_hChildStd_OUT_Rd, HANDLE_FLAG_INHERIT, 0)
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4561 /* Create a pipe for the child process's STDIN. */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4562 || ! CreatePipe(&g_hChildStd_IN_Rd, &g_hChildStd_IN_Wr, &saAttr, 0)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4563 /* 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
4564 || ! 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
4565 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4566 CloseHandle(g_hChildStd_IN_Rd);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4567 CloseHandle(g_hChildStd_IN_Wr);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4568 CloseHandle(g_hChildStd_OUT_Rd);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4569 CloseHandle(g_hChildStd_OUT_Wr);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4570 MSG_PUTS(_("\nCannot create pipes\n"));
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4571 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4572
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4573 si.cb = sizeof(si);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4574 si.lpReserved = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4575 si.lpDesktop = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4576 si.lpTitle = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4577 si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4578
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4579 /* set-up our file redirection */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4580 si.hStdError = g_hChildStd_OUT_Wr;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4581 si.hStdOutput = g_hChildStd_OUT_Wr;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4582 si.hStdInput = g_hChildStd_IN_Rd;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4583 si.wShowWindow = SW_HIDE;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4584 si.cbReserved2 = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4585 si.lpReserved2 = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4586
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4587 if (options & SHELL_READ)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4588 ga_init2(&ga, 1, BUFLEN);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4589
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
4590 if (cmd != NULL)
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
4591 {
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
4592 p = (char *)vim_strsave((char_u *)cmd);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
4593 if (p != NULL)
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
4594 unescape_shellxquote((char_u *)p, p_sxe);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
4595 else
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
4596 p = cmd;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
4597 }
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
4598
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4599 /* Now, run the command.
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4600 * About "Inherit handles" being TRUE: this command can be litigious,
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4601 * handle inheritance was deactivated for pending temp file, but, if we
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4602 * 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
4603 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
4604 &si, &pi, NULL, NULL);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4605
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
4606 if (p != cmd)
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
4607 vim_free(p);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4608
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4609 /* Close our unused side of the pipes */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4610 CloseHandle(g_hChildStd_IN_Rd);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4611 CloseHandle(g_hChildStd_OUT_Wr);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4612
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4613 if (options & SHELL_WRITE)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4614 {
9740
4665d491a69e commit https://github.com/vim/vim/commit/86f2cd5bc574c23fa276d7f57cd1300e24222913
Christian Brabandt <cb@256bit.org>
parents: 9387
diff changeset
4615 HANDLE thread = (HANDLE)
4665d491a69e commit https://github.com/vim/vim/commit/86f2cd5bc574c23fa276d7f57cd1300e24222913
Christian Brabandt <cb@256bit.org>
parents: 9387
diff changeset
4616 _beginthreadex(NULL, /* security attributes */
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4617 0, /* default stack size */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4618 sub_process_writer, /* function to be executed */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4619 g_hChildStd_IN_Wr, /* parameter */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4620 0, /* creation flag, start immediately */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4621 NULL); /* we don't care about thread id */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4622 CloseHandle(thread);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4623 g_hChildStd_IN_Wr = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4624 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4625
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4626 /* Keep updating the window while waiting for the shell to finish. */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4627 for (;;)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4628 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4629 MSG msg;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4630
5553
45ef9d2096e8 updated for version 7.4.125
Bram Moolenaar <bram@vim.org>
parents: 5551
diff changeset
4631 if (pPeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE))
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4632 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4633 TranslateMessage(&msg);
5553
45ef9d2096e8 updated for version 7.4.125
Bram Moolenaar <bram@vim.org>
parents: 5551
diff changeset
4634 pDispatchMessage(&msg);
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4635 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4636
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4637 /* write pipe information in the window */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4638 if ((options & (SHELL_READ|SHELL_WRITE))
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4639 # ifdef FEAT_GUI
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4640 || gui.in_use
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4641 # endif
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4642 )
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4643 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4644 len = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4645 if (!(options & SHELL_EXPAND)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4646 && ((options &
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4647 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4648 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4649 # ifdef FEAT_GUI
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4650 || gui.in_use
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4651 # endif
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4652 )
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4653 && (ta_len > 0 || noread_cnt > 4))
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4654 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4655 if (ta_len == 0)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4656 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4657 /* Get extra characters when we don't have any. Reset the
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4658 * counter and timer. */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4659 noread_cnt = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4660 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4661 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4662 if (ta_len > 0 || len > 0)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4663 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4664 /*
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4665 * 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
4666 * 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
4667 */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4668 if (len == 1 && cmd != NULL)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4669 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4670 if (ta_buf[ta_len] == Ctrl_C)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4671 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4672 /* Learn what exit code is expected, for
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4673 * now put 9 as SIGKILL */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4674 TerminateProcess(pi.hProcess, 9);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4675 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4676 if (ta_buf[ta_len] == Ctrl_D)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4677 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4678 CloseHandle(g_hChildStd_IN_Wr);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4679 g_hChildStd_IN_Wr = NULL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4680 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4681 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4682
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4683 /* replace K_BS by <BS> and K_DEL by <DEL> */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4684 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
4685 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4686 if (ta_buf[i] == CSI && len - i > 2)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4687 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4688 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4689 if (c == K_DEL || c == K_KDEL || c == K_BS)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4690 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4691 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4692 (size_t)(len - i - 2));
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4693 if (c == K_DEL || c == K_KDEL)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4694 ta_buf[i] = DEL;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4695 else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4696 ta_buf[i] = Ctrl_H;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4697 len -= 2;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4698 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4699 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4700 else if (ta_buf[i] == '\r')
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4701 ta_buf[i] = '\n';
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4702 # ifdef FEAT_MBYTE
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4703 if (has_mbyte)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4704 i += (*mb_ptr2len_len)(ta_buf + i,
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4705 ta_len + len - i) - 1;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4706 # endif
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4707 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4708
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4709 /*
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4710 * 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
4711 * does not seem to work.
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4712 */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4713 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
4714 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4715 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
4716 msg_putchar(ta_buf[i]);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4717 # ifdef FEAT_MBYTE
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4718 else if (has_mbyte)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4719 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4720 int l = (*mb_ptr2len)(ta_buf + i);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4721
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4722 msg_outtrans_len(ta_buf + i, l);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4723 i += l - 1;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4724 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4725 # endif
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4726 else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4727 msg_outtrans_len(ta_buf + i, 1);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4728 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4729 windgoto(msg_row, msg_col);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4730 out_flush();
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4731
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4732 ta_len += len;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4733
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4734 /*
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4735 * 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
4736 * 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
4737 * avoid losing too much typeahead. When writing buffer
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4738 * lines, drop the typed characters (only check for
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4739 * CTRL-C).
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4740 */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4741 if (options & SHELL_WRITE)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4742 ta_len = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4743 else if (g_hChildStd_IN_Wr != NULL)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4744 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4745 WriteFile(g_hChildStd_IN_Wr, (char*)ta_buf,
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4746 1, &len, NULL);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4747 // 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
4748 delay = 1;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4749 if (len > 0)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4750 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4751 ta_len -= len;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4752 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
4753 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4754 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4755 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4756 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4757 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4758
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4759 if (ta_len)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4760 ui_inchar_undo(ta_buf, ta_len);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4761
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4762 if (WaitForSingleObject(pi.hProcess, delay) != WAIT_TIMEOUT)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4763 {
3030
07bc2ccfe555 updated for version 7.3.287
Bram Moolenaar <bram@vim.org>
parents: 3010
diff changeset
4764 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
4765 break;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4766 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4767
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4768 ++noread_cnt;
3030
07bc2ccfe555 updated for version 7.3.287
Bram Moolenaar <bram@vim.org>
parents: 3010
diff changeset
4769 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
4770
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4771 /* We start waiting for a very short time and then increase it, so
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4772 * that we respond quickly when the process is quick, and don't
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4773 * consume too much overhead when it's slow. */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4774 if (delay < 50)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4775 delay += 10;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4776 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4777
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4778 /* Close the pipe */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4779 CloseHandle(g_hChildStd_OUT_Rd);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4780 if (g_hChildStd_IN_Wr != NULL)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4781 CloseHandle(g_hChildStd_IN_Wr);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4782
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4783 WaitForSingleObject(pi.hProcess, INFINITE);
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 /* Get the command exit code */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4786 GetExitCodeProcess(pi.hProcess, &ret);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4787
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4788 if (options & SHELL_READ)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4789 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4790 if (ga.ga_len > 0)
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 append_ga_line(&ga);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4793 /* remember that the NL was missing */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4794 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
4795 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4796 else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4797 curbuf->b_no_eol_lnum = 0;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4798 ga_clear(&ga);
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
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4801 /* Close the handles to the subprocess, so that it goes away */
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4802 CloseHandle(pi.hThread);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4803 CloseHandle(pi.hProcess);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4804
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4805 return ret;
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4806 }
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4807
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4808 static int
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4809 mch_system(char *cmd, int options)
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4810 {
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4811 /* 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
4812 if (!p_stmp)
2935
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4813 return mch_system_piped(cmd, options);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4814 else
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4815 return mch_system_classic(cmd, options);
bf283e37792b updated for version 7.3.240
Bram Moolenaar <bram@vim.org>
parents: 2859
diff changeset
4816 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4817 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4818
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4819 # ifdef FEAT_MBYTE
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4820 static int
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
4821 mch_system(char *cmd, int options)
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4822 {
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4823 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4824 {
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
4825 WCHAR *wcmd = enc_to_utf16((char_u *)cmd, NULL);
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4826 if (wcmd != NULL)
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4827 {
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4828 int ret = _wsystem(wcmd);
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4829 vim_free(wcmd);
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4830 return ret;
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4831 }
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4832 }
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4833 return system(cmd);
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4834 }
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4835 # else
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
4836 # define mch_system(c, o) system(c)
5547
270c62fe685a updated for version 7.4.122
Bram Moolenaar <bram@vim.org>
parents: 5529
diff changeset
4837 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4838
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4839 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4840
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
4841 #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
4842 /*
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4843 * 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
4844 */
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4845 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
4846 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
4847 char_u *cmd,
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4848 int options UNUSED) /* SHELL_*, see vim.h */
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4849 {
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4850 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
4851 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
4852 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
4853 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
4854 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
4855 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
4856 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
4857 aco_save_T aco;
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4858 oparg_T oa; /* operator arguments */
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4859
13487
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
4860 if (cmd == NULL)
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
4861 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
4862 else
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
4863 cmdlen = STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10;
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
4864 newcmd = lalloc(cmdlen, 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
4865 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
4866 return 255;
13487
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
4867 if (cmd == NULL)
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
4868 {
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
4869 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
4870 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
4871 }
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
4872 else
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
4873 {
db5cc048222d patch 8.0.1617: Win32: :shell command in the GUI crashes
Christian Brabandt <cb@256bit.org>
parents: 13485
diff changeset
4874 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
4875 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
4876 }
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
4877
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4878 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
4879
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4880 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
4881 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
4882 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
4883 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
4884 if (buf == NULL)
cc7dc249e371 patch 8.0.1619: Win32 GUI: crash when winpty is not installed
Christian Brabandt <cb@256bit.org>
parents: 13487
diff changeset
4885 return 255;
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
4886
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
4887 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
4888 ++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
4889
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
4890 /* Find a window to make "buf" curbuf. */
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4891 aucmd_prepbuf(&aco, buf);
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4892
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4893 clear_oparg(&oa);
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4894 while (term_use_loop())
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4895 {
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4896 if (oa.op_type == OP_NOP && oa.regname == NUL && !VIsual_active)
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4897 {
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4898 /* If terminal_loop() returns OK we got a key that is handled
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4899 * in Normal model. We don't do redrawing anyway. */
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4900 if (terminal_loop(TRUE) == OK)
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4901 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
4902 }
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4903 else
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4904 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
4905 }
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
4906 retval = job->jv_exitval;
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
4907 ch_log(NULL, "system command finished");
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4908
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
4909 job_unref(job);
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
4910
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
4911 /* restore curwin/curbuf and a few other things */
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4912 aucmd_restbuf(&aco);
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4913
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4914 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
4915 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
4916
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4917 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
4918 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
4919 }
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4920 #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
4921
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4922 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4923 * Either execute a command by calling the shell or start a new shell
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4924 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4925 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4926 mch_call_shell(
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4927 char_u *cmd,
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
4928 int options) /* SHELL_*, see vim.h */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4929 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4930 int x = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4931 int tmode = cur_tmode;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4932 #ifdef FEAT_TITLE
6293
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
4933 char szShellTitle[512];
6290
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4934 # ifdef FEAT_MBYTE
6293
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
4935 int did_set_title = FALSE;
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
4936
6290
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4937 /* Change the title to reflect that we are in a subshell. */
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4938 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4939 {
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4940 WCHAR szShellTitle[512];
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4941
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4942 if (GetConsoleTitleW(szShellTitle,
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4943 sizeof(szShellTitle)/sizeof(WCHAR) - 4) > 0)
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4944 {
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4945 if (cmd == NULL)
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4946 wcscat(szShellTitle, L" :sh");
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4947 else
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4948 {
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
4949 WCHAR *wn = enc_to_utf16((char_u *)cmd, NULL);
6290
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4950
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4951 if (wn != NULL)
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4952 {
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4953 wcscat(szShellTitle, L" - !");
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4954 if ((wcslen(szShellTitle) + wcslen(wn) <
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4955 sizeof(szShellTitle)/sizeof(WCHAR)))
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4956 wcscat(szShellTitle, wn);
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4957 SetConsoleTitleW(szShellTitle);
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4958 vim_free(wn);
6293
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
4959 did_set_title = TRUE;
6290
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4960 }
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4961 }
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4962 }
e0f2ed0efb49 updated for version 7.4.479
Bram Moolenaar <bram@vim.org>
parents: 6262
diff changeset
4963 }
6293
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
4964 if (!did_set_title)
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
4965 # endif
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
4966 /* Change the title to reflect that we are in a subshell. */
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
4967 if (GetConsoleTitle(szShellTitle, sizeof(szShellTitle) - 4) > 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4968 {
6293
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
4969 if (cmd == NULL)
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
4970 strcat(szShellTitle, " :sh");
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
4971 else
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
4972 {
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
4973 strcat(szShellTitle, " - !");
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
4974 if ((strlen(szShellTitle) + strlen((char *)cmd)
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
4975 < sizeof(szShellTitle)))
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
4976 strcat(szShellTitle, (char *)cmd);
6293
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
4977 }
e3149e2b4152 updated for version 7.4.480
Bram Moolenaar <bram@vim.org>
parents: 6290
diff changeset
4978 SetConsoleTitle(szShellTitle);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4979 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4980 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4981
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4982 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4983
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4984 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4985 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4986 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4987 fprintf(fdDump, "mch_call_shell(\"%s\", %d)\n", cmd, options);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4988 fflush(fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4989 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4990 #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
4991 #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
4992 /* TODO: make the terminal window work with input or output redirected. */
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4993 if (vim_strchr(p_go, GO_TERMINAL) != 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
4994 && (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
4995 {
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4996 /* Use a terminal window to run the 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
4997 x = mch_call_shell_terminal(cmd, options);
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4998 #ifdef FEAT_TITLE
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
4999 resettitle();
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5000 #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
5001 return x;
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5002 }
f717be87320c patch 8.0.1616: Win32: shell commands in the GUI open a new console
Christian Brabandt <cb@256bit.org>
parents: 13433
diff changeset
5003 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5004
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5005 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5006 * Catch all deadly signals while running the external command, because a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5007 * CTRL-C, Ctrl-Break or illegal instruction might otherwise kill us.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5008 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5009 signal(SIGINT, SIG_IGN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5010 #if defined(__GNUC__) && !defined(__MINGW32__)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5011 signal(SIGKILL, SIG_IGN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5012 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5013 signal(SIGBREAK, SIG_IGN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5014 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5015 signal(SIGILL, SIG_IGN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5016 signal(SIGFPE, SIG_IGN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5017 signal(SIGSEGV, SIG_IGN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5018 signal(SIGTERM, SIG_IGN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5019 signal(SIGABRT, SIG_IGN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5020
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5021 if (options & SHELL_COOKED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5022 settmode(TMODE_COOK); /* set to normal mode */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5023
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5024 if (cmd == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5025 {
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
5026 x = mch_system((char *)p_sh, options);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5027 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5028 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5029 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5030 /* 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
5031 char_u *newcmd = NULL;
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5032 char_u *cmdbase = cmd;
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5033 long_u cmdlen;
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5034
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5035 /* Skip a leading ", ( and "(. */
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5036 if (*cmdbase == '"' )
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5037 ++cmdbase;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5038 if (*cmdbase == '(')
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5039 ++cmdbase;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5040
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
5041 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
5042 {
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5043 STARTUPINFO si;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5044 PROCESS_INFORMATION pi;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5045 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
5046 INT n_show_cmd = SW_SHOWNORMAL;
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5047 char_u *p;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5048
5627
f29febf858be updated for version 7.4.160
Bram Moolenaar <bram@vim.org>
parents: 5590
diff changeset
5049 ZeroMemory(&si, sizeof(si));
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5050 si.cb = sizeof(si);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5051 si.lpReserved = NULL;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5052 si.lpDesktop = NULL;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5053 si.lpTitle = NULL;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5054 si.dwFlags = 0;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5055 si.cbReserved2 = 0;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5056 si.lpReserved2 = NULL;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5057
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5058 cmdbase = skipwhite(cmdbase + 5);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5059 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
5060 && VIM_ISWHITE(cmdbase[4]))
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5061 {
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5062 cmdbase = skipwhite(cmdbase + 4);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5063 si.dwFlags = STARTF_USESHOWWINDOW;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5064 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
5065 n_show_cmd = SW_SHOWMINNOACTIVE;
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5066 }
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5067 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
5068 && VIM_ISWHITE(cmdbase[2]))
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5069 {
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5070 cmdbase = skipwhite(cmdbase + 2);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5071 flags = CREATE_NO_WINDOW;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5072 si.dwFlags = STARTF_USESTDHANDLES;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5073 si.hStdInput = CreateFile("\\\\.\\NUL", // File name
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5074 GENERIC_READ, // Access flags
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5075 0, // Share flags
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5076 NULL, // Security att.
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5077 OPEN_EXISTING, // Open flags
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5078 FILE_ATTRIBUTE_NORMAL, // File att.
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5079 NULL); // Temp file
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5080 si.hStdOutput = si.hStdInput;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5081 si.hStdError = si.hStdInput;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5082 }
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5083
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5084 /* Remove a trailing ", ) and )" if they have a match
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5085 * at the start of the command. */
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5086 if (cmdbase > cmd)
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5087 {
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5088 p = cmdbase + STRLEN(cmdbase);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5089 if (p > cmdbase && p[-1] == '"' && *cmd == '"')
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5090 *--p = NUL;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5091 if (p > cmdbase && p[-1] == ')'
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5092 && (*cmd =='(' || cmd[1] == '('))
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5093 *--p = NUL;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5094 }
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5095
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5096 newcmd = cmdbase;
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5097 unescape_shellxquote(cmdbase, p_sxe);
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5098
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5099 /*
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5100 * 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
5101 * '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
5102 * 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
5103 * shellxescape except '|' for avoiding to be treated as
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5104 * 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
5105 */
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5106 if (flags != CREATE_NEW_CONSOLE)
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5107 {
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5108 char_u *subcmd;
3367
3479ac596f6c updated for version 7.3.450
Bram Moolenaar <bram@vim.org>
parents: 3363
diff changeset
5109 char_u *cmd_shell = mch_getenv("COMSPEC");
3479ac596f6c updated for version 7.3.450
Bram Moolenaar <bram@vim.org>
parents: 3363
diff changeset
5110
3479ac596f6c updated for version 7.3.450
Bram Moolenaar <bram@vim.org>
parents: 3363
diff changeset
5111 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
5112 cmd_shell = (char_u *)default_shell();
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
5113
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
5114 subcmd = vim_strsave_escaped_ext(cmdbase,
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
5115 (char_u *)"|", '^', FALSE);
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5116 if (subcmd != NULL)
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5117 {
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5118 /* make "cmd.exe /c arguments" */
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5119 cmdlen = STRLEN(cmd_shell) + STRLEN(subcmd) + 5;
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5120 newcmd = lalloc(cmdlen, TRUE);
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5121 if (newcmd != NULL)
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5122 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
5123 cmd_shell, subcmd);
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5124 else
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5125 newcmd = cmdbase;
3367
3479ac596f6c updated for version 7.3.450
Bram Moolenaar <bram@vim.org>
parents: 3363
diff changeset
5126 vim_free(subcmd);
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5127 }
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5128 }
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5129
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5130 /*
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5131 * 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
5132 * inherit our handles which causes unpleasant dangling swap
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5133 * files if we exit before the spawned process
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5134 */
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5135 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
5136 &si, &pi, NULL, NULL))
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5137 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
5138 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
5139 > (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
5140 x = 0;
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5141 else
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5142 {
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5143 x = -1;
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5144 #ifdef FEAT_GUI_W32
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5145 EMSG(_("E371: Command not found"));
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5146 #endif
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5147 }
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5148
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5149 if (newcmd != cmdbase)
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5150 vim_free(newcmd);
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5151
5627
f29febf858be updated for version 7.4.160
Bram Moolenaar <bram@vim.org>
parents: 5590
diff changeset
5152 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
5153 {
5627
f29febf858be updated for version 7.4.160
Bram Moolenaar <bram@vim.org>
parents: 5590
diff changeset
5154 /* Close the handle to \\.\NUL created above. */
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5155 CloseHandle(si.hStdInput);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5156 }
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5157 /* Close the handles to the subprocess, so that it goes away */
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5158 CloseHandle(pi.hThread);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5159 CloseHandle(pi.hProcess);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5160 }
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5161 else
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5162 {
3363
756d712b3118 updated for version 7.3.448
Bram Moolenaar <bram@vim.org>
parents: 3361
diff changeset
5163 cmdlen = (
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5164 #ifdef FEAT_GUI_W32
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
5165 (!p_stmp ? 0 : STRLEN(vimrun_path)) +
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5166 #endif
1569
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
5167 STRLEN(p_sh) + STRLEN(p_shcf) + STRLEN(cmd) + 10);
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
5168
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5169 newcmd = lalloc(cmdlen, TRUE);
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5170 if (newcmd != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5171 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5172 #if defined(FEAT_GUI_W32)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5173 if (need_vimrun_warning)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5174 {
10400
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5175 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
5176 "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
5177 "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
5178 char *title = _("Vim Warning");
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5179 # ifdef FEAT_MBYTE
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5180 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5181 {
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5182 WCHAR *wmsg = enc_to_utf16((char_u *)msg, NULL);
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5183 WCHAR *wtitle = enc_to_utf16((char_u *)title, NULL);
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5184
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5185 if (wmsg != NULL && wtitle != NULL)
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5186 MessageBoxW(NULL, wmsg, wtitle, MB_ICONWARNING);
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5187 vim_free(wmsg);
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5188 vim_free(wtitle);
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5189 }
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5190 else
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5191 # endif
17165aabc731 commit https://github.com/vim/vim/commit/63e4344edc0cc1b4ed68a9d9c787265799602670
Christian Brabandt <cb@256bit.org>
parents: 10386
diff changeset
5192 MessageBox(NULL, msg, title, MB_ICONWARNING);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5193 need_vimrun_warning = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5194 }
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
5195 if (!s_dont_use_vimrun && p_stmp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5196 /* Use vimrun to execute the command. It opens a console
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5197 * 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
5198 vim_snprintf((char *)newcmd, cmdlen, "%s%s%s %s %s",
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5199 vimrun_path,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5200 (msg_silent != 0 || (options & SHELL_DOOUT))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5201 ? "-s " : "",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5202 p_sh, p_shcf, cmd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5203 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5204 #endif
2311
ccda151dde4e Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents: 2215
diff changeset
5205 vim_snprintf((char *)newcmd, cmdlen, "%s %s %s",
1569
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
5206 p_sh, p_shcf, cmd);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5207 x = mch_system((char *)newcmd, options);
3361
6a03b0ea2e12 updated for version 7.3.447
Bram Moolenaar <bram@vim.org>
parents: 3357
diff changeset
5208 vim_free(newcmd);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5209 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5210 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5211 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5212
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5213 if (tmode == TMODE_RAW)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5214 settmode(TMODE_RAW); /* set to raw mode */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5215
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5216 /* Print the return value, unless "vimrun" was used. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5217 if (x != 0 && !(options & SHELL_SILENT) && !emsg_silent
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5218 #if defined(FEAT_GUI_W32)
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
5219 && ((options & SHELL_DOOUT) || s_dont_use_vimrun || !p_stmp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5220 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5221 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5222 {
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
5223 smsg((char_u *)_("shell returned %d"), x);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5224 msg_putchar('\n');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5225 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5226 #ifdef FEAT_TITLE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5227 resettitle();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5228 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5229
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5230 signal(SIGINT, SIG_DFL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5231 #if defined(__GNUC__) && !defined(__MINGW32__)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5232 signal(SIGKILL, SIG_DFL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5233 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5234 signal(SIGBREAK, SIG_DFL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5235 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5236 signal(SIGILL, SIG_DFL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5237 signal(SIGFPE, SIG_DFL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5238 signal(SIGSEGV, SIG_DFL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5239 signal(SIGTERM, SIG_DFL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5240 signal(SIGABRT, SIG_DFL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5241
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5242 return x;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5243 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5244
8493
caed4b2d305f commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents: 8491
diff changeset
5245 #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
5246 static HANDLE
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5247 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
5248 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
5249 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
5250 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
5251 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
5252 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
5253 DWORD dwFlagsAndAttributes)
8483
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5254 {
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5255 HANDLE h;
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5256 # ifdef FEAT_MBYTE
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5257 WCHAR *wn = NULL;
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5258 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5259 {
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5260 wn = enc_to_utf16(fname, NULL);
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5261 if (wn != NULL)
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5262 {
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5263 h = CreateFileW(wn, dwDesiredAccess, dwShareMode,
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5264 lpSecurityAttributes, dwCreationDisposition,
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5265 dwFlagsAndAttributes, NULL);
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5266 vim_free(wn);
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5267 }
8483
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5268 }
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5269 if (wn == NULL)
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5270 # endif
10571
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5271 h = CreateFile((LPCSTR)fname, dwDesiredAccess, dwShareMode,
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5272 lpSecurityAttributes, dwCreationDisposition,
b726d3ea70bc patch 8.0.0175: setting language on MS-Windows does not always work
Christian Brabandt <cb@256bit.org>
parents: 10418
diff changeset
5273 dwFlagsAndAttributes, NULL);
8483
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5274 return h;
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5275 }
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5276
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5277 /*
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5278 * 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
5279 * 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
5280 */
12724
17c257dd2438 patch 8.0.1240: MS-Windows: term_start() does not support environment
Christian Brabandt <cb@256bit.org>
parents: 12140
diff changeset
5281 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
5282 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
5283 {
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5284 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
5285 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
5286 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
5287
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5288 /* for last \0 */
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5289 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
5290 return;
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5291
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5292 if (base)
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5293 {
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5294 WCHAR *p = (WCHAR*) base;
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5295
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5296 /* for last \0 */
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5297 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
5298 return;
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5299
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5300 while (*p != 0 || *(p + 1) != 0)
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5301 {
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5302 if (ga_grow(gap, 1) == OK)
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5303 *((WCHAR*)gap->ga_data + gap->ga_len++) = *p;
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5304 p++;
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5305 }
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5306 FreeEnvironmentStrings(base);
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5307 *((WCHAR*)gap->ga_data + gap->ga_len++) = L'\0';
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5308 }
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5309
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
5310 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
5311 {
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
5312 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
5313 {
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
5314 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
5315 {
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
5316 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
5317 WCHAR *wkey = enc_to_utf16((char_u *)hi->hi_key, 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
5318 WCHAR *wval = enc_to_utf16(get_tv_string(item), 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
5319 --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
5320 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
5321 {
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
5322 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
5323 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
5324 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
5325
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
5326 if (ga_grow(gap, (int)(lkey + lval + 2)) != OK)
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
5327 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
5328 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
5329 *((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
5330 *((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
5331 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
5332 *((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
5333 *((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
5334 }
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
5335 if (wkey != NULL) vim_free(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
5336 if (wval != NULL) 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
5337 }
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5338 }
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5339 }
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5340
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
5341 # 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
5342 {
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
5343 # 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
5344 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
5345 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
5346 # 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
5347 # 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
5348 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
5349 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
5350 # endif
14063
f39150ec146e patch 8.1.0049: shell cannot tell running in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13853
diff changeset
5351 // 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
5352 // 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
5353 // 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
5354 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
5355 # 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
5356 + 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
5357 # 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
5358 # 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
5359 + 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
5360 # 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
5361 ;
14063
f39150ec146e patch 8.1.0049: shell cannot tell running in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13853
diff changeset
5362
f39150ec146e patch 8.1.0049: shell cannot tell running in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13853
diff changeset
5363 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
5364 {
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
5365 # 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
5366 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
5367 *((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
5368 (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
5369 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
5370 *((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
5371 (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
5372 *((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
5373 # 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
5374 # 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
5375 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
5376 {
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
5377 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
5378 *((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
5379 (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
5380 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
5381 *((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
5382 (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
5383 *((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
5384 }
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
5385 # 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
5386 }
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
5387 }
14067
39ec4b90e4a7 patch 8.1.0051: MS-Windows: missing #endif
Christian Brabandt <cb@256bit.org>
parents: 14065
diff changeset
5388 # endif
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5389 }
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5390
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5391 void
11723
1922710ee8fa patch 8.0.0744: terminal window does not use a pty
Christian Brabandt <cb@256bit.org>
parents: 11230
diff changeset
5392 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
5393 {
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5394 STARTUPINFO si;
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5395 PROCESS_INFORMATION pi;
10311
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5396 HANDLE jo;
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5397 SECURITY_ATTRIBUTES saAttr;
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5398 channel_T *channel = NULL;
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5399 HANDLE ifd[2];
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5400 HANDLE ofd[2];
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5401 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
5402 garray_T ga;
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5403
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5404 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
5405 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
5406 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
5407 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
5408 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
5409 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
5410 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
5411
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5412 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
5413 use_null_for_err = TRUE;
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5414
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5415 ifd[0] = INVALID_HANDLE_VALUE;
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5416 ifd[1] = INVALID_HANDLE_VALUE;
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5417 ofd[0] = INVALID_HANDLE_VALUE;
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5418 ofd[1] = INVALID_HANDLE_VALUE;
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5419 efd[0] = INVALID_HANDLE_VALUE;
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5420 efd[1] = INVALID_HANDLE_VALUE;
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5421 ga_init2(&ga, (int)sizeof(wchar_t), 500);
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5422
10311
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5423 jo = CreateJobObject(NULL, NULL);
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5424 if (jo == NULL)
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5425 {
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5426 job->jv_status = JOB_FAILED;
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5427 goto failed;
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5428 }
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5429
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5430 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
5431 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
5432
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5433 ZeroMemory(&pi, sizeof(pi));
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5434 ZeroMemory(&si, sizeof(si));
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5435 si.cb = sizeof(si);
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5436 si.dwFlags |= STARTF_USESHOWWINDOW;
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5437 si.wShowWindow = SW_HIDE;
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5438
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5439 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5440 saAttr.bInheritHandle = TRUE;
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5441 saAttr.lpSecurityDescriptor = NULL;
8457
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5442
8430
800423dbc260 commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents: 8386
diff changeset
5443 if (use_file_for_in)
800423dbc260 commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents: 8386
diff changeset
5444 {
800423dbc260 commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents: 8386
diff changeset
5445 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
5446
8483
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5447 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
5448 FILE_SHARE_READ | FILE_SHARE_WRITE,
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5449 &saAttr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL);
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5450 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
5451 {
6c421014a0b3 commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents: 8430
diff changeset
5452 EMSG2(_(e_notopen), fname);
6c421014a0b3 commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents: 8430
diff changeset
5453 goto failed;
6c421014a0b3 commit https://github.com/vim/vim/commit/94d0191dbcce829ad9b92d902b6e2717041db3b8
Christian Brabandt <cb@256bit.org>
parents: 8430
diff changeset
5454 }
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5455 }
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5456 else if (!use_null_for_in &&
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5457 (!CreatePipe(&ifd[0], &ifd[1], &saAttr, 0)
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
5458 || !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
5459 goto failed;
800423dbc260 commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents: 8386
diff changeset
5460
8457
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5461 if (use_file_for_out)
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5462 {
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5463 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
5464
8483
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5465 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
5466 FILE_SHARE_READ | FILE_SHARE_WRITE,
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5467 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5468 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
5469 {
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5470 EMSG2(_(e_notopen), fname);
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5471 goto failed;
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5472 }
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5473 }
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5474 else if (!use_null_for_out &&
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5475 (!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
5476 || !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
5477 goto failed;
800423dbc260 commit https://github.com/vim/vim/commit/b69fccf377f43544b86817b0de6cc1498a4ff9ec
Christian Brabandt <cb@256bit.org>
parents: 8386
diff changeset
5478
8457
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5479 if (use_file_for_err)
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5480 {
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5481 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
5482
8483
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5483 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
5484 FILE_SHARE_READ | FILE_SHARE_WRITE,
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5485 &saAttr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL);
7376d36395f0 commit https://github.com/vim/vim/commit/7bffaa9f9b477969d85cef41adeadc4506373708
Christian Brabandt <cb@256bit.org>
parents: 8479
diff changeset
5486 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
5487 {
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5488 EMSG2(_(e_notopen), fname);
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5489 goto failed;
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5490 }
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5491 }
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5492 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
5493 (!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
5494 || !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
5495 goto failed;
8457
20533e3de373 commit https://github.com/vim/vim/commit/13d6fb17a2c5d2ae02429e31fc8603a9caa4395e
Christian Brabandt <cb@256bit.org>
parents: 8443
diff changeset
5496
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5497 si.dwFlags |= STARTF_USESTDHANDLES;
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5498 si.hStdInput = ifd[0];
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5499 si.hStdOutput = ofd[1];
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5500 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
5501
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5502 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
5503 {
8491
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
5504 if (options->jo_set & JO_CHANNEL)
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
5505 {
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
5506 channel = options->jo_channel;
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
5507 if (channel != NULL)
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
5508 ++channel->ch_refcount;
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
5509 }
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
5510 else
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
5511 channel = add_channel();
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5512 if (channel == NULL)
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5513 goto failed;
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5514 }
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5515
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5516 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
5517 CREATE_SUSPENDED |
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5518 CREATE_DEFAULT_ERROR_MODE |
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5519 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
5520 CREATE_UNICODE_ENVIRONMENT |
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5521 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
5522 &si, &pi,
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5523 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
5524 (char *)options->jo_cwd))
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5525 {
10311
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5526 CloseHandle(jo);
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5527 job->jv_status = JOB_FAILED;
8047
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
5528 goto failed;
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
5529 }
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
5530
12043
2796a2c9fc17 patch 8.0.0902: cannot specify directory or environment for a job
Christian Brabandt <cb@256bit.org>
parents: 12037
diff changeset
5531 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
5532
10311
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5533 if (!AssignProcessToJobObject(jo, pi.hProcess))
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5534 {
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5535 /* if failing, switch the way to terminate
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5536 * process with TerminateProcess. */
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5537 CloseHandle(jo);
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5538 jo = NULL;
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5539 }
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5540 ResumeThread(pi.hThread);
8479
9f63e4506c40 commit https://github.com/vim/vim/commit/75578a388d2aff59dc330ceccd8894c79b4bc735
Christian Brabandt <cb@256bit.org>
parents: 8471
diff changeset
5541 CloseHandle(pi.hThread);
8047
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
5542 job->jv_proc_info = pi;
10311
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5543 job->jv_job_object = jo;
8047
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
5544 job->jv_status = JOB_STARTED;
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
5545
10060
cf9e550f17f6 commit https://github.com/vim/vim/commit/641ad6c7ac7367f95fd927b8efa4bf74ddb9ccf3
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
5546 CloseHandle(ifd[0]);
cf9e550f17f6 commit https://github.com/vim/vim/commit/641ad6c7ac7367f95fd927b8efa4bf74ddb9ccf3
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
5547 CloseHandle(ofd[1]);
cf9e550f17f6 commit https://github.com/vim/vim/commit/641ad6c7ac7367f95fd927b8efa4bf74ddb9ccf3
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
5548 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
5549 CloseHandle(efd[1]);
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5550
8047
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
5551 job->jv_channel = channel;
8471
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5552 if (channel != NULL)
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5553 {
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5554 channel_set_pipes(channel,
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5555 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
5556 ? INVALID_FD : (sock_T)ifd[1],
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5557 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
5558 ? INVALID_FD : (sock_T)ofd[0],
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5559 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
5560 ? INVALID_FD : (sock_T)efd[0]);
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5561 channel_set_job(channel, job, options);
c1aae3a79279 commit https://github.com/vim/vim/commit/d5d3d307ddb824f59a2f2516c4b6a6d48762aa58
Christian Brabandt <cb@256bit.org>
parents: 8457
diff changeset
5562 }
8047
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
5563 return;
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
5564
7c74cafac0a1 commit https://github.com/vim/vim/commit/7b3ca76a451b10d238ef946f3231762e0bd988e9
Christian Brabandt <cb@256bit.org>
parents: 8023
diff changeset
5565 failed:
8059
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5566 CloseHandle(ifd[0]);
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5567 CloseHandle(ofd[0]);
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5568 CloseHandle(efd[0]);
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5569 CloseHandle(ifd[1]);
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5570 CloseHandle(ofd[1]);
19304db153bc commit https://github.com/vim/vim/commit/d807036d10615b960c814ef3890ecad335b57f56
Christian Brabandt <cb@256bit.org>
parents: 8053
diff changeset
5571 CloseHandle(efd[1]);
8491
daebcbd87bd3 commit https://github.com/vim/vim/commit/de27989157f35172b25f9e01e0c147ed8f6ae3ce
Christian Brabandt <cb@256bit.org>
parents: 8483
diff changeset
5572 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
5573 ga_clear(&ga);
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5574 }
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5575
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5576 char *
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5577 mch_job_status(job_T *job)
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5578 {
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5579 DWORD dwExitCode = 0;
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5580
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5581 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
5582 || dwExitCode != STILL_ACTIVE)
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5583 {
8176
477c1d855698 commit https://github.com/vim/vim/commit/eab089d22f172ddd2d33367a998e68c2f1c6c989
Christian Brabandt <cb@256bit.org>
parents: 8172
diff changeset
5584 job->jv_exitval = (int)dwExitCode;
10386
d3f0946b4a80 commit https://github.com/vim/vim/commit/7df915d113ac1981792c50e8b000c9f5f784b78b
Christian Brabandt <cb@256bit.org>
parents: 10317
diff changeset
5585 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
5586 {
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5587 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
5588 job->jv_status = JOB_ENDED;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5589 }
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5590 return "dead";
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5591 }
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5592 return "run";
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5593 }
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5594
10279
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5595 job_T *
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5596 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
5597 {
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5598 HANDLE jobHandles[MAXIMUM_WAIT_OBJECTS];
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5599 job_T *jobArray[MAXIMUM_WAIT_OBJECTS];
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5600 job_T *job = job_list;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5601
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5602 while (job != NULL)
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5603 {
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5604 DWORD n;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5605 DWORD result;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5606
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5607 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
5608 && job != NULL; job = job->jv_next)
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5609 {
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5610 if (job->jv_status == JOB_STARTED)
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5611 {
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5612 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
5613 jobArray[n] = job;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5614 ++n;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5615 }
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5616 }
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5617 if (n == 0)
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5618 continue;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5619 result = WaitForMultipleObjects(n, jobHandles, FALSE, 0);
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5620 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
5621 {
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5622 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
5623
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5624 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
5625 return wait_job;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5626 }
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5627 }
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5628 return NULL;
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5629 }
c5c15c818bda commit https://github.com/vim/vim/commit/97792de2762cc79cc365a8a0b858f27753179577
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
5630
10317
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5631 static BOOL
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5632 terminate_all(HANDLE process, int code)
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5633 {
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5634 PROCESSENTRY32 pe;
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5635 HANDLE h = INVALID_HANDLE_VALUE;
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5636 DWORD pid = GetProcessId(process);
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5637
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5638 if (pid != 0)
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5639 {
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5640 h = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5641 if (h != INVALID_HANDLE_VALUE)
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5642 {
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5643 pe.dwSize = sizeof(PROCESSENTRY32);
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5644 if (!Process32First(h, &pe))
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5645 goto theend;
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5646
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5647 do
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5648 {
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5649 if (pe.th32ParentProcessID == pid)
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5650 {
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5651 HANDLE ph = OpenProcess(
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5652 PROCESS_ALL_ACCESS, FALSE, pe.th32ProcessID);
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5653 if (ph != NULL)
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5654 {
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5655 terminate_all(ph, code);
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5656 CloseHandle(ph);
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5657 }
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5658 }
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5659 } while (Process32Next(h, &pe));
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5660
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5661 CloseHandle(h);
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5662 }
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5663 }
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5664
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5665 theend:
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5666 return TerminateProcess(process, code);
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5667 }
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5668
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5669 /*
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5670 * Send a (deadly) signal to "job".
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5671 * 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
5672 */
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5673 int
12037
85f0f557661e patch 8.0.0899: function name mch_stop_job() is confusing
Christian Brabandt <cb@256bit.org>
parents: 12015
diff changeset
5674 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
5675 {
8251
989ac3aed1ef commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents: 8222
diff changeset
5676 int ret;
989ac3aed1ef commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents: 8222
diff changeset
5677
989ac3aed1ef commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents: 8222
diff changeset
5678 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
5679 {
10317
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5680 /* deadly signal */
10311
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5681 if (job->jv_job_object != NULL)
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5682 return TerminateJobObject(job->jv_job_object, 0) ? OK : FAIL;
10317
25cc0021a8d7 commit https://github.com/vim/vim/commit/fb63090b62801d718fe7e1f44407358404c08724
Christian Brabandt <cb@256bit.org>
parents: 10311
diff changeset
5683 return terminate_all(job->jv_proc_info.hProcess, 0) ? OK : FAIL;
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5684 }
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5685
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5686 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
5687 return FAIL;
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5688 ret = GenerateConsoleCtrlEvent(
8251
989ac3aed1ef commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents: 8222
diff changeset
5689 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
5690 job->jv_proc_info.dwProcessId)
989ac3aed1ef commit https://github.com/vim/vim/commit/923d926d57d985ec8965da9d0cd3634e6b24bfe1
Christian Brabandt <cb@256bit.org>
parents: 8222
diff changeset
5691 ? OK : FAIL;
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5692 FreeConsole();
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5693 return ret;
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5694 }
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5695
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5696 /*
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5697 * Clear the data related to "job".
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5698 */
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5699 void
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5700 mch_clear_job(job_T *job)
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5701 {
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5702 if (job->jv_status != JOB_FAILED)
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5703 {
10311
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5704 if (job->jv_job_object != NULL)
931422d27b69 commit https://github.com/vim/vim/commit/14207f487c9e79a913256a41e3e9716b03b46955
Christian Brabandt <cb@256bit.org>
parents: 10304
diff changeset
5705 CloseHandle(job->jv_job_object);
8023
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5706 CloseHandle(job->jv_proc_info.hProcess);
75e0831549f1 commit https://github.com/vim/vim/commit/76467dfcafcf295fd987f712730774c6f55317d3
Christian Brabandt <cb@256bit.org>
parents: 8015
diff changeset
5707 }
7975
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5708 }
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5709 #endif
7224f5e9c36a commit https://github.com/vim/vim/commit/942d6b22686858c9e72f8b8929df5c288170179c
Christian Brabandt <cb@256bit.org>
parents: 7935
diff changeset
5710
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5711
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5712 #ifndef FEAT_GUI_W32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5713
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5714 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5715 * Start termcap mode
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5716 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5717 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5718 termcap_mode_start(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5719 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5720 DWORD cmodein;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5721
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5722 if (g_fTermcapMode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5723 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5724
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5725 SaveConsoleBuffer(&g_cbNonTermcap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5726
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5727 if (g_cbTermcap.IsValid)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5728 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5729 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5730 * We've been in termcap mode before. Restore certain screen
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5731 * characteristics, including the buffer size and the window
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5732 * size. Since we will be redrawing the screen, we don't need
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5733 * to restore the actual contents of the buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5734 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5735 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
5736 reset_console_color_rgb();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5737 SetConsoleWindowInfo(g_hConOut, TRUE, &g_cbTermcap.Info.srWindow);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5738 Rows = g_cbTermcap.Info.dwSize.Y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5739 Columns = g_cbTermcap.Info.dwSize.X;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5740 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5741 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5742 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5743 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5744 * This is our first time entering termcap mode. Clear the console
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5745 * screen buffer, and resize the buffer to match the current window
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5746 * size. We will use this as the size of our editing environment.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5747 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5748 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
5749 set_console_color_rgb();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5750 ResizeConBufAndWindow(g_hConOut, Columns, Rows);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5751 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5752
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5753 #ifdef FEAT_TITLE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5754 resettitle();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5755 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5756
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5757 GetConsoleMode(g_hConIn, &cmodein);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5758 #ifdef FEAT_MOUSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5759 if (g_fMouseActive)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5760 cmodein |= ENABLE_MOUSE_INPUT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5761 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5762 cmodein &= ~ENABLE_MOUSE_INPUT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5763 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5764 cmodein |= ENABLE_WINDOW_INPUT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5765 SetConsoleMode(g_hConIn, cmodein);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5766
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5767 redraw_later_clear();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5768 g_fTermcapMode = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5769 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5770
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5771
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5772 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5773 * End termcap mode
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5774 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5775 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5776 termcap_mode_end(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5777 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5778 DWORD cmodein;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5779 ConsoleBuffer *cb;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5780 COORD coord;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5781 DWORD dwDummy;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5782
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5783 if (!g_fTermcapMode)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5784 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5785
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5786 SaveConsoleBuffer(&g_cbTermcap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5787
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5788 GetConsoleMode(g_hConIn, &cmodein);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5789 cmodein &= ~(ENABLE_MOUSE_INPUT | ENABLE_WINDOW_INPUT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5790 SetConsoleMode(g_hConIn, cmodein);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5791
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
5792 #ifdef FEAT_RESTORE_ORIG_SCREEN
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
5793 cb = exiting ? &g_cbOrig : &g_cbNonTermcap;
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
5794 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5795 cb = &g_cbNonTermcap;
7184
0a256475412f commit https://github.com/vim/vim/commit/4c0aac57599092da404f6726e88701ba441a4a6d
Christian Brabandt <cb@256bit.org>
parents: 7150
diff changeset
5796 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5797 RestoreConsoleBuffer(cb, p_rs);
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5798 reset_console_color_rgb();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5799 SetConsoleCursorInfo(g_hConOut, &g_cci);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5800
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5801 if (p_rs || exiting)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5802 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5803 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5804 * Clear anything that happens to be on the current line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5805 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5806 coord.X = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5807 coord.Y = (SHORT) (p_rs ? cb->Info.dwCursorPosition.Y : (Rows - 1));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5808 FillConsoleOutputCharacter(g_hConOut, ' ',
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5809 cb->Info.dwSize.X, coord, &dwDummy);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5810 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5811 * The following is just for aesthetics. If we are exiting without
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5812 * restoring the screen, then we want to have a prompt string
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5813 * appear at the bottom line. However, the command interpreter
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5814 * seems to always advance the cursor one line before displaying
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5815 * the prompt string, which causes the screen to scroll. To
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5816 * counter this, move the cursor up one line before exiting.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5817 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5818 if (exiting && !p_rs)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5819 coord.Y--;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5820 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5821 * Position the cursor at the leftmost column of the desired row.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5822 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5823 SetConsoleCursorPosition(g_hConOut, coord);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5824 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5825
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5826 g_fTermcapMode = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5827 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5828 #endif /* FEAT_GUI_W32 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5829
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5830
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5831 #ifdef FEAT_GUI_W32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5832 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5833 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
5834 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
5835 int len UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5836 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5837 /* never used */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5838 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5839
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5840 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5841
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5842 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5843 * clear `n' chars, starting from `coord'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5844 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5845 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5846 clear_chars(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5847 COORD coord,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5848 DWORD n)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5849 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5850 DWORD dwDummy;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5851
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5852 FillConsoleOutputCharacter(g_hConOut, ' ', n, coord, &dwDummy);
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5853
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5854 if (!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
5855 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, n, coord, &dwDummy);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5856 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
5857 {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
5858 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
5859 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
5860 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
5861 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5862 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5863
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5864
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5865 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5866 * Clear the screen
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5867 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5868 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5869 clear_screen(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5870 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5871 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
5872
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5873 if (!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
5874 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
5875 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5876 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5877 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
5878 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
5879 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
5880 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5881 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5882
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5883
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5884 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5885 * Clear to end of display
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5886 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5887 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5888 clear_to_end_of_display(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5889 {
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5890 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
5891
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5892 if (!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
5893 clear_chars(g_coord, (Rows - g_coord.Y - 1)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5894 * 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
5895 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5896 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5897 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
5898 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
5899 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
5900
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5901 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
5902 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
5903 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5904 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5905
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5906
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5907 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5908 * Clear to end of line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5909 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5910 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5911 clear_to_end_of_line(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5912 {
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5913 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
5914
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5915 if (!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
5916 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
5917 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5918 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5919 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
5920 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
5921 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
5922
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5923 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
5924 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
5925 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5926 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5927
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5928
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5929 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5930 * Scroll the scroll region up by `cLines' lines
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5931 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5932 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
5933 scroll(unsigned cLines)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5934 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5935 COORD oldcoord = g_coord;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5936
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5937 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Top + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5938 delete_lines(cLines);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5939
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5940 g_coord = oldcoord;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5941 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5942
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5943
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5944 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5945 * Set the scroll region
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5946 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5947 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5948 set_scroll_region(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5949 unsigned left,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5950 unsigned top,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5951 unsigned right,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5952 unsigned bottom)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5953 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5954 if (left >= right
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5955 || top >= bottom
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5956 || right > (unsigned) Columns - 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5957 || bottom > (unsigned) Rows - 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5958 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5959
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5960 g_srScrollRegion.Left = left;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5961 g_srScrollRegion.Top = top;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5962 g_srScrollRegion.Right = right;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5963 g_srScrollRegion.Bottom = bottom;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5964
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5965 if (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
5966 vtp_printf("\033[%d;%dr", top + 1, bottom + 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5967 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5968
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5969
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5970 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5971 * Insert `cLines' lines at the current cursor position
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5972 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5973 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
5974 insert_lines(unsigned cLines)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5975 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5976 SMALL_RECT source;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5977 COORD dest;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5978 CHAR_INFO fill;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5979
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5980 dest.X = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5981 dest.Y = g_coord.Y + cLines;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5982
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5983 source.Left = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5984 source.Top = g_coord.Y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5985 source.Right = g_srScrollRegion.Right;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5986 source.Bottom = g_srScrollRegion.Bottom - cLines;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5987
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5988 if (!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
5989 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5990 fill.Char.AsciiChar = ' ';
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5991 fill.Attributes = 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
5992
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5993 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5994 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5995 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5996 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5997 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
5998
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
5999 gotoxy(1, source.Top + 1);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6000 vtp_printf("\033[%dT", cLines);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6001 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6002
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6003 /* Here we have to deal with a win32 console flake: If the scroll
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6004 * region looks like abc and we scroll c to a and fill with d we get
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6005 * cbd... if we scroll block c one line at a time to a, we get cdd...
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6006 * vim expects cdd consistently... So we have to deal with that
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6007 * here... (this also occurs scrolling the same way in the other
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6008 * direction). */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6009
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6010 if (source.Bottom < dest.Y)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6011 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6012 COORD coord;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6013
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6014 coord.X = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6015 coord.Y = source.Bottom;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6016 clear_chars(coord, Columns * (dest.Y - source.Bottom));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6017 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6018 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6019
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6020
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6021 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6022 * Delete `cLines' lines at the current cursor position
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6023 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6024 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6025 delete_lines(unsigned cLines)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6026 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6027 SMALL_RECT source;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6028 COORD dest;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6029 CHAR_INFO fill;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6030 int nb;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6031
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6032 dest.X = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6033 dest.Y = g_coord.Y;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6034
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6035 source.Left = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6036 source.Top = g_coord.Y + cLines;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6037 source.Right = g_srScrollRegion.Right;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6038 source.Bottom = g_srScrollRegion.Bottom;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6039
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6040 if (!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
6041 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6042 fill.Char.AsciiChar = ' ';
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6043 fill.Attributes = 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
6044
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6045 ScrollConsoleScreenBuffer(g_hConOut, &source, NULL, dest, &fill);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6046 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6047 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6048 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6049 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
6050
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6051 gotoxy(1, source.Top + 1);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6052 vtp_printf("\033[%dS", cLines);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6053 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6054
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6055 /* Here we have to deal with a win32 console flake: If the scroll
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6056 * region looks like abc and we scroll c to a and fill with d we get
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6057 * cbd... if we scroll block c one line at a time to a, we get cdd...
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6058 * vim expects cdd consistently... So we have to deal with that
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6059 * here... (this also occurs scrolling the same way in the other
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6060 * direction). */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6061
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6062 nb = dest.Y + (source.Bottom - source.Top) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6063
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6064 if (nb < source.Top)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6065 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6066 COORD coord;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6067
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6068 coord.X = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6069 coord.Y = nb;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6070 clear_chars(coord, Columns * (source.Top - nb));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6071 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6072 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6073
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6074
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6075 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6076 * Set the cursor position
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6077 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6078 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6079 gotoxy(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6080 unsigned x,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6081 unsigned y)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6082 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6083 if (x < 1 || x > (unsigned)Columns || y < 1 || y > (unsigned)Rows)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6084 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6085
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6086 /* external cursor coords are 1-based; internal are 0-based */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6087 g_coord.X = x - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6088 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
6089
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6090 if (!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
6091 SetConsoleCursorPosition(g_hConOut, 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
6092 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6093 vtp_printf("\033[%d;%dH", y, x);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6094 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6095
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6096
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6097 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6098 * Set the current text attribute = (foreground | background)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6099 * See ../doc/os_win32.txt for the numbers.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6100 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6101 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6102 textattr(WORD wAttr)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6103 {
6710
43a07fa78155 updated for version 7.4.679
Bram Moolenaar <bram@vim.org>
parents: 6700
diff changeset
6104 g_attrCurrent = wAttr & 0xff;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6105
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6106 SetConsoleTextAttribute(g_hConOut, wAttr);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6107 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6108
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6109
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6110 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6111 textcolor(WORD wAttr)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6112 {
6710
43a07fa78155 updated for version 7.4.679
Bram Moolenaar <bram@vim.org>
parents: 6700
diff changeset
6113 g_attrCurrent = (g_attrCurrent & 0xf0) + (wAttr & 0x0f);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6114
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6115 if (!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
6116 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
6117 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6118 vtp_sgr_bulk(wAttr);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6119 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6120
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6121
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6122 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6123 textbackground(WORD wAttr)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6124 {
6710
43a07fa78155 updated for version 7.4.679
Bram Moolenaar <bram@vim.org>
parents: 6700
diff changeset
6125 g_attrCurrent = (g_attrCurrent & 0x0f) + ((wAttr & 0x0f) << 4);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6126
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6127 if (!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
6128 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
6129 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6130 vtp_sgr_bulk(wAttr);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6131 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6132
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6133
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6134 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6135 * restore the default text attribute (whatever we started with)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6136 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6137 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6138 normvideo(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6139 {
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6140 if (!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
6141 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
6142 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6143 vtp_sgr_bulk(0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6144 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6145
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6146
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6147 static WORD g_attrPreStandout = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6148
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6149 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6150 * Make the text standout, by brightening it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6151 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6152 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6153 standout(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6154 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6155 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
6156
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6157 textattr((WORD) (g_attrCurrent|FOREGROUND_INTENSITY|BACKGROUND_INTENSITY));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6158 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6159
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6160
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6161 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6162 * Turn off standout mode
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6163 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6164 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6165 standend(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6166 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6167 if (g_attrPreStandout)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6168 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
6169
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6170 g_attrPreStandout = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6171 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6172
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6173
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6174 /*
1199
3acf7c922a04 updated for version 7.1b
vimboss
parents: 1139
diff changeset
6175 * 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
6176 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6177 void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6178 mch_set_normal_colors(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6179 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6180 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6181 int n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6182
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6183 cterm_normal_fg_color = (g_attrDefault & 0xf) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6184 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
6185 if (
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6186 #ifdef FEAT_TERMGUICOLORS
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6187 !p_tgc &&
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6188 #endif
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6189 T_ME[0] == ESC && T_ME[1] == '|')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6190 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6191 p = T_ME + 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6192 n = getdigits(&p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6193 if (*p == 'm' && n > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6194 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6195 cterm_normal_fg_color = (n & 0xf) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6196 cterm_normal_bg_color = ((n >> 4) & 0xf) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6197 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6198 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6199 #ifdef FEAT_TERMGUICOLORS
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6200 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
6201 cterm_normal_bg_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
6202 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6203 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6204
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6205
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6206 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6207 * visual bell: flash the screen
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6208 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6209 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6210 visual_bell(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6211 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6212 COORD coordOrigin = {0, 0};
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6213 WORD attrFlash = ~g_attrCurrent & 0xff;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6214
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6215 DWORD dwDummy;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6216 LPWORD oldattrs = (LPWORD)alloc(Rows * Columns * sizeof(WORD));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6217
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6218 if (oldattrs == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6219 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6220 ReadConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6221 coordOrigin, &dwDummy);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6222 FillConsoleOutputAttribute(g_hConOut, attrFlash, Rows * Columns,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6223 coordOrigin, &dwDummy);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6224
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6225 Sleep(15); /* wait for 15 msec */
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6226 if (!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
6227 WriteConsoleOutputAttribute(g_hConOut, oldattrs, Rows * Columns,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6228 coordOrigin, &dwDummy);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6229 vim_free(oldattrs);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6230 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6231
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6232
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6233 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6234 * Make the cursor visible or invisible
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6235 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6236 static void
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6237 cursor_visible(BOOL fVisible)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6238 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6239 s_cursor_visible = fVisible;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6240 #ifdef MCH_CURSOR_SHAPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6241 mch_update_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6242 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6243 }
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 /*
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
6247 * 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
6248 * Returns the number of bytes actually written (at least one).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6249 */
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6250 static DWORD
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6251 write_chars(
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6252 char_u *pchBuf,
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6253 DWORD cbToWrite)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6254 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6255 COORD coord = g_coord;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6256 DWORD written;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6257
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6258 #ifdef FEAT_MBYTE
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6259 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6260 {
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6261 static WCHAR *unicodebuf = NULL;
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6262 static int unibuflen = 0;
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6263 int length;
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6264 DWORD n, cchwritten, cells;
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6265
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6266 length = MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)pchBuf, cbToWrite, 0, 0);
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6267 if (unicodebuf == NULL || length > unibuflen)
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6268 {
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6269 vim_free(unicodebuf);
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6270 unicodebuf = (WCHAR *)lalloc(length * sizeof(WCHAR), FALSE);
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6271 unibuflen = length;
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6272 }
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6273 MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)pchBuf, cbToWrite,
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6274 unicodebuf, unibuflen);
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6275
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6276 cells = mb_string2cells(pchBuf, cbToWrite);
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6277
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6278 if (!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
6279 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6280 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cells,
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6281 coord, &written);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6282 /* When writing fails or didn't write a single character, pretend one
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6283 * character was written, otherwise we get stuck. */
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6284 if (WriteConsoleOutputCharacterW(g_hConOut, unicodebuf, length,
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6285 coord, &cchwritten) == 0
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6286 || cchwritten == 0)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6287 cchwritten = 1;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6288 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6289 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6290 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6291 if (WriteConsoleW(g_hConOut, unicodebuf, length, &cchwritten,
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6292 NULL) == 0 || cchwritten == 0)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6293 cchwritten = 1;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6294 }
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6295
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6296 if (cchwritten == length)
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6297 {
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6298 written = cbToWrite;
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6299 g_coord.X += (SHORT)cells;
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6300 }
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6301 else
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6302 {
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6303 char_u *p = pchBuf;
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6304 for (n = 0; n < cchwritten; n++)
11127
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11071
diff changeset
6305 MB_CPTR_ADV(p);
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6306 written = p - pchBuf;
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6307 g_coord.X += (SHORT)mb_string2cells(pchBuf, written);
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6308 }
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6309 }
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6310 else
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6311 #endif
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6312 {
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6313 if (!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
6314 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6315 FillConsoleOutputAttribute(g_hConOut, g_attrCurrent, cbToWrite,
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6316 coord, &written);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6317 /* When writing fails or didn't write a single character, pretend one
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6318 * character was written, otherwise we get stuck. */
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6319 if (WriteConsoleOutputCharacter(g_hConOut, (LPCSTR)pchBuf, cbToWrite,
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6320 coord, &written) == 0
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6321 || written == 0)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6322 written = 1;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6323 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6324 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6325 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6326 if (WriteConsole(g_hConOut, (LPCSTR)pchBuf, cbToWrite, &written,
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6327 NULL) == 0 || written == 0)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6328 written = 1;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6329 }
7080
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6330
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6331 g_coord.X += (SHORT) written;
1a34f5272977 commit https://github.com/vim/vim/commit/ac360bf2ca293735fc7c6654dc2b3066f4c62488
Christian Brabandt <cb@256bit.org>
parents: 7078
diff changeset
6332 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6333
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6334 while (g_coord.X > g_srScrollRegion.Right)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6335 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6336 g_coord.X -= (SHORT) Columns;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6337 if (g_coord.Y < g_srScrollRegion.Bottom)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6338 g_coord.Y++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6339 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6340
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6341 gotoxy(g_coord.X + 1, g_coord.Y + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6342
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6343 return written;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6344 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6345
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6346
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6347 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6348 * mch_write(): write the output buffer to the screen, translating ESC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6349 * sequences into calls to console output routines.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6350 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6351 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6352 mch_write(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6353 char_u *s,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6354 int len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6355 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6356 s[len] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6357
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6358 if (!term_console)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6359 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6360 write(1, s, (unsigned)len);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6361 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6362 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6363
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6364 /* translate ESC | sequences into faked bios calls */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6365 while (len--)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6366 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6367 /* optimization: use one single write_chars for runs of text,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6368 * rather than once per character It ain't curses, but it helps. */
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
6369 DWORD prefix = (DWORD)strcspn((char *)s, "\n\r\b\a\033");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6370
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6371 if (p_wd)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6372 {
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
6373 WaitForChar(p_wd, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6374 if (prefix != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6375 prefix = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6376 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6377
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6378 if (prefix != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6379 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6380 DWORD nWritten;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6381
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6382 nWritten = write_chars(s, prefix);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6383 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6384 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6385 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6386 fputc('>', fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6387 fwrite(s, sizeof(char_u), nWritten, fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6388 fputs("<\n", fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6389 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6390 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6391 len -= (nWritten - 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6392 s += nWritten;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6393 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6394 else if (s[0] == '\n')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6395 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6396 /* \n, newline: go to the beginning of the next line or scroll */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6397 if (g_coord.Y == g_srScrollRegion.Bottom)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6398 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6399 scroll(1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6400 gotoxy(g_srScrollRegion.Left + 1, g_srScrollRegion.Bottom + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6401 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6402 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6403 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6404 gotoxy(g_srScrollRegion.Left + 1, g_coord.Y + 2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6405 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6406 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6407 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6408 fputs("\\n\n", fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6409 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6410 s++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6411 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6412 else if (s[0] == '\r')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6413 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6414 /* \r, carriage return: go to beginning of line */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6415 gotoxy(g_srScrollRegion.Left+1, g_coord.Y + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6416 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6417 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6418 fputs("\\r\n", fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6419 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6420 s++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6421 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6422 else if (s[0] == '\b')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6423 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6424 /* \b, backspace: move cursor one position left */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6425 if (g_coord.X > g_srScrollRegion.Left)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6426 g_coord.X--;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6427 else if (g_coord.Y > g_srScrollRegion.Top)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6428 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6429 g_coord.X = g_srScrollRegion.Right;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6430 g_coord.Y--;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6431 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6432 gotoxy(g_coord.X + 1, g_coord.Y + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6433 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6434 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6435 fputs("\\b\n", fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6436 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6437 s++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6438 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6439 else if (s[0] == '\a')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6440 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6441 /* \a, bell */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6442 MessageBeep(0xFFFFFFFF);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6443 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6444 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6445 fputs("\\a\n", fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6446 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6447 s++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6448 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6449 else if (s[0] == ESC && len >= 3-1 && s[1] == '|')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6450 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6451 #ifdef MCH_WRITE_DUMP
24
8ff7fd162d3c updated for version 7.0016
vimboss
parents: 23
diff changeset
6452 char_u *old_s = s;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6453 #endif
24
8ff7fd162d3c updated for version 7.0016
vimboss
parents: 23
diff changeset
6454 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
6455 int arg1 = 0, arg2 = 0, argc = 0, args[16];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6456
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6457 switch (s[2])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6458 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6459 case '0': case '1': case '2': case '3': case '4':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6460 case '5': case '6': case '7': case '8': case '9':
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6461 p = s + 1;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6462 do
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6463 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6464 ++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
6465 args[argc] = getdigits(&p);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6466 argc += (argc < 15) ? 1 : 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6467 if (p > s + len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6468 break;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6469 } while (*p == ';');
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6470
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6471 if (p > s + len)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6472 break;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6473
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6474 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
6475 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
6476 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
6477 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6478 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
6479 normvideo();
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6480 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
6481 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6482 if (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
6483 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
6484 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6485 textattr((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
6486 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6487 else if (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
6488 vtp_sgr_bulks(argc, args);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6489 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6490 else if (argc == 2 && *p == 'H')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6491 {
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6492 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
6493 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6494 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
6495 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6496 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
6497 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6498 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
6499 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6500 gotoxy(g_coord.X + 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6501 max(g_srScrollRegion.Top, g_coord.Y - arg1) + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6502 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6503 else if (argc == 1 && *p == 'b')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6504 {
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6505 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
6506 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6507 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
6508 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6509 gotoxy(min(g_srScrollRegion.Right, g_coord.X + arg1) + 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6510 g_coord.Y + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6511 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6512 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
6513 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6514 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
6515 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6516 else if (argc == 1 && *p == 'H')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6517 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6518 gotoxy(1, arg1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6519 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6520 else if (argc == 1 && *p == 'L')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6521 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6522 insert_lines(arg1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6523 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
6524 else if (argc == 1 && *p == 'M')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6525 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6526 delete_lines(arg1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6527 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6528
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 819
diff changeset
6529 len -= (int)(p - s);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6530 s = p + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6531 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6532
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6533 case 'A':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6534 gotoxy(g_coord.X + 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6535 max(g_srScrollRegion.Top, g_coord.Y - 1) + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6536 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6537
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6538 case 'B':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6539 visual_bell();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6540 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6541
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6542 case 'C':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6543 gotoxy(min(g_srScrollRegion.Right, g_coord.X + 1) + 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6544 g_coord.Y + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6545 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6546
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6547 case 'E':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6548 termcap_mode_end();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6549 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6550
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6551 case 'F':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6552 standout();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6553 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6554
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6555 case 'f':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6556 standend();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6557 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6558
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6559 case 'H':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6560 gotoxy(1, 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6561 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6562
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6563 case 'j':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6564 clear_to_end_of_display();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6565 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6566
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6567 case 'J':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6568 clear_screen();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6569 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6570
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6571 case 'K':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6572 clear_to_end_of_line();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6573 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6574
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6575 case 'L':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6576 insert_lines(1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6577 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6578
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6579 case 'M':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6580 delete_lines(1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6581 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6582
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6583 case 'S':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6584 termcap_mode_start();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6585 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6586
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6587 case 'V':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6588 cursor_visible(TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6589 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6590
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6591 case 'v':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6592 cursor_visible(FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6593 goto got3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6594
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6595 got3:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6596 s += 3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6597 len -= 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6598 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6599
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6600 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6601 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6602 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6603 fputs("ESC | ", fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6604 fwrite(old_s + 2, sizeof(char_u), s - old_s - 2, fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6605 fputc('\n', fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6606 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6607 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6608 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6609 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6610 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6611 /* Write a single character */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6612 DWORD nWritten;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6613
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6614 nWritten = write_chars(s, 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6615 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6616 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6617 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6618 fputc('>', fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6619 fwrite(s, sizeof(char_u), nWritten, fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6620 fputs("<\n", fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6621 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6622 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6623
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6624 len -= (nWritten - 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6625 s += nWritten;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6626 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6627 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6628
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6629 #ifdef MCH_WRITE_DUMP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6630 if (fdDump)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6631 fflush(fdDump);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6632 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6633 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6634
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6635 #endif /* FEAT_GUI_W32 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6636
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6637
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6638 /*
8589
e32ab146b6c9 commit https://github.com/vim/vim/commit/0e0b3dd335b863603b9a2d415ef18d983e2467ae
Christian Brabandt <cb@256bit.org>
parents: 8493
diff changeset
6639 * Delay for "msec" milliseconds.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6640 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6641 void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6642 mch_delay(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6643 long msec,
10783
04eb70c77cf4 patch 8.0.0281: some files are still using ARGSUSED instead of UNUSED
Christian Brabandt <cb@256bit.org>
parents: 10781
diff changeset
6644 int ignoreinput UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6645 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6646 #ifdef FEAT_GUI_W32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6647 Sleep((int)msec); /* never wait for input */
14
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6648 #else /* Console */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6649 if (ignoreinput)
14
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6650 # ifdef FEAT_MZSCHEME
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6651 if (mzthreads_allowed() && p_mzq > 0 && msec > p_mzq)
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6652 {
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6653 int towait = p_mzq;
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6654
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6655 /* if msec is large enough, wait by portions in p_mzq */
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6656 while (msec > 0)
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6657 {
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6658 mzvim_check_threads();
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6659 if (msec < towait)
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6660 towait = msec;
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6661 Sleep(towait);
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6662 msec -= towait;
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6663 }
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6664 }
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6665 else
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6666 # endif
946da5994c01 updated for version 7.0006
vimboss
parents: 10
diff changeset
6667 Sleep((int)msec);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6668 else
11949
74e45c11b754 patch 8.0.0854: no redraw after terminal was closed
Christian Brabandt <cb@256bit.org>
parents: 11929
diff changeset
6669 WaitForChar(msec, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6670 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6671 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6672
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6673
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6674 /*
7657
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
6675 * 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
6676 * This can also remove a symbolic link like Unix.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6677 * Return 0 for success, -1 for failure.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6678 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6679 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6680 mch_remove(char_u *name)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6681 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6682 #ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6683 WCHAR *wn = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6684 int n;
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
6685 #endif
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
6686
7657
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
6687 /*
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
6688 * 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
6689 * 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
6690 */
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
6691 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
6692 return mch_rmdir(name);
9c5e8254ea6b commit https://github.com/vim/vim/commit/203258c3ad2966cc9d08b3805b103333988b30b7
Christian Brabandt <cb@256bit.org>
parents: 7619
diff changeset
6693
4872
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
6694 win32_setattrs(name, FILE_ATTRIBUTE_NORMAL);
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
6695
fa98c2b030ed updated for version 7.3.1182
Bram Moolenaar <bram@vim.org>
parents: 4789
diff changeset
6696 #ifdef FEAT_MBYTE
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6697 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6698 {
1752
a8aae2e1d2ae updated for version 7.2-049
vimboss
parents: 1686
diff changeset
6699 wn = enc_to_utf16(name, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6700 if (wn != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6701 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6702 n = DeleteFileW(wn) ? 0 : -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6703 vim_free(wn);
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6704 return n;
7
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 #endif
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
6708 return DeleteFile((LPCSTR)name) ? 0 : -1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6709 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6710
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6711
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6712 /*
10240
175b1116f96a commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents: 10060
diff changeset
6713 * Check for an "interrupt signal": CTRL-break or CTRL-C.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6714 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6715 void
10240
175b1116f96a commit https://github.com/vim/vim/commit/b9c31e71f5a4653a27e81c21226039bfa35b9131
Christian Brabandt <cb@256bit.org>
parents: 10060
diff changeset
6716 mch_breakcheck(int force)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6717 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6718 #ifndef FEAT_GUI_W32 /* never used */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6719 if (g_fCtrlCPressed || g_fCBrkPressed)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6720 {
12066
8ad282dee649 patch 8.0.0913: MS-Windows: CTRL-C kills shell in terminal window
Christian Brabandt <cb@256bit.org>
parents: 12050
diff changeset
6721 ctrl_break_was_pressed = g_fCBrkPressed;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6722 g_fCtrlCPressed = g_fCBrkPressed = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6723 got_int = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6724 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6725 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6726 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6727
7460
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
6728 /* physical RAM to leave for the OS */
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
6729 #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
6730
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
6731 /*
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
6732 * 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
6733 */
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
6734 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
6735 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
6736 {
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6737 MEMORYSTATUSEX ms;
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6738
7460
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
6739 PlatformId();
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6740 /* Need to use GlobalMemoryStatusEx() when there is more memory than
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6741 * what fits in 32 bits. But it's not always available. */
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6742 ms.dwLength = sizeof(MEMORYSTATUSEX);
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6743 GlobalMemoryStatusEx(&ms);
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6744 if (ms.ullAvailVirtual < ms.ullTotalPhys)
7460
1420ccc9f610 commit https://github.com/vim/vim/commit/ee2739787f1e996739541bb60e6003b892497e03
Christian Brabandt <cb@256bit.org>
parents: 7194
diff changeset
6745 {
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6746 /* Process address space fits in physical RAM, use all of it. */
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6747 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
6748 }
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6749 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
6750 {
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6751 /* Catch old NT box or perverse hardware setup. */
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6752 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
6753 }
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6754 /* Use physical RAM less reserve for OS + data. */
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6755 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
6756 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6757
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6758 #ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6759 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6760 * Same code as below, but with wide functions and no comments.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6761 * Return 0 for success, non-zero for failure.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6762 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6763 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6764 mch_wrename(WCHAR *wold, WCHAR *wnew)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6765 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6766 WCHAR *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6767 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6768 WCHAR szTempFile[_MAX_PATH + 1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6769 WCHAR szNewPath[_MAX_PATH + 1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6770 HANDLE hf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6771
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6772 p = wold;
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6773 for (i = 0; wold[i] != NUL; ++i)
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6774 if ((wold[i] == '/' || wold[i] == '\\' || wold[i] == ':')
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6775 && wold[i + 1] != 0)
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6776 p = wold + i + 1;
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6777 if ((int)(wold + i - p) < 8 || p[6] != '~')
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6778 return (MoveFileW(wold, wnew) == 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6779
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6780 if (GetFullPathNameW(wnew, _MAX_PATH, szNewPath, &p) == 0 || p == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6781 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6782 *p = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6783
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6784 if (GetTempFileNameW(szNewPath, L"VIM", 0, szTempFile) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6785 return -2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6786
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6787 if (!DeleteFileW(szTempFile))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6788 return -3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6789
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6790 if (!MoveFileW(wold, szTempFile))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6791 return -4;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6792
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6793 if ((hf = CreateFileW(wold, GENERIC_WRITE, 0, NULL, CREATE_NEW,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6794 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6795 return -5;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6796 if (!CloseHandle(hf))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6797 return -6;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6798
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6799 if (!MoveFileW(szTempFile, wnew))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6800 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6801 (void)MoveFileW(szTempFile, wold);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6802 return -7;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6803 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6804
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6805 DeleteFileW(szTempFile);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6806
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6807 if (!DeleteFileW(wold))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6808 return -8;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6809
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6810 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6811 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6812 #endif
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 * mch_rename() works around a bug in rename (aka MoveFile) in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6817 * Windows 95: rename("foo.bar", "foo.bar~") will generate a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6818 * file whose short file name is "FOO.BAR" (its long file name will
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6819 * be correct: "foo.bar~"). Because a file can be accessed by
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6820 * either its SFN or its LFN, "foo.bar" has effectively been
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6821 * renamed to "foo.bar", which is not at all what was wanted. This
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6822 * seems to happen only when renaming files with three-character
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6823 * extensions by appending a suffix that does not include ".".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6824 * Windows NT gets it right, however, with an SFN of "FOO~1.BAR".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6825 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6826 * 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
6827 * When renaming "abcdef~1.txt" to "abcdef~1.txt~", the short name can be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6828 * "abcdef~1.txt" again. This has been reported on Windows NT 4.0 with
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6829 * service pack 6. Doesn't seem to happen on Windows 98.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6830 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6831 * Like rename(), returns 0 upon success, non-zero upon failure.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6832 * Should probably set errno appropriately when errors occur.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6833 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6834 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6835 mch_rename(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6836 const char *pszOldFile,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6837 const char *pszNewFile)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6838 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6839 char szTempFile[_MAX_PATH+1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6840 char szNewPath[_MAX_PATH+1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6841 char *pszFilePart;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6842 HANDLE hf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6843 #ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6844 WCHAR *wold = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6845 WCHAR *wnew = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6846 int retval = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6847
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6848 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6849 {
1752
a8aae2e1d2ae updated for version 7.2-049
vimboss
parents: 1686
diff changeset
6850 wold = enc_to_utf16((char_u *)pszOldFile, NULL);
a8aae2e1d2ae updated for version 7.2-049
vimboss
parents: 1686
diff changeset
6851 wnew = enc_to_utf16((char_u *)pszNewFile, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6852 if (wold != NULL && wnew != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6853 retval = mch_wrename(wold, wnew);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6854 vim_free(wold);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6855 vim_free(wnew);
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6856 return retval;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6857 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6858 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6859
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6860 /*
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6861 * No need to play tricks unless the file name contains a "~" as the
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6862 * seventh character.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6863 */
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6864 pszFilePart = (char *)gettail((char_u *)pszOldFile);
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6865 if (STRLEN(pszFilePart) < 8 || pszFilePart[6] != '~')
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6866 return rename(pszOldFile, pszNewFile);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6867
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6868 /* Get base path of new file name. Undocumented feature: If pszNewFile is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6869 * a directory, no error is returned and pszFilePart will be NULL. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6870 if (GetFullPathName(pszNewFile, _MAX_PATH, szNewPath, &pszFilePart) == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6871 || pszFilePart == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6872 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6873 *pszFilePart = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6874
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6875 /* Get (and create) a unique temporary file name in directory of new file */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6876 if (GetTempFileName(szNewPath, "VIM", 0, szTempFile) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6877 return -2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6878
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6879 /* blow the temp file away */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6880 if (!DeleteFile(szTempFile))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6881 return -3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6882
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6883 /* rename old file to the temp file */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6884 if (!MoveFile(pszOldFile, szTempFile))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6885 return -4;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6886
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6887 /* now create an empty file called pszOldFile; this prevents the operating
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6888 * system using pszOldFile as an alias (SFN) if we're renaming within the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6889 * same directory. For example, we're editing a file called
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6890 * filename.asc.txt by its SFN, filena~1.txt. If we rename filena~1.txt
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6891 * to filena~1.txt~ (i.e., we're making a backup while writing it), the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6892 * SFN for filena~1.txt~ will be filena~1.txt, by default, which will
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
6893 * cause all sorts of problems later in buf_write(). So, we create an
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
6894 * empty file called filena~1.txt and the system will have to find some
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
6895 * other SFN for filena~1.txt~, such as filena~2.txt
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6896 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6897 if ((hf = CreateFile(pszOldFile, GENERIC_WRITE, 0, NULL, CREATE_NEW,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6898 FILE_ATTRIBUTE_NORMAL, NULL)) == INVALID_HANDLE_VALUE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6899 return -5;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6900 if (!CloseHandle(hf))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6901 return -6;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6902
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6903 /* rename the temp file to the new file */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6904 if (!MoveFile(szTempFile, pszNewFile))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6905 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6906 /* Renaming failed. Rename the file back to its old name, so that it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6907 * looks like nothing happened. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6908 (void)MoveFile(szTempFile, pszOldFile);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6909
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6910 return -7;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6911 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6912
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6913 /* Seems to be left around on Novell filesystems */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6914 DeleteFile(szTempFile);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6915
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6916 /* finally, remove the empty old file */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6917 if (!DeleteFile(pszOldFile))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6918 return -8;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6919
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6920 return 0; /* success */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6921 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6922
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6923 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6924 * Get the default shell for the current hardware platform
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6925 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6926 char *
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
6927 default_shell(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6928 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6929 PlatformId();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6930
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6931 return "cmd.exe";
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6932 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6933
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6934 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6935 * mch_access() extends access() to do more detailed check on network drives.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6936 * Returns 0 if file "n" has access rights according to "p", -1 otherwise.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6937 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6938 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6939 mch_access(char *n, int p)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6940 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6941 HANDLE hFile;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6942 int retval = -1; /* default: fail */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6943 #ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6944 WCHAR *wn = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6945
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6946 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
6947 wn = enc_to_utf16((char_u *)n, NULL);
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
6948 #endif
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
6949
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
6950 if (mch_isdir((char_u *)n))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6951 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6952 char TempName[_MAX_PATH + 16] = "";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6953 #ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6954 WCHAR TempNameW[_MAX_PATH + 16] = L"";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6955 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6956
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6957 if (p & R_OK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6958 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6959 /* Read check is performed by seeing if we can do a find file on
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6960 * the directory for any file. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6961 #ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6962 if (wn != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6963 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6964 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6965 WIN32_FIND_DATAW d;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6966
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6967 for (i = 0; i < _MAX_PATH && wn[i] != 0; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6968 TempNameW[i] = wn[i];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6969 if (TempNameW[i - 1] != '\\' && TempNameW[i - 1] != '/')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6970 TempNameW[i++] = '\\';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6971 TempNameW[i++] = '*';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6972 TempNameW[i++] = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6973
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6974 hFile = FindFirstFileW(TempNameW, &d);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6975 if (hFile == INVALID_HANDLE_VALUE)
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6976 goto getout;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6977 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6978 (void)FindClose(hFile);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6979 }
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
6980 else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6981 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6982 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6983 char *pch;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6984 WIN32_FIND_DATA d;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6985
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
6986 vim_strncpy((char_u *)TempName, (char_u *)n, _MAX_PATH);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6987 pch = TempName + STRLEN(TempName) - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6988 if (*pch != '\\' && *pch != '/')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6989 *++pch = '\\';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6990 *++pch = '*';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6991 *++pch = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6992
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6993 hFile = FindFirstFile(TempName, &d);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6994 if (hFile == INVALID_HANDLE_VALUE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6995 goto getout;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6996 (void)FindClose(hFile);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6997 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6998 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6999
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7000 if (p & W_OK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7001 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7002 /* Trying to create a temporary file in the directory should catch
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7003 * directories on read-only network shares. However, in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7004 * directories whose ACL allows writes but denies deletes will end
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7005 * up keeping the temporary file :-(. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7006 #ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7007 if (wn != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7008 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7009 if (!GetTempFileNameW(wn, L"VIM", 0, TempNameW))
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7010 goto getout;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7011 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7012 DeleteFileW(TempNameW);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7013 }
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7014 else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7015 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7016 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7017 if (!GetTempFileName(n, "VIM", 0, TempName))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7018 goto getout;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7019 mch_remove((char_u *)TempName);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7020 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7021 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7022 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7023 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7024 {
13853
1ea18443d569 patch 8.0.1798: MS-Windows: file considered read-only too often
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
7025 // 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
7026 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
7027
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7028 /* Trying to open the file for the required access does ACL, read-only
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7029 * 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
7030 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
7031 | ((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
7032
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7033 #ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7034 if (wn != NULL)
13853
1ea18443d569 patch 8.0.1798: MS-Windows: file considered read-only too often
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
7035 hFile = CreateFileW(wn, access_mode, share_mode,
1ea18443d569 patch 8.0.1798: MS-Windows: file considered read-only too often
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
7036 NULL, OPEN_EXISTING, 0, NULL);
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7037 else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7038 #endif
13853
1ea18443d569 patch 8.0.1798: MS-Windows: file considered read-only too often
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
7039 hFile = CreateFile(n, access_mode, share_mode,
1ea18443d569 patch 8.0.1798: MS-Windows: file considered read-only too often
Christian Brabandt <cb@256bit.org>
parents: 13839
diff changeset
7040 NULL, OPEN_EXISTING, 0, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7041 if (hFile == INVALID_HANDLE_VALUE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7042 goto getout;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7043 CloseHandle(hFile);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7044 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7045
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7046 retval = 0; /* success */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7047 getout:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7048 #ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7049 vim_free(wn);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7050 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7051 return retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7052 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7053
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7054 #if defined(FEAT_MBYTE) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7055 /*
1752
a8aae2e1d2ae updated for version 7.2-049
vimboss
parents: 1686
diff changeset
7056 * Version of open() that may use UTF-16 file name.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7057 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7058 int
11921
bafbdbc64bbe patch 8.0.0840: MS-Windows: fopen() and open() prototypes are wrong
Christian Brabandt <cb@256bit.org>
parents: 11723
diff changeset
7059 mch_open(const char *name, int flags, int mode)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7060 {
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
7061 /* _wopen() does not work with Borland C 5.5: creates a read-only file. */
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
7062 # ifndef __BORLANDC__
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7063 WCHAR *wn;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7064 int f;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7065
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
7066 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7067 {
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
7068 wn = enc_to_utf16((char_u *)name, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7069 if (wn != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7070 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7071 f = _wopen(wn, flags, mode);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7072 vim_free(wn);
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7073 return f;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7074 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7075 }
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
7076 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7077
6345
9bc6ce142cc3 updated for version 7.4.505
Bram Moolenaar <bram@vim.org>
parents: 6293
diff changeset
7078 /* open() can open a file which name is longer than _MAX_PATH bytes
9bc6ce142cc3 updated for version 7.4.505
Bram Moolenaar <bram@vim.org>
parents: 6293
diff changeset
7079 * and shorter than _MAX_PATH characters successfully, but sometimes it
9bc6ce142cc3 updated for version 7.4.505
Bram Moolenaar <bram@vim.org>
parents: 6293
diff changeset
7080 * causes unexpected error in another part. We make it an error explicitly
9bc6ce142cc3 updated for version 7.4.505
Bram Moolenaar <bram@vim.org>
parents: 6293
diff changeset
7081 * here. */
9bc6ce142cc3 updated for version 7.4.505
Bram Moolenaar <bram@vim.org>
parents: 6293
diff changeset
7082 if (strlen(name) >= _MAX_PATH)
9bc6ce142cc3 updated for version 7.4.505
Bram Moolenaar <bram@vim.org>
parents: 6293
diff changeset
7083 return -1;
9bc6ce142cc3 updated for version 7.4.505
Bram Moolenaar <bram@vim.org>
parents: 6293
diff changeset
7084
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7085 return open(name, flags, mode);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7086 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7087
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7088 /*
1752
a8aae2e1d2ae updated for version 7.2-049
vimboss
parents: 1686
diff changeset
7089 * Version of fopen() that may use UTF-16 file name.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7090 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7091 FILE *
11921
bafbdbc64bbe patch 8.0.0840: MS-Windows: fopen() and open() prototypes are wrong
Christian Brabandt <cb@256bit.org>
parents: 11723
diff changeset
7092 mch_fopen(const char *name, const char *mode)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7093 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7094 WCHAR *wn, *wm;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7095 FILE *f = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7096
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7097 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7098 {
1686
c7c53db66b55 updated for version 7.2b-019
vimboss
parents: 1620
diff changeset
7099 # if defined(DEBUG) && _MSC_VER >= 1400
1569
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
7100 /* Work around an annoying assertion in the Microsoft debug CRT
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
7101 * when mode's text/binary setting doesn't match _get_fmode(). */
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
7102 char newMode = mode[strlen(mode) - 1];
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
7103 int oldMode = 0;
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
7104
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
7105 _get_fmode(&oldMode);
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
7106 if (newMode == 't')
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
7107 _set_fmode(_O_TEXT);
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
7108 else if (newMode == 'b')
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
7109 _set_fmode(_O_BINARY);
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
7110 # endif
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
7111 wn = enc_to_utf16((char_u *)name, NULL);
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 8059
diff changeset
7112 wm = enc_to_utf16((char_u *)mode, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7113 if (wn != NULL && wm != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7114 f = _wfopen(wn, wm);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7115 vim_free(wn);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7116 vim_free(wm);
1569
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
7117
1686
c7c53db66b55 updated for version 7.2b-019
vimboss
parents: 1620
diff changeset
7118 # if defined(DEBUG) && _MSC_VER >= 1400
1569
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
7119 _set_fmode(oldMode);
9fbb40a1228a updated for version 7.1-282
vimboss
parents: 1443
diff changeset
7120 # endif
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7121 return f;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7122 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7123
6345
9bc6ce142cc3 updated for version 7.4.505
Bram Moolenaar <bram@vim.org>
parents: 6293
diff changeset
7124 /* fopen() can open a file which name is longer than _MAX_PATH bytes
9bc6ce142cc3 updated for version 7.4.505
Bram Moolenaar <bram@vim.org>
parents: 6293
diff changeset
7125 * and shorter than _MAX_PATH characters successfully, but sometimes it
9bc6ce142cc3 updated for version 7.4.505
Bram Moolenaar <bram@vim.org>
parents: 6293
diff changeset
7126 * causes unexpected error in another part. We make it an error explicitly
9bc6ce142cc3 updated for version 7.4.505
Bram Moolenaar <bram@vim.org>
parents: 6293
diff changeset
7127 * here. */
9bc6ce142cc3 updated for version 7.4.505
Bram Moolenaar <bram@vim.org>
parents: 6293
diff changeset
7128 if (strlen(name) >= _MAX_PATH)
9bc6ce142cc3 updated for version 7.4.505
Bram Moolenaar <bram@vim.org>
parents: 6293
diff changeset
7129 return NULL;
9bc6ce142cc3 updated for version 7.4.505
Bram Moolenaar <bram@vim.org>
parents: 6293
diff changeset
7130
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7131 return fopen(name, mode);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7132 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7133 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7134
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7135 #ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7136 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7137 * SUB STREAM (aka info stream) handling:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7138 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7139 * NTFS can have sub streams for each file. Normal contents of file is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7140 * stored in the main stream, and extra contents (author information and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7141 * title and so on) can be stored in sub stream. After Windows 2000, user
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7142 * can access and store those informations in sub streams via explorer's
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7143 * property menuitem in right click menu. Those informations in sub streams
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7144 * were lost when copying only the main stream. So we have to copy sub
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7145 * streams.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7146 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7147 * Incomplete explanation:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7148 * http://msdn.microsoft.com/library/en-us/dnw2k/html/ntfs5.asp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7149 * More useful info and an example:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7150 * http://www.sysinternals.com/ntw2k/source/misc.shtml#streams
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7151 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7152
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7153 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7154 * Copy info stream data "substream". Read from the file with BackupRead(sh)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7155 * and write to stream "substream" of file "to".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7156 * Errors are ignored.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7157 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7158 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7159 copy_substream(HANDLE sh, void *context, WCHAR *to, WCHAR *substream, long len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7160 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7161 HANDLE hTo;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7162 WCHAR *to_name;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7163
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7164 to_name = malloc((wcslen(to) + wcslen(substream) + 1) * sizeof(WCHAR));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7165 wcscpy(to_name, to);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7166 wcscat(to_name, substream);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7167
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7168 hTo = CreateFileW(to_name, GENERIC_WRITE, 0, NULL, OPEN_ALWAYS,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7169 FILE_ATTRIBUTE_NORMAL, NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7170 if (hTo != INVALID_HANDLE_VALUE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7171 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7172 long done;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7173 DWORD todo;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7174 DWORD readcnt, written;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7175 char buf[4096];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7176
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7177 /* Copy block of bytes at a time. Abort when something goes wrong. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7178 for (done = 0; done < len; done += written)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7179 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7180 /* (size_t) cast for Borland C 5.5 */
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 819
diff changeset
7181 todo = (DWORD)((size_t)(len - done) > sizeof(buf) ? sizeof(buf)
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 819
diff changeset
7182 : (size_t)(len - done));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7183 if (!BackupRead(sh, (LPBYTE)buf, todo, &readcnt,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7184 FALSE, FALSE, context)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7185 || readcnt != todo
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7186 || !WriteFile(hTo, buf, todo, &written, NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7187 || written != todo)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7188 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7189 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7190 CloseHandle(hTo);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7191 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7192
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7193 free(to_name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7194 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7195
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7196 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7197 * Copy info streams from file "from" to file "to".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7198 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7199 static void
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7200 copy_infostreams(char_u *from, char_u *to)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7201 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7202 WCHAR *fromw;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7203 WCHAR *tow;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7204 HANDLE sh;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7205 WIN32_STREAM_ID sid;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7206 int headersize;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7207 WCHAR streamname[_MAX_PATH];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7208 DWORD readcount;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7209 void *context = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7210 DWORD lo, hi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7211 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7212
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7213 /* Convert the file names to wide characters. */
1752
a8aae2e1d2ae updated for version 7.2-049
vimboss
parents: 1686
diff changeset
7214 fromw = enc_to_utf16(from, NULL);
a8aae2e1d2ae updated for version 7.2-049
vimboss
parents: 1686
diff changeset
7215 tow = enc_to_utf16(to, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7216 if (fromw != NULL && tow != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7217 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7218 /* Open the file for reading. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7219 sh = CreateFileW(fromw, GENERIC_READ, FILE_SHARE_READ, NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7220 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7221 if (sh != INVALID_HANDLE_VALUE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7222 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7223 /* Use BackupRead() to find the info streams. Repeat until we
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7224 * have done them all.*/
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7225 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7226 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7227 /* Get the header to find the length of the stream name. If
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7228 * the "readcount" is zero we have done all info streams. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7229 ZeroMemory(&sid, sizeof(WIN32_STREAM_ID));
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 819
diff changeset
7230 headersize = (int)((char *)&sid.cStreamName - (char *)&sid.dwStreamId);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7231 if (!BackupRead(sh, (LPBYTE)&sid, headersize,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7232 &readcount, FALSE, FALSE, &context)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7233 || readcount == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7234 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7235
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7236 /* We only deal with streams that have a name. The normal
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7237 * file data appears to be without a name, even though docs
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7238 * suggest it is called "::$DATA". */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7239 if (sid.dwStreamNameSize > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7240 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7241 /* Read the stream name. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7242 if (!BackupRead(sh, (LPBYTE)streamname,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7243 sid.dwStreamNameSize,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7244 &readcount, FALSE, FALSE, &context))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7245 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7246
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7247 /* Copy an info stream with a name ":anything:$DATA".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7248 * Skip "::$DATA", it has no stream name (examples suggest
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7249 * it might be used for the normal file contents).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7250 * Note that BackupRead() counts bytes, but the name is in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7251 * wide characters. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7252 len = readcount / sizeof(WCHAR);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7253 streamname[len] = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7254 if (len > 7 && wcsicmp(streamname + len - 6,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7255 L":$DATA") == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7256 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7257 streamname[len - 6] = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7258 copy_substream(sh, &context, tow, streamname,
10
4e2284e71352 updated for version 7.0002
vimboss
parents: 9
diff changeset
7259 (long)sid.Size.u.LowPart);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7260 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7261 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7262
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7263 /* Advance to the next stream. We might try seeking too far,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7264 * but BackupSeek() doesn't skip over stream borders, thus
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7265 * that's OK. */
323
03b3684919e3 updated for version 7.0084
vimboss
parents: 297
diff changeset
7266 (void)BackupSeek(sh, sid.Size.u.LowPart, sid.Size.u.HighPart,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7267 &lo, &hi, &context);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7268 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7269
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7270 /* Clear the context. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7271 (void)BackupRead(sh, NULL, 0, &readcount, TRUE, FALSE, &context);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7272
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7273 CloseHandle(sh);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7274 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7275 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7276 vim_free(fromw);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7277 vim_free(tow);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7278 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7279 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7280
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7281 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7282 * Copy file attributes from file "from" to file "to".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7283 * For Windows NT and later we copy info streams.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7284 * Always returns zero, errors are ignored.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7285 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7286 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7287 mch_copy_file_attribute(char_u *from, char_u *to)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7288 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7289 #ifdef FEAT_MBYTE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7290 /* File streams only work on Windows NT and later. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7291 PlatformId();
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7292 copy_infostreams(from, to);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7293 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7294 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7295 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7296
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7297 #if defined(MYRESETSTKOFLW) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7298 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7299 * Recreate a destroyed stack guard page in win32.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7300 * Written by Benjamin Peterson.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7301 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7302
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7303 /* These magic numbers are from the MS header files */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7304 #define MIN_STACK_WINNT 2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7305
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7306 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7307 * This function does the same thing as _resetstkoflw(), which is only
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7308 * available in DevStudio .net and later.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7309 * Returns 0 for failure, 1 for success.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7310 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7311 int
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7312 myresetstkoflw(void)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7313 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7314 BYTE *pStackPtr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7315 BYTE *pGuardPage;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7316 BYTE *pStackBase;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7317 BYTE *pLowestPossiblePage;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7318 MEMORY_BASIC_INFORMATION mbi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7319 SYSTEM_INFO si;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7320 DWORD nPageSize;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7321 DWORD dummy;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7322
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7323 PlatformId();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7324
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7325 /* We need to know the system page size. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7326 GetSystemInfo(&si);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7327 nPageSize = si.dwPageSize;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7328
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7329 /* ...and the current stack pointer */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7330 pStackPtr = (BYTE*)_alloca(1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7331
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7332 /* ...and the base of the stack. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7333 if (VirtualQuery(pStackPtr, &mbi, sizeof mbi) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7334 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7335 pStackBase = (BYTE*)mbi.AllocationBase;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7336
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7337 /* ...and the page thats min_stack_req pages away from stack base; this is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7338 * the lowest page we could use. */
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7339 pLowestPossiblePage = pStackBase + MIN_STACK_WINNT * nPageSize;
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7340
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7341 {
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7342 /* We want the first committed page in the stack Start at the stack
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7343 * base and move forward through memory until we find a committed block.
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10240
diff changeset
7344 */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7345 BYTE *pBlock = pStackBase;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7346
406
aa550d9d2403 updated for version 7.0106
vimboss
parents: 368
diff changeset
7347 for (;;)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7348 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7349 if (VirtualQuery(pBlock, &mbi, sizeof mbi) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7350 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7351
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7352 pBlock += mbi.RegionSize;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7353
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7354 if (mbi.State & MEM_COMMIT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7355 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7356 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7357
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7358 /* mbi now describes the first committed block in the stack. */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7359 if (mbi.Protect & PAGE_GUARD)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7360 return 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7361
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7362 /* decide where the guard page should start */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7363 if ((long_u)(mbi.BaseAddress) < (long_u)pLowestPossiblePage)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7364 pGuardPage = pLowestPossiblePage;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7365 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7366 pGuardPage = (BYTE*)mbi.BaseAddress;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7367
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7368 /* allocate the guard page */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7369 if (!VirtualAlloc(pGuardPage, nPageSize, MEM_COMMIT, PAGE_READWRITE))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7370 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7371
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7372 /* apply the guard attribute to the page */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7373 if (!VirtualProtect(pGuardPage, nPageSize, PAGE_READWRITE | PAGE_GUARD,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7374 &dummy))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7375 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7376 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7377
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7378 return 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7379 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7380 #endif
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7381
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7382
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7383 #if defined(FEAT_MBYTE) || defined(PROTO)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7384 /*
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7385 * The command line arguments in UCS2
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7386 */
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
7387 static int nArgsW = 0;
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7388 static LPWSTR *ArglistW = NULL;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7389 static int global_argc = 0;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7390 static char **global_argv;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7391
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7392 static int used_file_argc = 0; /* last argument in global_argv[] used
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7393 for the argument list. */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7394 static int *used_file_indexes = NULL; /* indexes in global_argv[] for
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7395 command line arguments added to
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7396 the argument list */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7397 static int used_file_count = 0; /* nr of entries in used_file_indexes */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7398 static int used_file_literal = FALSE; /* take file names literally */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7399 static int used_file_full_path = FALSE; /* file name was full path */
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7400 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
7401 static int used_alist_count = 0;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7402
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7403
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7404 /*
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7405 * Get the command line arguments. Unicode version.
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7406 * Returns argc. Zero when something fails.
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7407 */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7408 int
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7409 get_cmd_argsW(char ***argvp)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7410 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7411 char **argv = NULL;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7412 int argc = 0;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7413 int i;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7414
6193
59cd2b16f718 updated for version 7.4.432
Bram Moolenaar <bram@vim.org>
parents: 6185
diff changeset
7415 free_cmd_argsW();
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7416 ArglistW = CommandLineToArgvW(GetCommandLineW(), &nArgsW);
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7417 if (ArglistW != NULL)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7418 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7419 argv = malloc((nArgsW + 1) * sizeof(char *));
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7420 if (argv != NULL)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7421 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7422 argc = nArgsW;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7423 argv[argc] = NULL;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7424 for (i = 0; i < argc; ++i)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7425 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7426 int len;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7427
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7428 /* Convert each Unicode argument to the current codepage. */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7429 WideCharToMultiByte_alloc(GetACP(), 0,
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 819
diff changeset
7430 ArglistW[i], (int)wcslen(ArglistW[i]) + 1,
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7431 (LPSTR *)&argv[i], &len, 0, 0);
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7432 if (argv[i] == NULL)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7433 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7434 /* Out of memory, clear everything. */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7435 while (i > 0)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7436 free(argv[--i]);
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7437 free(argv);
5529
0e21e2a38ec6 updated for version 7.4.113
Bram Moolenaar <bram@vim.org>
parents: 5494
diff changeset
7438 argv = NULL;
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7439 argc = 0;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7440 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7441 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7442 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7443 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7444
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7445 global_argc = argc;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7446 global_argv = argv;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7447 if (argc > 0)
6193
59cd2b16f718 updated for version 7.4.432
Bram Moolenaar <bram@vim.org>
parents: 6185
diff changeset
7448 {
59cd2b16f718 updated for version 7.4.432
Bram Moolenaar <bram@vim.org>
parents: 6185
diff changeset
7449 if (used_file_indexes != NULL)
59cd2b16f718 updated for version 7.4.432
Bram Moolenaar <bram@vim.org>
parents: 6185
diff changeset
7450 free(used_file_indexes);
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7451 used_file_indexes = malloc(argc * sizeof(int));
6193
59cd2b16f718 updated for version 7.4.432
Bram Moolenaar <bram@vim.org>
parents: 6185
diff changeset
7452 }
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7453
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7454 if (argvp != NULL)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7455 *argvp = argv;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7456 return argc;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7457 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7458
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7459 void
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7460 free_cmd_argsW(void)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7461 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7462 if (ArglistW != NULL)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7463 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7464 GlobalFree(ArglistW);
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7465 ArglistW = NULL;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7466 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7467 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7468
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7469 /*
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7470 * Remember "name" is an argument that was added to the argument list.
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7471 * 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
7472 * is called.
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7473 */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7474 void
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7475 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
7476 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7477 int i;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7478
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7479 if (used_file_indexes == NULL)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7480 return;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7481 for (i = used_file_argc + 1; i < global_argc; ++i)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7482 if (STRCMP(global_argv[i], name) == 0)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7483 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7484 used_file_argc = i;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7485 used_file_indexes[used_file_count++] = i;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7486 break;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7487 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7488 used_file_literal = literal;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7489 used_file_full_path = full_path;
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7490 used_file_diff_mode = diff_mode;
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7491 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7492
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7493 /*
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7494 * 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
7495 * leave it alone when 'encoding' is set.
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7496 */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7497 void
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7498 set_alist_count(void)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7499 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7500 used_alist_count = GARGCOUNT;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7501 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7502
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7503 /*
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7504 * Fix the encoding of the command line arguments. Invoked when 'encoding'
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7505 * has been changed while starting up. Use the UCS-2 command line arguments
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7506 * and convert them to 'encoding'.
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7507 */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7508 void
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7509 fix_arg_enc(void)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7510 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7511 int i;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7512 int idx;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7513 char_u *str;
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7514 int *fnum_list;
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7515
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7516 /* Safety checks:
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7517 * - if argument count differs between the wide and non-wide argument
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7518 * list, something must be wrong.
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7519 * - the file name arguments must have been located.
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7520 * - the length of the argument list wasn't changed by the user.
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7521 */
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
7522 if (global_argc != nArgsW
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7523 || ArglistW == NULL
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7524 || used_file_indexes == NULL
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7525 || used_file_count == 0
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7526 || used_alist_count != GARGCOUNT)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7527 return;
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7528
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7529 /* Remember the buffer numbers for the arguments. */
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7530 fnum_list = (int *)alloc((int)sizeof(int) * GARGCOUNT);
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7531 if (fnum_list == NULL)
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7532 return; /* out of memory */
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7533 for (i = 0; i < GARGCOUNT; ++i)
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7534 fnum_list[i] = GARGLIST[i].ae_fnum;
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7535
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7536 /* Clear the argument list. Make room for the new arguments. */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7537 alist_clear(&global_alist);
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7538 if (ga_grow(&global_alist.al_ga, used_file_count) == FAIL)
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7539 return; /* out of memory */
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7540
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7541 for (i = 0; i < used_file_count; ++i)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7542 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7543 idx = used_file_indexes[i];
1752
a8aae2e1d2ae updated for version 7.2-049
vimboss
parents: 1686
diff changeset
7544 str = utf16_to_enc(ArglistW[idx], NULL);
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7545 if (str != NULL)
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7546 {
11991
15ec6d5adf43 patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents: 11949
diff changeset
7547 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
7548
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7549 #ifdef FEAT_DIFF
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7550 /* When using diff mode may need to concatenate file name to
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7551 * directory name. Just like it's done in main(). */
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7552 if (used_file_diff_mode && mch_isdir(str) && GARGCOUNT > 0
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7553 && !mch_isdir(alist_name(&GARGLIST[0])))
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7554 {
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7555 char_u *r;
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7556
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7557 r = concat_fnames(str, gettail(alist_name(&GARGLIST[0])), TRUE);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7558 if (r != NULL)
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7559 {
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7560 vim_free(str);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7561 str = r;
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7562 }
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7563 }
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 797
diff changeset
7564 #endif
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7565 /* Re-use the old buffer by renaming it. When not using literal
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7566 * names it's done by alist_expand() below. */
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7567 if (used_file_literal)
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7568 buf_set_name(fnum_list[i], str);
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7569
11991
15ec6d5adf43 patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents: 11949
diff changeset
7570 /* Check backtick literal. backtick literal is already expanded in
15ec6d5adf43 patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents: 11949
diff changeset
7571 * main.c, so this part add str as literal. */
15ec6d5adf43 patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents: 11949
diff changeset
7572 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
7573 {
12015
7e704d75a882 patch 8.0.0888: compiler warnings with 64 bit build
Christian Brabandt <cb@256bit.org>
parents: 11991
diff changeset
7574 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
7575
11991
15ec6d5adf43 patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents: 11949
diff changeset
7576 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
7577 literal = TRUE;
15ec6d5adf43 patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents: 11949
diff changeset
7578 }
15ec6d5adf43 patch 8.0.0876: backslashes and wildcards in backticks don't work
Christian Brabandt <cb@256bit.org>
parents: 11949
diff changeset
7579 alist_add(&global_alist, str, literal ? 2 : 0);
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7580 }
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7581 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7582
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7583 if (!used_file_literal)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7584 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7585 /* Now expand wildcards in the arguments. */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7586 /* Temporarily add '(' and ')' to 'isfname'. These are valid
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7587 * filename characters but are excluded from 'isfname' to make
13433
a23300c1c1cf patch 8.0.1591: MS-Windows: when reparsing the arguments 'wildignore' matters
Christian Brabandt <cb@256bit.org>
parents: 13416
diff changeset
7588 * "gf" work on a file name in parenthesis (e.g.: see vim.h).
a23300c1c1cf patch 8.0.1591: MS-Windows: when reparsing the arguments 'wildignore' matters
Christian Brabandt <cb@256bit.org>
parents: 13416
diff changeset
7589 * Also, unset wildignore to not be influenced by this option.
a23300c1c1cf patch 8.0.1591: MS-Windows: when reparsing the arguments 'wildignore' matters
Christian Brabandt <cb@256bit.org>
parents: 13416
diff changeset
7590 * The arguments specified in command-line should be kept even if
a23300c1c1cf patch 8.0.1591: MS-Windows: when reparsing the arguments 'wildignore' matters
Christian Brabandt <cb@256bit.org>
parents: 13416
diff changeset
7591 * encoding options were changed. */
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7592 do_cmdline_cmd((char_u *)":let SaVe_ISF = &isf|set isf+=(,)");
13433
a23300c1c1cf patch 8.0.1591: MS-Windows: when reparsing the arguments 'wildignore' matters
Christian Brabandt <cb@256bit.org>
parents: 13416
diff changeset
7593 do_cmdline_cmd((char_u *)":let SaVe_WIG = &wig|set wig=");
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7594 alist_expand(fnum_list, used_alist_count);
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7595 do_cmdline_cmd((char_u *)":let &isf = SaVe_ISF|unlet SaVe_ISF");
13433
a23300c1c1cf patch 8.0.1591: MS-Windows: when reparsing the arguments 'wildignore' matters
Christian Brabandt <cb@256bit.org>
parents: 13416
diff changeset
7596 do_cmdline_cmd((char_u *)":let &wig = SaVe_WIG|unlet SaVe_WIG");
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7597 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7598
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7599 /* If wildcard expansion failed, we are editing the first file of the
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7600 * arglist and there is no file name: Edit the first argument now. */
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7601 if (curwin->w_arg_idx == 0 && curbuf->b_fname == NULL)
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7602 {
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7603 do_cmdline_cmd((char_u *)":rewind");
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7604 if (GARGCOUNT == 1 && used_file_full_path)
13170
6559e98f3e74 patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents: 12990
diff changeset
7605 (void)vim_chdirfile(alist_name(&GARGLIST[0]), "drop");
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7606 }
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7607
f529edb9bab3 updated for version 7.0025
vimboss
parents: 39
diff changeset
7608 set_alist_count();
26
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7609 }
404aac550f35 updated for version 7.0017
vimboss
parents: 24
diff changeset
7610 #endif
10781
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7611
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7612 int
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7613 mch_setenv(char *var, char *value, int x)
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7614 {
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7615 char_u *envbuf;
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7616
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7617 envbuf = alloc((unsigned)(STRLEN(var) + STRLEN(value) + 2));
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7618 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
7619 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
7620
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7621 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
7622
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7623 #ifdef FEAT_MBYTE
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7624 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7625 {
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7626 WCHAR *p = enc_to_utf16(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
7627
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7628 vim_free(envbuf);
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7629 if (p == NULL)
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7630 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
7631 _wputenv(p);
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7632 # ifdef libintl_wputenv
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7633 libintl_wputenv(p);
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7634 # endif
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7635 /* Unlike Un*x systems, we can free the string for _wputenv(). */
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7636 vim_free(p);
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7637 }
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7638 else
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7639 #endif
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7640 {
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7641 _putenv((char *)envbuf);
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7642 # ifdef libintl_putenv
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7643 libintl_putenv((char *)envbuf);
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7644 # endif
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7645 /* Unlike Un*x systems, we can free the string for _putenv(). */
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7646 vim_free(envbuf);
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7647 }
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7648
c96534dd2b2f patch 8.0.0280: problem setting multi-byte environment var on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 10571
diff changeset
7649 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
7650 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7651
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7652 #ifndef FEAT_GUI_W32
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7653
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7654 /*
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7655 * 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
7656 * 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
7657 */
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7658 # define VTP_FIRST_SUPPORT_BUILD MAKE_VER(10, 0, 15063)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7659
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7660 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
7661 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
7662 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7663 DWORD ver, mode;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7664 HMODULE hKerneldll;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7665 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
14650
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7666 # ifdef FEAT_TERMGUICOLORS
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7667 COLORREF fg, bg;
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7668 # 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
7669
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7670 ver = get_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
7671 vtp_working = (ver >= VTP_FIRST_SUPPORT_BUILD) ? 1 : 0;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7672 GetConsoleMode(g_hConOut, &mode);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7673 mode |= (ENABLE_PROCESSED_OUTPUT | 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
7674 if (SetConsoleMode(g_hConOut, mode) == 0)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7675 vtp_working = 0;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7676
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7677 /* Use functions supported from Vista */
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7678 hKerneldll = GetModuleHandle("kernel32.dll");
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7679 if (hKerneldll != NULL)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7680 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7681 pGetConsoleScreenBufferInfoEx =
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7682 (PfnGetConsoleScreenBufferInfoEx)GetProcAddress(
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7683 hKerneldll, "GetConsoleScreenBufferInfoEx");
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7684 pSetConsoleScreenBufferInfoEx =
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7685 (PfnSetConsoleScreenBufferInfoEx)GetProcAddress(
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7686 hKerneldll, "SetConsoleScreenBufferInfoEx");
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7687 if (pGetConsoleScreenBufferInfoEx != NULL
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7688 && pSetConsoleScreenBufferInfoEx != NULL)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7689 has_csbiex = TRUE;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7690 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7691
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7692 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
7693 if (has_csbiex)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7694 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
14650
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7695 save_console_bg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_bg];
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7696 save_console_fg_rgb = (guicolor_T)csbi.ColorTable[g_color_index_fg];
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7697
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7698 # ifdef FEAT_TERMGUICOLORS
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7699 bg = (COLORREF)csbi.ColorTable[g_color_index_bg];
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7700 fg = (COLORREF)csbi.ColorTable[g_color_index_fg];
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7701 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7702 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7703 default_console_color_bg = bg;
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7704 default_console_color_fg = fg;
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7705 #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
7706
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7707 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
7708 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7709
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7710 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
7711 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
7712 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7713 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
7714 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7715
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7716 static int
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7717 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
7718 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
7719 ...)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7720 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7721 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
7722 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
7723 DWORD result;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7724
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7725 va_start(list, format);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7726 vim_vsnprintf((char *)buf, 100, (char *)format, list);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7727 va_end(list);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7728 WriteConsoleA(g_hConOut, buf, (DWORD)STRLEN(buf), &result, NULL);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7729 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
7730 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7731
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7732 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
7733 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
7734 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
7735 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7736 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
7737
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7738 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
7739 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
7740 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7741
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7742 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
7743 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
7744 int argc,
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7745 int *args
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7746 )
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7747 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7748 /* 2('\033[') + 4('255.') * 16 + NUL */
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7749 char_u buf[2 + (4 * 16) + 1];
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7750 char_u *p;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7751 int i;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7752
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7753 p = buf;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7754 *p++ = '\033';
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7755 *p++ = '[';
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7756
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7757 for (i = 0; i < argc; ++i)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7758 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7759 p += vim_snprintf((char *)p, 4, "%d", args[i] & 0xff);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7760 *p++ = ';';
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7761 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7762 p--;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7763 *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
7764 *p = NUL;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7765 vtp_printf((char *)buf);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7766 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7767
13827
27e09f1a8e5c patch 8.0.1785: missing symbol in Win32 small build
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
7768 # 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
7769 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
7770 ctermtoxterm(
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7771 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
7772 {
13839
ca8953d36264 patch 8.0.1791: using uint8_t does not work everywhere
Christian Brabandt <cb@256bit.org>
parents: 13827
diff changeset
7773 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
7774
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7775 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
7776 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
7777 }
13827
27e09f1a8e5c patch 8.0.1785: missing symbol in Win32 small build
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
7778 # 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
7779
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7780 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
7781 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
7782 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7783 # ifdef FEAT_TERMGUICOLORS
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7784 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7785 int id;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7786 guicolor_T fg = INVALCOLOR;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7787 guicolor_T bg = INVALCOLOR;
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7788 int ctermfg;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7789 int 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
7790
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7791 if (!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
7792 return;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7793
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7794 id = syn_name2id((char_u *)"Normal");
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7795 if (id > 0)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7796 syn_id2colors(id, &fg, &bg);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7797 if (fg == INVALCOLOR)
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7798 {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7799 ctermfg = -1;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7800 if (id > 0)
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7801 syn_id2cterm_bg(id, &ctermfg, &ctermbg);
14650
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7802 fg = ctermfg != -1 ? ctermtoxterm(ctermfg) : default_console_color_fg;
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7803 cterm_normal_fg_gui_color = fg;
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7804 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7805 if (bg == INVALCOLOR)
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7806 {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7807 ctermbg = -1;
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7808 if (id > 0)
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7809 syn_id2cterm_bg(id, &ctermfg, &ctermbg);
14650
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7810 bg = ctermbg != -1 ? ctermtoxterm(ctermbg) : default_console_color_bg;
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7811 cterm_normal_bg_gui_color = bg;
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7812 }
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7813 fg = (GetRValue(fg) << 16) | (GetGValue(fg) << 8) | GetBValue(fg);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7814 bg = (GetRValue(bg) << 16) | (GetGValue(bg) << 8) | GetBValue(bg);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7815
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7816 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
7817 if (has_csbiex)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7818 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7819
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7820 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
7821 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
7822 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
7823 csbi.ColorTable[g_color_index_bg] = (COLORREF)bg;
99e45fab9d17 patch 8.1.0338: MS-Windows: VTP doesn't work properly with Powershell
Christian Brabandt <cb@256bit.org>
parents: 14619
diff changeset
7824 csbi.ColorTable[g_color_index_fg] = (COLORREF)fg;
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7825 if (has_csbiex)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7826 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7827 # endif
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7828 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7829
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7830 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
7831 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
7832 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7833 # ifdef FEAT_TERMGUICOLORS
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7834 DYN_CONSOLE_SCREEN_BUFFER_INFOEX csbi;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7835
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7836 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
7837 if (has_csbiex)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7838 pGetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7839
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7840 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
7841 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
7842 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
7843 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
7844 csbi.ColorTable[g_color_index_fg] = (COLORREF)save_console_fg_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
7845 if (has_csbiex)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7846 pSetConsoleScreenBufferInfoEx(g_hConOut, &csbi);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7847 # endif
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7848 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7849
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7850 void
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7851 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
7852 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7853 if (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
7854 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
7855 else
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7856 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
7857 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7858
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7859 int
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7860 has_vtp_working(void)
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7861 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7862 return vtp_working;
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7863 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7864
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7865 int
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7866 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
7867 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7868 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
7869 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13260
diff changeset
7870
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7871 int
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7872 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
7873 {
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7874 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
7875 }
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7876
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13491
diff changeset
7877 #endif