annotate src/misc1.c @ 29247:5f314b2ed494 v8.2.5142

patch 8.2.5142: startup test fails if there is a status bar Commit: https://github.com/vim/vim/commit/fa04eae5a5b9394079bde2d37ce6f9f8a5567d48 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 21 14:38:40 2022 +0100 patch 8.2.5142: startup test fails if there is a status bar Problem: Startup test fails if there is a status bar at the top of the screen. (Ernie Rael) Solution: Use a larger vertical offset in the test.
author Bram Moolenaar <Bram@vim.org>
date Tue, 21 Jun 2022 18:45:07 +0200
parents 495d55210aac
children b1304512c036
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: 10002
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 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 * misc1.c: functions that didn't seem to fit elsewhere
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 #include "vim.h"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 #include "version.h"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16
19526
22f0dda71638 patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents: 19396
diff changeset
17 #if defined(__HAIKU__)
22f0dda71638 patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents: 19396
diff changeset
18 # include <storage/FindDirectory.h>
22f0dda71638 patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents: 19396
diff changeset
19 #endif
22f0dda71638 patch 8.2.0320: no Haiku support
Bram Moolenaar <Bram@vim.org>
parents: 19396
diff changeset
20
17781
04245f071792 patch 8.1.1887: the +cmdline_compl feature is not in the tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17452
diff changeset
21 #if defined(MSWIN)
14133
352c2832d17f patch 8.1.0084: user name completion does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 13942
diff changeset
22 # include <lm.h>
352c2832d17f patch 8.1.0084: user name completion does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 13942
diff changeset
23 #endif
352c2832d17f patch 8.1.0084: user name completion does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 13942
diff changeset
24
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
25 #define URL_SLASH 1 // path_is_url() has found "://"
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
26 #define URL_BACKSLASH 2 // path_is_url() has found ":\\"
15814
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
27
17781
04245f071792 patch 8.1.1887: the +cmdline_compl feature is not in the tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17452
diff changeset
28 // All user names (for ~user completion as done by shell).
3744
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
29 static garray_T ga_users;
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
30
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 /*
5403
b9c1c1f4cda9 updated for version 7.4.052
Bram Moolenaar <bram@vim.org>
parents: 5338
diff changeset
32 * get_leader_len() returns the length in bytes of the prefix of the given
b9c1c1f4cda9 updated for version 7.4.052
Bram Moolenaar <bram@vim.org>
parents: 5338
diff changeset
33 * string which introduces a comment. If this string is not a comment then
b9c1c1f4cda9 updated for version 7.4.052
Bram Moolenaar <bram@vim.org>
parents: 5338
diff changeset
34 * 0 is returned.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35 * When "flags" is not NULL, it is set to point to the flags of the recognized
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
36 * comment leader.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
37 * "backward" must be true for the "O" command.
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
38 * If "include_space" is set, include trailing whitespace while calculating the
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
39 * length.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
42 get_leader_len(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
43 char_u *line,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
44 char_u **flags,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
45 int backward,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
46 int include_space)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
48 int i, j;
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
49 int result;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
50 int got_com = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
51 int found_one;
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
52 char_u part_buf[COM_MAX_LEN]; // buffer for one option part
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
53 char_u *string; // pointer to comment string
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
54 char_u *list;
2809
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
55 int middle_match_len = 0;
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
56 char_u *prev_list;
2813
21346361ce6c updated for version 7.3.182
Bram Moolenaar <bram@vim.org>
parents: 2809
diff changeset
57 char_u *saved_flags = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
58
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
59 result = i = 0;
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
60 while (VIM_ISWHITE(line[i])) // leading white space is ignored
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
61 ++i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
62
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
64 * Repeat to match several nested comment strings.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
65 */
2809
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
66 while (line[i] != NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
67 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
69 * scan through the 'comments' option for a match
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
70 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71 found_one = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 for (list = curbuf->b_p_com; *list; )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73 {
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
74 // Get one option part into part_buf[]. Advance "list" to next
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
75 // one. Put "string" at start of string.
2809
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
76 if (!got_com && flags != NULL)
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
77 *flags = list; // remember where flags started
2809
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
78 prev_list = list;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79 (void)copy_option_part(&list, part_buf, COM_MAX_LEN, ",");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
80 string = vim_strchr(part_buf, ':');
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
81 if (string == NULL) // missing ':', ignore this part
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 continue;
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
83 *string++ = NUL; // isolate flags from string
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
85 // If we found a middle match previously, use that match when this
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
86 // is not a middle or end.
2809
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
87 if (middle_match_len != 0
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
88 && vim_strchr(part_buf, COM_MIDDLE) == NULL
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
89 && vim_strchr(part_buf, COM_END) == NULL)
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
90 break;
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
91
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
92 // When we already found a nested comment, only accept further
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
93 // nested comments.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94 if (got_com && vim_strchr(part_buf, COM_NEST) == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
95 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
97 // When 'O' flag present and using "O" command skip this one.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98 if (backward && vim_strchr(part_buf, COM_NOBACK) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
99 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
101 // Line contents and string must match.
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
102 // When string starts with white space, must have some white space
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
103 // (but the amount does not need to match, there might be a mix of
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
104 // TABs and spaces).
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
105 if (VIM_ISWHITE(string[0]))
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
106 {
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
107 if (i == 0 || !VIM_ISWHITE(line[i - 1]))
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
108 continue; // missing white space
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
109 while (VIM_ISWHITE(string[0]))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
110 ++string;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
111 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
112 for (j = 0; string[j] != NUL && string[j] == line[i + j]; ++j)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
113 ;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
114 if (string[j] != NUL)
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
115 continue; // string doesn't match
2809
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
116
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
117 // When 'b' flag used, there must be white space or an
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
118 // end-of-line after the string in the line.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119 if (vim_strchr(part_buf, COM_BLANK) != NULL
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
120 && !VIM_ISWHITE(line[i + j]) && line[i + j] != NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
121 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
122
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
123 // We have found a match, stop searching unless this is a middle
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
124 // comment. The middle comment can be a substring of the end
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
125 // comment in which case it's better to return the length of the
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
126 // end comment and its flags. Thus we keep searching with middle
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
127 // and end matches and use an end match if it matches better.
2809
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
128 if (vim_strchr(part_buf, COM_MIDDLE) != NULL)
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
129 {
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
130 if (middle_match_len == 0)
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
131 {
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
132 middle_match_len = j;
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
133 saved_flags = prev_list;
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
134 }
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
135 continue;
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
136 }
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
137 if (middle_match_len != 0 && j > middle_match_len)
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
138 // Use this match instead of the middle match, since it's a
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
139 // longer thus better match.
2809
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
140 middle_match_len = 0;
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
141
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
142 if (middle_match_len == 0)
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
143 i += j;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
144 found_one = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
145 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
146 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
147
2809
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
148 if (middle_match_len != 0)
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
149 {
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
150 // Use the previously found middle match after failing to find a
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
151 // match with an end.
2809
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
152 if (!got_com && flags != NULL)
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
153 *flags = saved_flags;
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
154 i += middle_match_len;
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
155 found_one = TRUE;
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
156 }
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
157
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
158 // No match found, stop scanning.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
159 if (!found_one)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
160 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
161
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
162 result = i;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
163
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
164 // Include any trailing white space.
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
165 while (VIM_ISWHITE(line[i]))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
166 ++i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
167
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
168 if (include_space)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
169 result = i;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
170
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
171 // If this comment doesn't nest, stop here.
2809
ed47d18b39c6 updated for version 7.3.180
Bram Moolenaar <bram@vim.org>
parents: 2807
diff changeset
172 got_com = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
173 if (vim_strchr(part_buf, COM_NEST) == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
174 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175 }
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
176 return result;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
177 }
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
178
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
179 /*
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
180 * Return the offset at which the last comment in line starts. If there is no
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
181 * comment in the whole line, -1 is returned.
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
182 *
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
183 * When "flags" is not null, it is set to point to the flags describing the
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
184 * recognized comment leader.
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
185 */
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
186 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
187 get_last_leader_offset(char_u *line, char_u **flags)
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
188 {
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
189 int result = -1;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
190 int i, j;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
191 int lower_check_bound = 0;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
192 char_u *string;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
193 char_u *com_leader;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
194 char_u *com_flags;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
195 char_u *list;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
196 int found_one;
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
197 char_u part_buf[COM_MAX_LEN]; // buffer for one option part
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
198
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
199 /*
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
200 * Repeat to match several nested comment strings.
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
201 */
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
202 i = (int)STRLEN(line);
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
203 while (--i >= lower_check_bound)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
204 {
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
205 /*
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
206 * scan through the 'comments' option for a match
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
207 */
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
208 found_one = FALSE;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
209 for (list = curbuf->b_p_com; *list; )
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
210 {
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
211 char_u *flags_save = list;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
212
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
213 /*
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
214 * Get one option part into part_buf[]. Advance list to next one.
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
215 * put string at start of string.
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
216 */
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
217 (void)copy_option_part(&list, part_buf, COM_MAX_LEN, ",");
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
218 string = vim_strchr(part_buf, ':');
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
219 if (string == NULL) // If everything is fine, this cannot actually
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
220 // happen.
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
221 continue;
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
222 *string++ = NUL; // Isolate flags from string.
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
223 com_leader = string;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
224
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
225 /*
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
226 * Line contents and string must match.
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
227 * When string starts with white space, must have some white space
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
228 * (but the amount does not need to match, there might be a mix of
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
229 * TABs and spaces).
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
230 */
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
231 if (VIM_ISWHITE(string[0]))
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
232 {
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
233 if (i == 0 || !VIM_ISWHITE(line[i - 1]))
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
234 continue;
15119
6e9f37bf987b patch 8.1.0570: 'commentstring' not used when adding fold marker
Bram Moolenaar <Bram@vim.org>
parents: 15046
diff changeset
235 while (VIM_ISWHITE(*string))
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
236 ++string;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
237 }
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
238 for (j = 0; string[j] != NUL && string[j] == line[i + j]; ++j)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
239 /* do nothing */;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
240 if (string[j] != NUL)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
241 continue;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
242
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
243 /*
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
244 * When 'b' flag used, there must be white space or an
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
245 * end-of-line after the string in the line.
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
246 */
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
247 if (vim_strchr(part_buf, COM_BLANK) != NULL
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
248 && !VIM_ISWHITE(line[i + j]) && line[i + j] != NUL)
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
249 continue;
15119
6e9f37bf987b patch 8.1.0570: 'commentstring' not used when adding fold marker
Bram Moolenaar <Bram@vim.org>
parents: 15046
diff changeset
250
15127
31a0127813cb patch 8.1.0574: 'commentstring' not used when adding fold marker in C
Bram Moolenaar <Bram@vim.org>
parents: 15119
diff changeset
251 if (vim_strchr(part_buf, COM_MIDDLE) != NULL)
31a0127813cb patch 8.1.0574: 'commentstring' not used when adding fold marker in C
Bram Moolenaar <Bram@vim.org>
parents: 15119
diff changeset
252 {
31a0127813cb patch 8.1.0574: 'commentstring' not used when adding fold marker in C
Bram Moolenaar <Bram@vim.org>
parents: 15119
diff changeset
253 // For a middlepart comment, only consider it to match if
31a0127813cb patch 8.1.0574: 'commentstring' not used when adding fold marker in C
Bram Moolenaar <Bram@vim.org>
parents: 15119
diff changeset
254 // everything before the current position in the line is
31a0127813cb patch 8.1.0574: 'commentstring' not used when adding fold marker in C
Bram Moolenaar <Bram@vim.org>
parents: 15119
diff changeset
255 // whitespace. Otherwise we would think we are inside a
31a0127813cb patch 8.1.0574: 'commentstring' not used when adding fold marker in C
Bram Moolenaar <Bram@vim.org>
parents: 15119
diff changeset
256 // comment if the middle part appears somewhere in the middle
31a0127813cb patch 8.1.0574: 'commentstring' not used when adding fold marker in C
Bram Moolenaar <Bram@vim.org>
parents: 15119
diff changeset
257 // of the line. E.g. for C the "*" appears often.
15119
6e9f37bf987b patch 8.1.0570: 'commentstring' not used when adding fold marker
Bram Moolenaar <Bram@vim.org>
parents: 15046
diff changeset
258 for (j = 0; VIM_ISWHITE(line[j]) && j <= i; j++)
6e9f37bf987b patch 8.1.0570: 'commentstring' not used when adding fold marker
Bram Moolenaar <Bram@vim.org>
parents: 15046
diff changeset
259 ;
6e9f37bf987b patch 8.1.0570: 'commentstring' not used when adding fold marker
Bram Moolenaar <Bram@vim.org>
parents: 15046
diff changeset
260 if (j < i)
6e9f37bf987b patch 8.1.0570: 'commentstring' not used when adding fold marker
Bram Moolenaar <Bram@vim.org>
parents: 15046
diff changeset
261 continue;
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
262 }
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
263
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
264 /*
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
265 * We have found a match, stop searching.
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
266 */
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
267 found_one = TRUE;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
268
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
269 if (flags)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
270 *flags = flags_save;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
271 com_flags = flags_save;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
272
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
273 break;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
274 }
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
275
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
276 if (found_one)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
277 {
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
278 char_u part_buf2[COM_MAX_LEN]; // buffer for one option part
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
279 int len1, len2, off;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
280
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
281 result = i;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
282 /*
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
283 * If this comment nests, continue searching.
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
284 */
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
285 if (vim_strchr(part_buf, COM_NEST) != NULL)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
286 continue;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
287
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
288 lower_check_bound = i;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
289
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
290 // Let's verify whether the comment leader found is a substring
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
291 // of other comment leaders. If it is, let's adjust the
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
292 // lower_check_bound so that we make sure that we have determined
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
293 // the comment leader correctly.
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
294
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
295 while (VIM_ISWHITE(*com_leader))
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
296 ++com_leader;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
297 len1 = (int)STRLEN(com_leader);
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
298
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
299 for (list = curbuf->b_p_com; *list; )
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
300 {
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
301 char_u *flags_save = list;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
302
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
303 (void)copy_option_part(&list, part_buf2, COM_MAX_LEN, ",");
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
304 if (flags_save == com_flags)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
305 continue;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
306 string = vim_strchr(part_buf2, ':');
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
307 ++string;
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
308 while (VIM_ISWHITE(*string))
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
309 ++string;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
310 len2 = (int)STRLEN(string);
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
311 if (len2 == 0)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
312 continue;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
313
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
314 // Now we have to verify whether string ends with a substring
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
315 // beginning the com_leader.
3562
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
316 for (off = (len2 > i ? i : len2); off > 0 && off + len1 > len2;)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
317 {
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
318 --off;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
319 if (!STRNCMP(string + off, com_leader, len2 - off))
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
320 {
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
321 if (i - off < lower_check_bound)
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
322 lower_check_bound = i - off;
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
323 }
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
324 }
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
325 }
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
326 }
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
327 }
5c1aaf9b4b1b updated for version 7.3.541
Bram Moolenaar <bram@vim.org>
parents: 3549
diff changeset
328 return result;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
329 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
330
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
331 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
332 * Return the number of window lines occupied by buffer line "lnum".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
333 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
334 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
335 plines(linenr_T lnum)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
336 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
337 return plines_win(curwin, lnum, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
338 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
339
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
340 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
341 plines_win(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
342 win_T *wp,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
343 linenr_T lnum,
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
344 int winheight) // when TRUE limit to window height
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
345 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
346 #if defined(FEAT_DIFF) || defined(PROTO)
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
347 // Check for filler lines above this buffer line. When folded the result
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
348 // is one line anyway.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
349 return plines_win_nofill(wp, lnum, winheight) + diff_check_fill(wp, lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
350 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
351
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
352 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
353 plines_nofill(linenr_T lnum)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
354 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
355 return plines_win_nofill(curwin, lnum, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
356 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
357
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
358 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
359 plines_win_nofill(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
360 win_T *wp,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
361 linenr_T lnum,
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
362 int winheight) // when TRUE limit to window height
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
363 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
364 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
365 int lines;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
366
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
367 if (!wp->w_p_wrap)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
368 return 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
369
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
370 if (wp->w_width == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
371 return 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
372
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
373 #ifdef FEAT_FOLDING
26771
fc859aea8cec patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents: 26439
diff changeset
374 // Folded lines are handled just like an empty line.
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
375 // NOTE: Caller must handle lines that are MAYBE folded.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
376 if (lineFolded(wp, lnum) == TRUE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
377 return 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
378 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
379
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
380 lines = plines_win_nofold(wp, lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
381 if (winheight > 0 && lines > wp->w_height)
27426
41e0dcf38521 patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
382 return wp->w_height;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
383 return lines;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
384 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
385
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
386 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
387 * Return number of window lines physical line "lnum" will occupy in window
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
388 * "wp". Does not care about folding, 'wrap' or 'diff'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
389 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
390 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
391 plines_win_nofold(win_T *wp, linenr_T lnum)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
392 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
393 char_u *s;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
394 long col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
395 int width;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
396
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
397 s = ml_get_buf(wp->w_buffer, lnum, FALSE);
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
398 if (*s == NUL) // empty line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
399 return 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
400 col = win_linetabsize(wp, s, (colnr_T)MAXCOL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
401
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
402 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
403 * If list mode is on, then the '$' at the end of the line may take up one
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
404 * extra column.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
405 */
23952
44be09b25619 patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents: 22742
diff changeset
406 if (wp->w_p_list && wp->w_lcs_chars.eol != NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
407 col += 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
408
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
409 /*
2178
c6f1aa1e9f32 Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents: 2162
diff changeset
410 * Add column offset for 'number', 'relativenumber' and 'foldcolumn'.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
411 */
12515
972ea22c946f patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
412 width = wp->w_width - win_col_off(wp);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
413 if (width <= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
414 return 32000;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
415 if (col <= width)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
416 return 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
417 col -= width;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
418 width += win_col_off2(wp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
419 return (col + (width - 1)) / width + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
420 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
421
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
422 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
423 * Like plines_win(), but only reports the number of physical screen lines
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
424 * used from the start of the line to the given column number.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
425 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
426 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
427 plines_win_col(win_T *wp, linenr_T lnum, long column)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
428 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
429 long col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
430 char_u *s;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
431 int lines = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
432 int width;
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5911
diff changeset
433 char_u *line;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
434
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
435 #ifdef FEAT_DIFF
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
436 // Check for filler lines above this buffer line. When folded the result
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
437 // is one line anyway.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
438 lines = diff_check_fill(wp, lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
439 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
440
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
441 if (!wp->w_p_wrap)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
442 return lines + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
443
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
444 if (wp->w_width == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
445 return lines + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
446
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5911
diff changeset
447 line = s = ml_get_buf(wp->w_buffer, lnum, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
448
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
449 col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
450 while (*s != NUL && --column >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
451 {
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5911
diff changeset
452 col += win_lbr_chartabsize(wp, line, s, (colnr_T)col, NULL);
11127
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
453 MB_PTR_ADV(s);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
454 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
455
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
456 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
457 * If *s is a TAB, and the TAB is not displayed as ^I, and we're not in
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
458 * MODE_INSERT state, then col must be adjusted so that it represents the
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
459 * last screen position of the TAB. This only fixes an error when the TAB
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
460 * wraps from one screen line to the next (when 'columns' is not a multiple
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
461 * of 'ts') -- webb.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
462 */
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
463 if (*s == TAB && (State & MODE_NORMAL)
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
464 && (!wp->w_p_list || wp->w_lcs_chars.tab1))
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5911
diff changeset
465 col += win_lbr_chartabsize(wp, line, s, (colnr_T)col, NULL) - 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
466
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
467 /*
2178
c6f1aa1e9f32 Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents: 2162
diff changeset
468 * Add column offset for 'number', 'relativenumber', 'foldcolumn', etc.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
469 */
12515
972ea22c946f patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
470 width = wp->w_width - win_col_off(wp);
1023
cb7043482eca updated for version 7.0-149
vimboss
parents: 1010
diff changeset
471 if (width <= 0)
cb7043482eca updated for version 7.0-149
vimboss
parents: 1010
diff changeset
472 return 9999;
cb7043482eca updated for version 7.0-149
vimboss
parents: 1010
diff changeset
473
cb7043482eca updated for version 7.0-149
vimboss
parents: 1010
diff changeset
474 lines += 1;
cb7043482eca updated for version 7.0-149
vimboss
parents: 1010
diff changeset
475 if (col > width)
cb7043482eca updated for version 7.0-149
vimboss
parents: 1010
diff changeset
476 lines += (col - width) / (width + win_col_off2(wp)) + 1;
cb7043482eca updated for version 7.0-149
vimboss
parents: 1010
diff changeset
477 return lines;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
478 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
479
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
480 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
481 plines_m_win(win_T *wp, linenr_T first, linenr_T last)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
482 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
483 int count = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
484
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
485 while (first <= last)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
486 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
487 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
488 int x;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
489
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
490 // Check if there are any really folded lines, but also included lines
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
491 // that are maybe folded.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
492 x = foldedCount(wp, first, NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
493 if (x > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
494 {
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
495 ++count; // count 1 for "+-- folded" line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
496 first += x;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
497 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
498 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
499 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
500 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
501 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
502 if (first == wp->w_topline)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
503 count += plines_win_nofill(wp, first, TRUE) + wp->w_topfill;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
504 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
505 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
506 count += plines_win(wp, first, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
507 ++first;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
508 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
509 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
510 return (count);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
511 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
512
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
513 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
514 gchar_pos(pos_T *pos)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
515 {
13082
a80082fd1a1d patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents: 12865
diff changeset
516 char_u *ptr;
a80082fd1a1d patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents: 12865
diff changeset
517
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
518 // When searching columns is sometimes put at the end of a line.
13082
a80082fd1a1d patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents: 12865
diff changeset
519 if (pos->col == MAXCOL)
a80082fd1a1d patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents: 12865
diff changeset
520 return NUL;
a80082fd1a1d patch 8.0.1416: crash when searching for a sentence
Christian Brabandt <cb@256bit.org>
parents: 12865
diff changeset
521 ptr = ml_get_pos(pos);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
522 if (has_mbyte)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
523 return (*mb_ptr2char)(ptr);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
524 return (int)*ptr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
525 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
526
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
527 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
528 gchar_cursor(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
529 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
530 if (has_mbyte)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
531 return (*mb_ptr2char)(ml_get_cursor());
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
532 return (int)*ml_get_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
533 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
534
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
535 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
536 * Write a character at the current cursor position.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
537 * It is directly written into the block.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
538 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
539 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
540 pchar_cursor(int c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
541 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
542 *(ml_get_buf(curbuf, curwin->w_cursor.lnum, TRUE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
543 + curwin->w_cursor.col) = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
544 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
545
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
546 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
547 * Skip to next part of an option argument: Skip space and comma.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
548 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
549 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
550 skip_to_option_part(char_u *p)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
551 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
552 if (*p == ',')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
553 ++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
554 while (*p == ' ')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
555 ++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
556 return p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
557 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
558
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
559 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
560 * check_status: called when the status bars for the buffer 'buf'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
561 * need to be updated
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
562 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
563 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
564 check_status(buf_T *buf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
565 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
566 win_T *wp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
567
9649
fd9727ae3c49 commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
568 FOR_ALL_WINDOWS(wp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
569 if (wp->w_buffer == buf && wp->w_status_height)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
570 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
571 wp->w_redr_status = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
572 if (must_redraw < VALID)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
573 must_redraw = VALID;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
574 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
575 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
576
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
577 /*
28809
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
578 * Ask for a reply from the user, a 'y' or a 'n', with prompt "str" (which
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
579 * should have been translated already).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
580 * No other characters are accepted, the message is repeated until a valid
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
581 * reply is entered or CTRL-C is hit.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
582 * If direct is TRUE, don't use vgetc() but ui_inchar(), don't get characters
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
583 * from any buffers but directly from the user.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
584 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
585 * return the 'y' or 'n'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
586 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
587 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
588 ask_yesno(char_u *str, int direct)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
589 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
590 int r = ' ';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
591 int save_State = State;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
592
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
593 if (exiting) // put terminal in raw mode for this question
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
594 settmode(TMODE_RAW);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
595 ++no_wait_return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
596 #ifdef USE_ON_FLY_SCROLL
18135
1868ec23360e patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18104
diff changeset
597 dont_scroll = TRUE; // disallow scrolling here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
598 #endif
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
599 State = MODE_CONFIRM; // mouse behaves like with :confirm
18135
1868ec23360e patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18104
diff changeset
600 setmouse(); // disables mouse for xterm
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
601 ++no_mapping;
18135
1868ec23360e patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18104
diff changeset
602 ++allow_keys; // no mapping here, but recognize keys
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
603
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
604 while (r != 'y' && r != 'n')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
605 {
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
606 // same highlighting as for wait_return
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15420
diff changeset
607 smsg_attr(HL_ATTR(HLF_R), "%s (y/n)?", str);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
608 if (direct)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
609 r = get_keystroke();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
610 else
1474
276244befa5b updated for version 7.1-189
vimboss
parents: 1470
diff changeset
611 r = plain_vgetc();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
612 if (r == Ctrl_C || r == ESC)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
613 r = 'n';
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
614 msg_putchar(r); // show what you typed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
615 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
616 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
617 --no_wait_return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
618 State = save_State;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
619 setmouse();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
620 --no_mapping;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
621 --allow_keys;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
622
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
623 return r;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
624 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
625
18104
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
626 #if defined(FEAT_EVAL) || defined(PROTO)
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
627
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
628 /*
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
629 * Returns the current mode as a string in "buf[MODE_MAX_LENGTH]", NUL
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
630 * terminated.
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
631 * The first character represents the major mode, the following ones the minor
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
632 * ones.
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
633 */
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
634 void
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
635 get_mode(char_u *buf)
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
636 {
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
637 int i = 0;
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
638
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
639 if (time_for_testing == 93784)
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
640 {
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
641 // Testing the two-character code.
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
642 buf[i++] = 'x';
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
643 buf[i++] = '!';
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
644 }
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
645 #ifdef FEAT_TERMINAL
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
646 else if (term_use_loop())
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
647 buf[i++] = 't';
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
648 #endif
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
649 else if (VIsual_active)
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
650 {
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
651 if (VIsual_select)
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
652 buf[i++] = VIsual_mode + 's' - 'v';
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
653 else
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
654 {
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
655 buf[i++] = VIsual_mode;
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
656 if (restart_VIsual_select)
28809
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
657 buf[i++] = 's';
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
658 }
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
659 }
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
660 else if (State == MODE_HITRETURN || State == MODE_ASKMORE
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
661 || State == MODE_SETWSIZE
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
662 || State == MODE_CONFIRM)
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
663 {
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
664 buf[i++] = 'r';
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
665 if (State == MODE_ASKMORE)
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
666 buf[i++] = 'm';
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
667 else if (State == MODE_CONFIRM)
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
668 buf[i++] = '?';
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
669 }
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
670 else if (State == MODE_EXTERNCMD)
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
671 buf[i++] = '!';
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
672 else if (State & MODE_INSERT)
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
673 {
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
674 if (State & VREPLACE_FLAG)
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
675 {
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
676 buf[i++] = 'R';
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
677 buf[i++] = 'v';
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
678 }
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
679 else
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
680 {
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
681 if (State & REPLACE_FLAG)
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
682 buf[i++] = 'R';
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
683 else
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
684 buf[i++] = 'i';
28643
5be5151ad510 patch 8.2.4845: duplicate code
Bram Moolenaar <Bram@vim.org>
parents: 28497
diff changeset
685 }
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
686
28643
5be5151ad510 patch 8.2.4845: duplicate code
Bram Moolenaar <Bram@vim.org>
parents: 28497
diff changeset
687 if (ins_compl_active())
5be5151ad510 patch 8.2.4845: duplicate code
Bram Moolenaar <Bram@vim.org>
parents: 28497
diff changeset
688 buf[i++] = 'c';
5be5151ad510 patch 8.2.4845: duplicate code
Bram Moolenaar <Bram@vim.org>
parents: 28497
diff changeset
689 else if (ctrl_x_mode_not_defined_yet())
5be5151ad510 patch 8.2.4845: duplicate code
Bram Moolenaar <Bram@vim.org>
parents: 28497
diff changeset
690 buf[i++] = 'x';
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
691 }
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
692 else if ((State & MODE_CMDLINE) || exmode_active)
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
693 {
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
694 buf[i++] = 'c';
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
695 if (exmode_active == EXMODE_VIM)
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
696 buf[i++] = 'v';
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
697 else if (exmode_active == EXMODE_NORMAL)
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
698 buf[i++] = 'e';
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
699 }
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
700 else
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
701 {
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
702 buf[i++] = 'n';
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
703 if (finish_op)
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
704 {
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
705 buf[i++] = 'o';
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
706 // to be able to detect force-linewise/blockwise/characterwise
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
707 // operations
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
708 buf[i++] = motion_force;
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
709 }
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
710 else if (restart_edit == 'I' || restart_edit == 'R'
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
711 || restart_edit == 'V')
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
712 {
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
713 buf[i++] = 'i';
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
714 buf[i++] = restart_edit;
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
715 }
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
716 #ifdef FEAT_TERMINAL
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
717 else if (term_in_normal_mode())
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
718 buf[i++] = 't';
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
719 #endif
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
720 }
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
721
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
722 buf[i] = NUL;
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
723 }
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
724
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
725 /*
18104
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
726 * "mode()" function
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
727 */
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
728 void
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
729 f_mode(typval_T *argvars, typval_T *rettv)
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
730 {
25790
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
731 char_u buf[MODE_MAX_LENGTH];
18104
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
732
25384
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25338
diff changeset
733 if (in_vim9script() && check_for_opt_bool_arg(argvars, 0) == FAIL)
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25338
diff changeset
734 return;
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25338
diff changeset
735
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
736 get_mode(buf);
18104
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
737
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
738 // Clear out the minor mode when the argument is not a non-zero number or
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
739 // non-empty string.
18104
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
740 if (!non_zero_arg(&argvars[0]))
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
741 buf[1] = NUL;
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
742
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
743 rettv->vval.v_string = vim_strsave(buf);
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
744 rettv->v_type = VAR_STRING;
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
745 }
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
746
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
747 static void
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
748 may_add_state_char(garray_T *gap, char_u *include, int c)
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
749 {
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
750 if (include == NULL || vim_strchr(include, c) != NULL)
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
751 ga_append(gap, c);
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
752 }
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
753
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
754 /*
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
755 * "state()" function
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
756 */
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
757 void
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
758 f_state(typval_T *argvars, typval_T *rettv)
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
759 {
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
760 garray_T ga;
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
761 char_u *include = NULL;
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
762 int i;
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
763
25384
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25338
diff changeset
764 if (in_vim9script() && check_for_opt_string_arg(argvars, 0) == FAIL)
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25338
diff changeset
765 return;
e8e2c4d33b9b patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents: 25338
diff changeset
766
18104
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
767 ga_init2(&ga, 1, 20);
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
768 if (argvars[0].v_type != VAR_UNKNOWN)
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
769 include = tv_get_string(&argvars[0]);
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
770
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
771 if (!(stuff_empty() && typebuf.tb_len == 0 && scriptin[curscript] == NULL))
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
772 may_add_state_char(&ga, include, 'm');
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
773 if (op_pending())
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
774 may_add_state_char(&ga, include, 'o');
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
775 if (autocmd_busy)
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
776 may_add_state_char(&ga, include, 'x');
18143
2416e1a887ca patch 8.1.2066: no tests for state()
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
777 if (ins_compl_active())
18104
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
778 may_add_state_char(&ga, include, 'a');
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
779
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
780 # ifdef FEAT_JOB_CHANNEL
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
781 if (channel_in_blocking_wait())
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
782 may_add_state_char(&ga, include, 'w');
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
783 # endif
18135
1868ec23360e patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18104
diff changeset
784 if (!get_was_safe_state())
1868ec23360e patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 18104
diff changeset
785 may_add_state_char(&ga, include, 'S');
18104
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
786 for (i = 0; i < get_callback_depth() && i < 3; ++i)
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
787 may_add_state_char(&ga, include, 'c');
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
788 if (msg_scrolled > 0)
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
789 may_add_state_char(&ga, include, 's');
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
790
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
791 rettv->v_type = VAR_STRING;
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
792 rettv->vval.v_string = ga.ga_data;
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
793 }
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
794
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
795 #endif // FEAT_EVAL
e59ff7b5d7a7 patch 8.1.2047: cannot check the current state
Bram Moolenaar <Bram@vim.org>
parents: 18051
diff changeset
796
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
797 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
798 * Get a key stroke directly from the user.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
799 * Ignores mouse clicks and scrollbar events, except a click for the left
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
800 * button (used at the more prompt).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
801 * Doesn't use vgetc(), because it syncs undo and eats mapped characters.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
802 * Disadvantage: typeahead is ignored.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
803 * Translates the interrupt character for unix to ESC.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
804 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
805 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
806 get_keystroke(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
807 {
3328
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
808 char_u *buf = NULL;
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
809 int buflen = 150;
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
810 int maxlen;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
811 int len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
812 int n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
813 int save_mapped_ctrl_c = mapped_ctrl_c;
964
e905716f6a3a updated for version 7.0-090
vimboss
parents: 957
diff changeset
814 int waited = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
815
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
816 mapped_ctrl_c = FALSE; // mappings are not used here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
817 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
818 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
819 cursor_on();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
820 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
821
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
822 // Leave some room for check_termcode() to insert a key code into (max
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
823 // 5 chars plus NUL). And fix_input_buffer() can triple the number of
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
824 // bytes.
3328
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
825 maxlen = (buflen - 6 - len) / 3;
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
826 if (buf == NULL)
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
827 buf = alloc(buflen);
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
828 else if (maxlen < 10)
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
829 {
6596
f8f2a61e538d updated for version 7.4.624
Bram Moolenaar <bram@vim.org>
parents: 6174
diff changeset
830 char_u *t_buf = buf;
f8f2a61e538d updated for version 7.4.624
Bram Moolenaar <bram@vim.org>
parents: 6174
diff changeset
831
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
832 // Need some more space. This might happen when receiving a long
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
833 // escape sequence.
3328
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
834 buflen += 100;
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
835 buf = vim_realloc(buf, buflen);
6596
f8f2a61e538d updated for version 7.4.624
Bram Moolenaar <bram@vim.org>
parents: 6174
diff changeset
836 if (buf == NULL)
f8f2a61e538d updated for version 7.4.624
Bram Moolenaar <bram@vim.org>
parents: 6174
diff changeset
837 vim_free(t_buf);
3328
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
838 maxlen = (buflen - 6 - len) / 3;
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
839 }
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
840 if (buf == NULL)
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
841 {
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
842 do_outofmem_msg((long_u)buflen);
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
843 return ESC; // panic!
3328
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
844 }
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
845
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
846 // First time: blocking wait. Second time: wait up to 100ms for a
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
847 // terminal code to complete.
3328
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
848 n = ui_inchar(buf + len, maxlen, len == 0 ? -1L : 100L, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
849 if (n > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
850 {
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
851 // Replace zero and CSI by a special key code.
9896
7b39615c0db1 commit https://github.com/vim/vim/commit/6bff02eb530aa29aafa2cb5627399837be7a5dd5
Christian Brabandt <cb@256bit.org>
parents: 9649
diff changeset
852 n = fix_input_buffer(buf + len, n);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
853 len += n;
964
e905716f6a3a updated for version 7.0-090
vimboss
parents: 957
diff changeset
854 waited = 0;
e905716f6a3a updated for version 7.0-090
vimboss
parents: 957
diff changeset
855 }
e905716f6a3a updated for version 7.0-090
vimboss
parents: 957
diff changeset
856 else if (len > 0)
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
857 ++waited; // keep track of the waiting time
964
e905716f6a3a updated for version 7.0-090
vimboss
parents: 957
diff changeset
858
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
859 // Incomplete termcode and not timed out yet: get more characters
3328
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
860 if ((n = check_termcode(1, buf, buflen, &len)) < 0
964
e905716f6a3a updated for version 7.0-090
vimboss
parents: 957
diff changeset
861 && (!p_ttimeout || waited * 100L < (p_ttm < 0 ? p_tm : p_ttm)))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
862 continue;
964
e905716f6a3a updated for version 7.0-090
vimboss
parents: 957
diff changeset
863
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
864 if (n == KEYLEN_REMOVED) // key code removed
2721
417c04135ca2 updated for version 7.3.137
Bram Moolenaar <bram@vim.org>
parents: 2685
diff changeset
865 {
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
866 if (must_redraw != 0 && !need_wait_return && (State
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
867 & (MODE_CMDLINE | MODE_HITRETURN | MODE_ASKMORE)) == 0)
2721
417c04135ca2 updated for version 7.3.137
Bram Moolenaar <bram@vim.org>
parents: 2685
diff changeset
868 {
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
869 // Redrawing was postponed, do it now.
2721
417c04135ca2 updated for version 7.3.137
Bram Moolenaar <bram@vim.org>
parents: 2685
diff changeset
870 update_screen(0);
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
871 setcursor(); // put cursor back where it belongs
2721
417c04135ca2 updated for version 7.3.137
Bram Moolenaar <bram@vim.org>
parents: 2685
diff changeset
872 }
2672
6a2e4860134b updated for version 7.3.091
Bram Moolenaar <bram@vim.org>
parents: 2652
diff changeset
873 continue;
2721
417c04135ca2 updated for version 7.3.137
Bram Moolenaar <bram@vim.org>
parents: 2685
diff changeset
874 }
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
875 if (n > 0) // found a termcode: adjust length
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
876 len = n;
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
877 if (len == 0) // nothing typed yet
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
878 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
879
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
880 // Handle modifier and/or special key code.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
881 n = buf[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
882 if (n == K_SPECIAL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
883 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
884 n = TO_SPECIAL(buf[1], buf[2]);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
885 if (buf[1] == KS_MODIFIER
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
886 || n == K_IGNORE
4221
dd4f3ceb5d86 updated for version 7.3.862
Bram Moolenaar <bram@vim.org>
parents: 4207
diff changeset
887 || (is_mouse_key(n) && n != K_LEFTMOUSE)
dd4f3ceb5d86 updated for version 7.3.862
Bram Moolenaar <bram@vim.org>
parents: 4207
diff changeset
888 #ifdef FEAT_GUI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
889 || n == K_VER_SCROLLBAR
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
890 || n == K_HOR_SCROLLBAR
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
891 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
892 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
893 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
894 if (buf[1] == KS_MODIFIER)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
895 mod_mask = buf[2];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
896 len -= 3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
897 if (len > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
898 mch_memmove(buf, buf + 3, (size_t)len);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
899 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
900 }
828
01583c79d5f4 updated for version 7.0d03
vimboss
parents: 827
diff changeset
901 break;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
902 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
903 if (has_mbyte)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
904 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
905 if (MB_BYTE2LEN(n) > len)
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
906 continue; // more bytes to get
3328
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
907 buf[len >= buflen ? buflen - 1 : len] = NUL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
908 n = (*mb_ptr2char)(buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
909 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
910 #ifdef UNIX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
911 if (n == intr_char)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
912 n = ESC;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
913 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
914 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
915 }
3328
a27fac494e70 updated for version 7.3.431
Bram Moolenaar <bram@vim.org>
parents: 3261
diff changeset
916 vim_free(buf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
917
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
918 mapped_ctrl_c = save_mapped_ctrl_c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
919 return n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
920 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
921
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
922 /*
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
923 * Get a number from the user.
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
924 * When "mouse_used" is not NULL allow using the mouse.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
925 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
926 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
927 get_number(
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
928 int colon, // allow colon to abort
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
929 int *mouse_used)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
930 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
931 int n = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
932 int c;
810
9f345c48220b updated for version 7.0c
vimboss
parents: 777
diff changeset
933 int typed = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
934
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
935 if (mouse_used != NULL)
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
936 *mouse_used = FALSE;
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
937
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
938 // When not printing messages, the user won't know what to type, return a
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
939 // zero (as if CR was hit).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
940 if (msg_silent != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
941 return 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
942
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
943 #ifdef USE_ON_FLY_SCROLL
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
944 dont_scroll = TRUE; // disallow scrolling here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
945 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
946 ++no_mapping;
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
947 ++allow_keys; // no mapping here, but recognize keys
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
948 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
949 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
950 windgoto(msg_row, msg_col);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
951 c = safe_vgetc();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
952 if (VIM_ISDIGIT(c))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
953 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
954 n = n * 10 + c - '0';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
955 msg_putchar(c);
810
9f345c48220b updated for version 7.0c
vimboss
parents: 777
diff changeset
956 ++typed;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
957 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
958 else if (c == K_DEL || c == K_KDEL || c == K_BS || c == Ctrl_H)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
959 {
810
9f345c48220b updated for version 7.0c
vimboss
parents: 777
diff changeset
960 if (typed > 0)
9f345c48220b updated for version 7.0c
vimboss
parents: 777
diff changeset
961 {
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15525
diff changeset
962 msg_puts("\b \b");
810
9f345c48220b updated for version 7.0c
vimboss
parents: 777
diff changeset
963 --typed;
9f345c48220b updated for version 7.0c
vimboss
parents: 777
diff changeset
964 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
965 n /= 10;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
966 }
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
967 else if (mouse_used != NULL && c == K_LEFTMOUSE)
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
968 {
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
969 *mouse_used = TRUE;
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
970 n = mouse_row + 1;
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
971 break;
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
972 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
973 else if (n == 0 && c == ':' && colon)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
974 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
975 stuffcharReadbuff(':');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
976 if (!exmode_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
977 cmdline_row = msg_row;
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
978 skip_redraw = TRUE; // skip redraw once
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
979 do_redraw = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
980 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
981 }
24673
53fd6370e4fd patch 8.2.2875: cancelling inputlist() after a digit does not return zero
Bram Moolenaar <Bram@vim.org>
parents: 23952
diff changeset
982 else if (c == Ctrl_C || c == ESC || c == 'q')
53fd6370e4fd patch 8.2.2875: cancelling inputlist() after a digit does not return zero
Bram Moolenaar <Bram@vim.org>
parents: 23952
diff changeset
983 {
53fd6370e4fd patch 8.2.2875: cancelling inputlist() after a digit does not return zero
Bram Moolenaar <Bram@vim.org>
parents: 23952
diff changeset
984 n = 0;
53fd6370e4fd patch 8.2.2875: cancelling inputlist() after a digit does not return zero
Bram Moolenaar <Bram@vim.org>
parents: 23952
diff changeset
985 break;
53fd6370e4fd patch 8.2.2875: cancelling inputlist() after a digit does not return zero
Bram Moolenaar <Bram@vim.org>
parents: 23952
diff changeset
986 }
53fd6370e4fd patch 8.2.2875: cancelling inputlist() after a digit does not return zero
Bram Moolenaar <Bram@vim.org>
parents: 23952
diff changeset
987 else if (c == CAR || c == NL )
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
988 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
989 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
990 --no_mapping;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
991 --allow_keys;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
992 return n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
993 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
994
323
03b3684919e3 updated for version 7.0084
vimboss
parents: 274
diff changeset
995 /*
03b3684919e3 updated for version 7.0084
vimboss
parents: 274
diff changeset
996 * Ask the user to enter a number.
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
997 * When "mouse_used" is not NULL allow using the mouse and in that case return
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
998 * the line number.
323
03b3684919e3 updated for version 7.0084
vimboss
parents: 274
diff changeset
999 */
03b3684919e3 updated for version 7.0084
vimboss
parents: 274
diff changeset
1000 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1001 prompt_for_number(int *mouse_used)
323
03b3684919e3 updated for version 7.0084
vimboss
parents: 274
diff changeset
1002 {
03b3684919e3 updated for version 7.0084
vimboss
parents: 274
diff changeset
1003 int i;
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
1004 int save_cmdline_row;
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
1005 int save_State;
323
03b3684919e3 updated for version 7.0084
vimboss
parents: 274
diff changeset
1006
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1007 // When using ":silent" assume that <CR> was entered.
375
f14cbd913415 updated for version 7.0097
vimboss
parents: 374
diff changeset
1008 if (mouse_used != NULL)
20788
072ad890c227 patch 8.2.0946: cannot use "q" to cancel a number prompt
Bram Moolenaar <Bram@vim.org>
parents: 20345
diff changeset
1009 msg_puts(_("Type number and <Enter> or click with the mouse (q or empty cancels): "));
375
f14cbd913415 updated for version 7.0097
vimboss
parents: 374
diff changeset
1010 else
20788
072ad890c227 patch 8.2.0946: cannot use "q" to cancel a number prompt
Bram Moolenaar <Bram@vim.org>
parents: 20345
diff changeset
1011 msg_puts(_("Type number and <Enter> (q or empty cancels): "));
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
1012
14629
100a44722322 patch 8.1.0328: inputlist() doesn't work with a timer
Christian Brabandt <cb@256bit.org>
parents: 14585
diff changeset
1013 // Set the state such that text can be selected/copied/pasted and we still
100a44722322 patch 8.1.0328: inputlist() doesn't work with a timer
Christian Brabandt <cb@256bit.org>
parents: 14585
diff changeset
1014 // get mouse events. redraw_after_callback() will not redraw if cmdline_row
100a44722322 patch 8.1.0328: inputlist() doesn't work with a timer
Christian Brabandt <cb@256bit.org>
parents: 14585
diff changeset
1015 // is zero.
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
1016 save_cmdline_row = cmdline_row;
957
3dc6072e0a25 updated for version 7.0-083
vimboss
parents: 927
diff changeset
1017 cmdline_row = 0;
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
1018 save_State = State;
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28643
diff changeset
1019 State = MODE_CMDLINE;
14629
100a44722322 patch 8.1.0328: inputlist() doesn't work with a timer
Christian Brabandt <cb@256bit.org>
parents: 14585
diff changeset
1020 // May show different mouse shape.
13768
bcef80912112 patch 8.0.1756: GUI: after prompting for a number the mouse shape is wrong
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1021 setmouse();
bcef80912112 patch 8.0.1756: GUI: after prompting for a number the mouse shape is wrong
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1022
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
1023 i = get_number(TRUE, mouse_used);
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
1024 if (KeyTyped)
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
1025 {
17018
b1263192461f patch 8.1.1509: cmdline_row can become negative, causing a crash
Bram Moolenaar <Bram@vim.org>
parents: 16782
diff changeset
1026 // don't call wait_return() now
b1263192461f patch 8.1.1509: cmdline_row can become negative, causing a crash
Bram Moolenaar <Bram@vim.org>
parents: 16782
diff changeset
1027 if (msg_row > 0)
b1263192461f patch 8.1.1509: cmdline_row can become negative, causing a crash
Bram Moolenaar <Bram@vim.org>
parents: 16782
diff changeset
1028 cmdline_row = msg_row - 1;
323
03b3684919e3 updated for version 7.0084
vimboss
parents: 274
diff changeset
1029 need_wait_return = FALSE;
18528
6ad15a9b7c89 patch 8.1.2258: may get hit-enter prompt after entering a number
Bram Moolenaar <Bram@vim.org>
parents: 18463
diff changeset
1030 msg_didany = FALSE;
6ad15a9b7c89 patch 8.1.2258: may get hit-enter prompt after entering a number
Bram Moolenaar <Bram@vim.org>
parents: 18463
diff changeset
1031 msg_didout = FALSE;
323
03b3684919e3 updated for version 7.0084
vimboss
parents: 274
diff changeset
1032 }
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
1033 else
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
1034 cmdline_row = save_cmdline_row;
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
1035 State = save_State;
14629
100a44722322 patch 8.1.0328: inputlist() doesn't work with a timer
Christian Brabandt <cb@256bit.org>
parents: 14585
diff changeset
1036 // May need to restore mouse shape.
13768
bcef80912112 patch 8.0.1756: GUI: after prompting for a number the mouse shape is wrong
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
1037 setmouse();
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
1038
323
03b3684919e3 updated for version 7.0084
vimboss
parents: 274
diff changeset
1039 return i;
03b3684919e3 updated for version 7.0084
vimboss
parents: 274
diff changeset
1040 }
03b3684919e3 updated for version 7.0084
vimboss
parents: 274
diff changeset
1041
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1042 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1043 msgmore(long n)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1044 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1045 long pn;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1046
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1047 if (global_busy // no messages now, wait until global is finished
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1048 || !messaging()) // 'lazyredraw' set, don't do messages now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1049 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1050
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1051 // We don't want to overwrite another important message, but do overwrite
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1052 // a previous "more lines" or "fewer lines" message, so that "5dd" and
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1053 // then "put" reports the last action.
135
b5fc81a825a1 updated for version 7.0044
vimboss
parents: 115
diff changeset
1054 if (keep_msg != NULL && !keep_msg_more)
b5fc81a825a1 updated for version 7.0044
vimboss
parents: 115
diff changeset
1055 return;
b5fc81a825a1 updated for version 7.0044
vimboss
parents: 115
diff changeset
1056
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1057 if (n > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1058 pn = n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1059 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1060 pn = -n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1061
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1062 if (pn > p_report)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1063 {
14585
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
1064 if (n > 0)
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15525
diff changeset
1065 vim_snprintf(msg_buf, MSG_BUF_LEN,
14585
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
1066 NGETTEXT("%ld more line", "%ld more lines", pn), pn);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1067 else
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15525
diff changeset
1068 vim_snprintf(msg_buf, MSG_BUF_LEN,
14585
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14424
diff changeset
1069 NGETTEXT("%ld line less", "%ld fewer lines", pn), pn);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1070 if (got_int)
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15525
diff changeset
1071 vim_strcat((char_u *)msg_buf, (char_u *)_(" (Interrupted)"),
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15525
diff changeset
1072 MSG_BUF_LEN);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1073 if (msg(msg_buf))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1074 {
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15525
diff changeset
1075 set_keep_msg((char_u *)msg_buf, 0);
135
b5fc81a825a1 updated for version 7.0044
vimboss
parents: 115
diff changeset
1076 keep_msg_more = TRUE;
7
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 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1082 * flush map and typeahead buffers and give a warning for an error
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1083 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1084 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1085 beep_flush(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1086 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1087 if (emsg_silent == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1088 {
14909
c97b4b537572 patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1089 flush_buffers(FLUSH_MINIMAL);
6949
1e621b31948b patch 7.4.793
Bram Moolenaar <bram@vim.org>
parents: 6803
diff changeset
1090 vim_beep(BO_ERROR);
1e621b31948b patch 7.4.793
Bram Moolenaar <bram@vim.org>
parents: 6803
diff changeset
1091 }
1e621b31948b patch 7.4.793
Bram Moolenaar <bram@vim.org>
parents: 6803
diff changeset
1092 }
1e621b31948b patch 7.4.793
Bram Moolenaar <bram@vim.org>
parents: 6803
diff changeset
1093
1e621b31948b patch 7.4.793
Bram Moolenaar <bram@vim.org>
parents: 6803
diff changeset
1094 /*
28441
f4d2dcfd18ac patch 8.2.4745: using wrong flag for using bell in the terminal
Bram Moolenaar <Bram@vim.org>
parents: 28397
diff changeset
1095 * Give a warning for an error. "val" is one of the BO_ values, e.g., BO_OPER.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1096 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1097 void
28441
f4d2dcfd18ac patch 8.2.4745: using wrong flag for using bell in the terminal
Bram Moolenaar <Bram@vim.org>
parents: 28397
diff changeset
1098 vim_beep(unsigned val)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1099 {
13272
abaebba89fd4 patch 8.0.1510: cannot test if a command causes a beep
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
1100 #ifdef FEAT_EVAL
abaebba89fd4 patch 8.0.1510: cannot test if a command causes a beep
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
1101 called_vim_beep = TRUE;
abaebba89fd4 patch 8.0.1510: cannot test if a command causes a beep
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
1102 #endif
abaebba89fd4 patch 8.0.1510: cannot test if a command causes a beep
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
1103
22742
f7f2d73ff85e patch 8.2.1919: assert_fails() setting emsg_silent changes normal execution
Bram Moolenaar <Bram@vim.org>
parents: 22685
diff changeset
1104 if (emsg_silent == 0 && !in_assert_fails)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1105 {
6949
1e621b31948b patch 7.4.793
Bram Moolenaar <bram@vim.org>
parents: 6803
diff changeset
1106 if (!((bo_flags & val) || (bo_flags & BO_ALL)))
1e621b31948b patch 7.4.793
Bram Moolenaar <bram@vim.org>
parents: 6803
diff changeset
1107 {
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1108 #ifdef ELAPSED_FUNC
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1109 static int did_init = FALSE;
15525
3ef31ce9d9f9 patch 8.1.0770: inconsistent use of ELAPSED_FUNC
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
1110 static elapsed_T start_tv;
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1111
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1112 // Only beep once per half a second, otherwise a sequence of beeps
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1113 // would freeze Vim.
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1114 if (!did_init || ELAPSED_FUNC(start_tv) > 500)
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1115 {
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1116 did_init = TRUE;
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1117 ELAPSED_INIT(start_tv);
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1118 #endif
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1119 if (p_vb
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1120 #ifdef FEAT_GUI
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1121 // While the GUI is starting up the termcap is set for
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1122 // the GUI but the output still goes to a terminal.
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1123 && !(gui.in_use && gui.starting)
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1124 #endif
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1125 )
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13272
diff changeset
1126 {
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1127 out_str_cf(T_VB);
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13272
diff changeset
1128 #ifdef FEAT_VTP
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1129 // No restore color information, refresh the screen.
13314
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13272
diff changeset
1130 if (has_vtp_working() != 0
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13272
diff changeset
1131 # ifdef FEAT_TERMGUICOLORS
13823
d0d8125ba692 patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13772
diff changeset
1132 && (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: 13272
diff changeset
1133 # endif
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13272
diff changeset
1134 )
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13272
diff changeset
1135 {
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13272
diff changeset
1136 redraw_later(CLEAR);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13272
diff changeset
1137 update_screen(0);
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13272
diff changeset
1138 redrawcmd();
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13272
diff changeset
1139 }
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13272
diff changeset
1140 #endif
65c3e8259124 patch 8.0.1531: cannot use 24 bit colors in MS-Windows console
Christian Brabandt <cb@256bit.org>
parents: 13272
diff changeset
1141 }
11601
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1142 else
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1143 out_char(BELL);
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1144 #ifdef ELAPSED_FUNC
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1145 }
0a5d405e2520 patch 8.0.0683: visual bell flashes too quickly
Christian Brabandt <cb@256bit.org>
parents: 11384
diff changeset
1146 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1147 }
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 164
diff changeset
1148
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1149 // When 'debug' contains "beep" produce a message. If we are sourcing
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1150 // a script or executing a function give the user a hint where the beep
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1151 // comes from.
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 164
diff changeset
1152 if (vim_strchr(p_debug, 'e') != NULL)
0e902b8f511f updated for version 7.0051
vimboss
parents: 164
diff changeset
1153 {
11158
501f46f7644c patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
1154 msg_source(HL_ATTR(HLF_W));
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15525
diff changeset
1155 msg_attr(_("Beep!"), HL_ATTR(HLF_W));
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 164
diff changeset
1156 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1157 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1158 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1159
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1160 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1161 * To get the "real" home directory:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1162 * - get value of $HOME
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1163 * For Unix:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1164 * - go to that directory
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1165 * - do mch_dirname() to get the real name of that directory.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1166 * This also works with mounts and links.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1167 * Don't do this for MS-DOS, it will change the "current dir" for a drive.
15046
c1be7c8bb602 patch 8.1.0534: MS-Windows installer uses different $HOME than Vim
Bram Moolenaar <Bram@vim.org>
parents: 14909
diff changeset
1168 * For Windows:
c1be7c8bb602 patch 8.1.0534: MS-Windows installer uses different $HOME than Vim
Bram Moolenaar <Bram@vim.org>
parents: 14909
diff changeset
1169 * This code is duplicated in init_homedir() in dosinst.c. Keep in sync!
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1170 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1171 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1172 init_homedir(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1173 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1174 char_u *var;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1175
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1176 // In case we are called a second time (when 'encoding' changes).
13244
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13188
diff changeset
1177 VIM_CLEAR(homedir);
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
1178
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1179 #ifdef VMS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1180 var = mch_getenv((char_u *)"SYS$LOGIN");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1181 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1182 var = mch_getenv((char_u *)"HOME");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1183 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1184
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
1185 #ifdef MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1186 /*
12265
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1187 * Typically, $HOME is not defined on Windows, unless the user has
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1188 * specifically defined it for Vim's sake. However, on Windows NT
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1189 * platforms, $HOMEDRIVE and $HOMEPATH are automatically defined for
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1190 * each user. Try constructing $HOME from these.
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1191 */
12269
d2373927d76d patch 8.0.1014: old compiler doesn't know uint32_t
Christian Brabandt <cb@256bit.org>
parents: 12265
diff changeset
1192 if (var == NULL || *var == NUL)
12265
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1193 {
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1194 char_u *homedrive, *homepath;
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1195
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1196 homedrive = mch_getenv((char_u *)"HOMEDRIVE");
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1197 homepath = mch_getenv((char_u *)"HOMEPATH");
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1198 if (homepath == NULL || *homepath == NUL)
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1199 homepath = (char_u *)"\\";
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1200 if (homedrive != NULL
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1201 && STRLEN(homedrive) + STRLEN(homepath) < MAXPATHL)
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1202 {
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1203 sprintf((char *)NameBuff, "%s%s", homedrive, homepath);
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1204 if (NameBuff[0] != NUL)
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1205 var = NameBuff;
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1206 }
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1207 }
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1208
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1209 if (var == NULL)
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1210 var = mch_getenv((char_u *)"USERPROFILE");
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1211
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1212 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1213 * Weird but true: $HOME may contain an indirect reference to another
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1214 * variable, esp. "%USERPROFILE%". Happens when $USERPROFILE isn't set
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1215 * when $HOME is being set.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1216 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1217 if (var != NULL && *var == '%')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1218 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1219 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1220 char_u *exp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1221
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1222 p = vim_strchr(var + 1, '%');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1223 if (p != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1224 {
419
f713fc55bf7b updated for version 7.0109
vimboss
parents: 410
diff changeset
1225 vim_strncpy(NameBuff, var + 1, p - (var + 1));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1226 exp = mch_getenv(NameBuff);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1227 if (exp != NULL && *exp != NUL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1228 && STRLEN(exp) + STRLEN(p) < MAXPATHL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1229 {
274
8fa8d7964cf1 updated for version 7.0073
vimboss
parents: 265
diff changeset
1230 vim_snprintf((char *)NameBuff, MAXPATHL, "%s%s", exp, p + 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1231 var = NameBuff;
12265
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1232 }
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1233 }
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1234 }
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1235
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1236 if (var != NULL && *var == NUL) // empty is same as not set
12265
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1237 var = NULL;
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1238
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
1239 if (enc_utf8 && var != NULL)
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
1240 {
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
1241 int len;
2786
5f45bacf31ef updated for version 7.3.169
Bram Moolenaar <bram@vim.org>
parents: 2776
diff changeset
1242 char_u *pp = NULL;
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
1243
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1244 // Convert from active codepage to UTF-8. Other conversions are
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1245 // not done, because they would fail for non-ASCII characters.
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 834
diff changeset
1246 acp_to_enc(var, (int)STRLEN(var), &pp, &len);
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
1247 if (pp != NULL)
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
1248 {
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
1249 homedir = pp;
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
1250 return;
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
1251 }
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
1252 }
12265
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1253
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1254 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1255 * Default home dir is C:/
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1256 * Best assumption we can make in such a situation.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1257 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1258 if (var == NULL)
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 7829
diff changeset
1259 var = (char_u *)"C:/";
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1260 #endif
12265
03e4be2e3d53 patch 8.0.1012: MS-Windows: problem with $HOME when is was set internally
Christian Brabandt <cb@256bit.org>
parents: 12238
diff changeset
1261
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1262 if (var != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1263 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1264 #ifdef UNIX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1265 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1266 * Change to the directory and get the actual path. This resolves
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1267 * links. Don't do it when we can't return.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1268 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1269 if (mch_dirname(NameBuff, MAXPATHL) == OK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1270 && mch_chdir((char *)NameBuff) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1271 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1272 if (!mch_chdir((char *)var) && mch_dirname(IObuff, IOSIZE) == OK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1273 var = IObuff;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1274 if (mch_chdir((char *)NameBuff) != 0)
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
1275 emsg(_(e_cannot_go_back_to_previous_directory));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1276 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1277 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1278 homedir = vim_strsave(var);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1279 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1280 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1281
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
1282 #if defined(EXITFREE) || defined(PROTO)
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
1283 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1284 free_homedir(void)
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
1285 {
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
1286 vim_free(homedir);
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
1287 }
3744
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
1288
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
1289 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1290 free_users(void)
3744
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
1291 {
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
1292 ga_clear_strings(&ga_users);
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
1293 }
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
1294 #endif
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
1295
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1296 /*
1408
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1297 * Call expand_env() and store the result in an allocated string.
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1298 * This is not very memory efficient, this expects the result to be freed
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1299 * again soon.
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1300 */
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1301 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1302 expand_env_save(char_u *src)
1408
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1303 {
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1304 return expand_env_save_opt(src, FALSE);
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1305 }
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1306
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1307 /*
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1308 * Idem, but when "one" is TRUE handle the string as one file name, only
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1309 * expand "~" at the start.
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1310 */
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1311 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1312 expand_env_save_opt(char_u *src, int one)
1408
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1313 {
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1314 char_u *p;
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1315
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1316 p = alloc(MAXPATHL);
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1317 if (p != NULL)
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1318 expand_env_esc(src, p, MAXPATHL, FALSE, one, NULL);
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1319 return p;
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1320 }
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1321
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1322 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1323 * Expand environment variable with path name.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1324 * "~/" is also expanded, using $HOME. For Unix "~user/" is expanded.
1408
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1325 * Skips over "\ ", "\~" and "\$" (not for Win32 though).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1326 * If anything fails no expansion is done and dst equals src.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1327 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1328 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1329 expand_env(
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1330 char_u *src, // input string e.g. "$HOME/vim.hlp"
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1331 char_u *dst, // where to put the result
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1332 int dstlen) // maximum length of the result
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1333 {
1408
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1334 expand_env_esc(src, dst, dstlen, FALSE, FALSE, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1335 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1336
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1337 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1338 expand_env_esc(
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1339 char_u *srcp, // input string e.g. "$HOME/vim.hlp"
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1340 char_u *dst, // where to put the result
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1341 int dstlen, // maximum length of the result
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1342 int esc, // escape spaces in expanded variables
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1343 int one, // "srcp" is one file name
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1344 char_u *startstr) // start again after this (can be NULL)
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
1345 {
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
1346 char_u *src;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1347 char_u *tail;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1348 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1349 char_u *var;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1350 int copy_char;
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1351 int mustfree; // var was allocated, need to free it later
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1352 int at_start = TRUE; // at start of a name
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
1353 int startstr_len = 0;
29113
495d55210aac patch 8.2.5077: various warnings from clang on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
1354 #if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA)
495d55210aac patch 8.2.5077: various warnings from clang on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
1355 char_u *save_dst = dst;
495d55210aac patch 8.2.5077: various warnings from clang on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
1356 #endif
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
1357
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
1358 if (startstr != NULL)
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 834
diff changeset
1359 startstr_len = (int)STRLEN(startstr);
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
1360
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
1361 src = skipwhite(srcp);
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1362 --dstlen; // leave one char space for "\,"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1363 while (*src && dstlen > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1364 {
7038
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1365 #ifdef FEAT_EVAL
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1366 // Skip over `=expr`.
7038
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1367 if (src[0] == '`' && src[1] == '=')
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1368 {
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1369 size_t len;
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1370
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1371 var = src;
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1372 src += 2;
22685
80b4e604d1d5 patch 8.2.1891: Vim9: skipping over expression doesn't handle line breaks
Bram Moolenaar <Bram@vim.org>
parents: 20830
diff changeset
1373 (void)skip_expr(&src, NULL);
7038
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1374 if (*src == '`')
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1375 ++src;
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1376 len = src - var;
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1377 if (len > (size_t)dstlen)
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1378 len = dstlen;
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1379 vim_strncpy(dst, var, len);
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1380 dst += len;
7066
094c8ccdc279 commit https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e
Christian Brabandt <cb@256bit.org>
parents: 7038
diff changeset
1381 dstlen -= (int)len;
7038
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1382 continue;
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1383 }
76042a56ab85 commit https://github.com/vim/vim/commit/be83b73ddb2ee8297037166d243f72e3423a3ce3
Christian Brabandt <cb@256bit.org>
parents: 7036
diff changeset
1384 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1385 copy_char = TRUE;
22
cc049b00ee70 updated for version 7.0014
vimboss
parents: 17
diff changeset
1386 if ((*src == '$'
cc049b00ee70 updated for version 7.0014
vimboss
parents: 17
diff changeset
1387 #ifdef VMS
cc049b00ee70 updated for version 7.0014
vimboss
parents: 17
diff changeset
1388 && at_start
cc049b00ee70 updated for version 7.0014
vimboss
parents: 17
diff changeset
1389 #endif
cc049b00ee70 updated for version 7.0014
vimboss
parents: 17
diff changeset
1390 )
8212
05b88224cea1 commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents: 8163
diff changeset
1391 #if defined(MSWIN)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1392 || *src == '%'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1393 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1394 || (*src == '~' && at_start))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1395 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1396 mustfree = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1397
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1398 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1399 * The variable name is copied into dst temporarily, because it may
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1400 * be a string in read-only memory and a NUL needs to be appended.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1401 */
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1402 if (*src != '~') // environment var
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1403 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1404 tail = src + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1405 var = dst;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1406 c = dstlen - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1407
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1408 #ifdef UNIX
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1409 // Unix has ${var-name} type environment vars
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1410 if (*tail == '{' && !vim_isIDc('{'))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1411 {
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1412 tail++; // ignore '{'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1413 while (c-- > 0 && *tail && *tail != '}')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1414 *var++ = *tail++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1415 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1416 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1417 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1418 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1419 while (c-- > 0 && *tail != NUL && ((vim_isIDc(*tail))
8212
05b88224cea1 commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents: 8163
diff changeset
1420 #if defined(MSWIN)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1421 || (*src == '%' && *tail != '%')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1422 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1423 ))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1424 *var++ = *tail++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1425 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1426
8212
05b88224cea1 commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents: 8163
diff changeset
1427 #if defined(MSWIN) || defined(UNIX)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1428 # ifdef UNIX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1429 if (src[1] == '{' && *tail != '}')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1430 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1431 if (*src == '%' && *tail != '%')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1432 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1433 var = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1434 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1435 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1436 # ifdef UNIX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1437 if (src[1] == '{')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1438 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1439 if (*src == '%')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1440 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1441 ++tail;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1442 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1443 *var = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1444 var = vim_getenv(dst, &mustfree);
8212
05b88224cea1 commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents: 8163
diff changeset
1445 #if defined(MSWIN) || defined(UNIX)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1446 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1447 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1448 }
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1449 // home directory
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1450 else if ( src[1] == NUL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1451 || vim_ispathsep(src[1])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1452 || vim_strchr((char_u *)" ,\t\n", src[1]) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1453 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1454 var = homedir;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1455 tail = src + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1456 }
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1457 else // user directory
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1458 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1459 #if defined(UNIX) || (defined(VMS) && defined(USER_HOME))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1460 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1461 * Copy ~user to dst[], so we can put a NUL after it.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1462 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1463 tail = src;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1464 var = dst;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1465 c = dstlen - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1466 while ( c-- > 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1467 && *tail
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1468 && vim_isfilec(*tail)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1469 && !vim_ispathsep(*tail))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1470 *var++ = *tail++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1471 *var = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1472 # ifdef UNIX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1473 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1474 * If the system supports getpwnam(), use it.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1475 * Otherwise, or if getpwnam() fails, the shell is used to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1476 * expand ~user. This is slower and may fail if the shell
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1477 * does not support ~user (old versions of /bin/sh).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1478 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1479 # if defined(HAVE_GETPWNAM) && defined(HAVE_PWD_H)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1480 {
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1481 // Note: memory allocated by getpwnam() is never freed.
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1482 // Calling endpwent() apparently doesn't help.
10932
141fe140976c patch 8.0.0355: using uninitialized memory when 'isfname' is empty
Christian Brabandt <cb@256bit.org>
parents: 10889
diff changeset
1483 struct passwd *pw = (*dst == NUL)
141fe140976c patch 8.0.0355: using uninitialized memory when 'isfname' is empty
Christian Brabandt <cb@256bit.org>
parents: 10889
diff changeset
1484 ? NULL : getpwnam((char *)dst + 1);
141fe140976c patch 8.0.0355: using uninitialized memory when 'isfname' is empty
Christian Brabandt <cb@256bit.org>
parents: 10889
diff changeset
1485
141fe140976c patch 8.0.0355: using uninitialized memory when 'isfname' is empty
Christian Brabandt <cb@256bit.org>
parents: 10889
diff changeset
1486 var = (pw == NULL) ? NULL : (char_u *)pw->pw_dir;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1487 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1488 if (var == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1489 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1490 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1491 expand_T xpc;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1492
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1493 ExpandInit(&xpc);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1494 xpc.xp_context = EXPAND_FILES;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1495 var = ExpandOne(&xpc, dst, NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1496 WILD_ADD_SLASH|WILD_SILENT, WILD_EXPAND_FREE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1497 mustfree = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1498 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1499
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1500 # else // !UNIX, thus VMS
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1501 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1502 * USER_HOME is a comma-separated list of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1503 * directories to search for the user account in.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1504 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1505 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1506 char_u test[MAXPATHL], paths[MAXPATHL];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1507 char_u *path, *next_path, *ptr;
9387
f094d4085014 commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents: 9225
diff changeset
1508 stat_T st;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1509
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1510 STRCPY(paths, USER_HOME);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1511 next_path = paths;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1512 while (*next_path)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1513 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1514 for (path = next_path; *next_path && *next_path != ',';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1515 next_path++);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1516 if (*next_path)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1517 *next_path++ = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1518 STRCPY(test, path);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1519 STRCAT(test, "/");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1520 STRCAT(test, dst + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1521 if (mch_stat(test, &st) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1522 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1523 var = alloc(STRLEN(test) + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1524 STRCPY(var, test);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1525 mustfree = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1526 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1527 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1528 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1529 }
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1530 # endif // UNIX
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1531 #else
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1532 // cannot expand user's home directory, so don't try
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1533 var = NULL;
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1534 tail = (char_u *)""; // for gcc
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1535 #endif // UNIX || VMS
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1536 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1537
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1538 #ifdef BACKSLASH_IN_FILENAME
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1539 // If 'shellslash' is set change backslashes to forward slashes.
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1540 // Can't use slash_adjust(), p_ssl may be set temporarily.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1541 if (p_ssl && var != NULL && vim_strchr(var, '\\') != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1542 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1543 char_u *p = vim_strsave(var);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1544
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1545 if (p != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1546 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1547 if (mustfree)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1548 vim_free(var);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1549 var = p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1550 mustfree = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1551 forward_slash(var);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1552 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1553 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1554 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1555
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1556 // If "var" contains white space, escape it with a backslash.
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1557 // Required for ":e ~/tt" when $HOME includes a space.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1558 if (esc && var != NULL && vim_strpbrk(var, (char_u *)" \t") != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1559 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1560 char_u *p = vim_strsave_escaped(var, (char_u *)" \t");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1561
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1562 if (p != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1563 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1564 if (mustfree)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1565 vim_free(var);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1566 var = p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1567 mustfree = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1568 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1569 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1570
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1571 if (var != NULL && *var != NUL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1572 && (STRLEN(var) + STRLEN(tail) + 1 < (unsigned)dstlen))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1573 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1574 STRCPY(dst, var);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1575 dstlen -= (int)STRLEN(var);
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 834
diff changeset
1576 c = (int)STRLEN(var);
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1577 // if var[] ends in a path separator and tail[] starts
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1578 // with it, skip a character
28451
e015d650ea9f patch 8.2.4750: small pieces of dead code
Bram Moolenaar <Bram@vim.org>
parents: 28441
diff changeset
1579 if (after_pathsep(dst, dst + c)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1580 #if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA)
29113
495d55210aac patch 8.2.5077: various warnings from clang on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
1581 && (dst == save_dst || dst[-1] != ':')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1582 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1583 && vim_ispathsep(*tail))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1584 ++tail;
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
1585 dst += c;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1586 src = tail;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1587 copy_char = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1588 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1589 if (mustfree)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1590 vim_free(var);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1591 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1592
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1593 if (copy_char) // copy at least one char
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1594 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1595 /*
1224
edc1c9d6dab9 updated for version 7.1b
vimboss
parents: 1096
diff changeset
1596 * Recognize the start of a new name, for '~'.
1408
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1597 * Don't do this when "one" is TRUE, to avoid expanding "~" in
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1598 * ":edit foo ~ foo".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1599 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1600 at_start = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1601 if (src[0] == '\\' && src[1] != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1602 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1603 *dst++ = *src++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1604 --dstlen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1605 }
1408
db8309865794 updated for version 7.1-123
vimboss
parents: 1359
diff changeset
1606 else if ((src[0] == ' ' || src[0] == ',') && !one)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1607 at_start = TRUE;
12005
0496ea4c5c2e patch 8.0.0883: invalid memory access with nonsensical script
Christian Brabandt <cb@256bit.org>
parents: 11989
diff changeset
1608 if (dstlen > 0)
0496ea4c5c2e patch 8.0.0883: invalid memory access with nonsensical script
Christian Brabandt <cb@256bit.org>
parents: 11989
diff changeset
1609 {
0496ea4c5c2e patch 8.0.0883: invalid memory access with nonsensical script
Christian Brabandt <cb@256bit.org>
parents: 11989
diff changeset
1610 *dst++ = *src++;
0496ea4c5c2e patch 8.0.0883: invalid memory access with nonsensical script
Christian Brabandt <cb@256bit.org>
parents: 11989
diff changeset
1611 --dstlen;
0496ea4c5c2e patch 8.0.0883: invalid memory access with nonsensical script
Christian Brabandt <cb@256bit.org>
parents: 11989
diff changeset
1612
0496ea4c5c2e patch 8.0.0883: invalid memory access with nonsensical script
Christian Brabandt <cb@256bit.org>
parents: 11989
diff changeset
1613 if (startstr != NULL && src - startstr_len >= srcp
0496ea4c5c2e patch 8.0.0883: invalid memory access with nonsensical script
Christian Brabandt <cb@256bit.org>
parents: 11989
diff changeset
1614 && STRNCMP(src - startstr_len, startstr,
0496ea4c5c2e patch 8.0.0883: invalid memory access with nonsensical script
Christian Brabandt <cb@256bit.org>
parents: 11989
diff changeset
1615 startstr_len) == 0)
0496ea4c5c2e patch 8.0.0883: invalid memory access with nonsensical script
Christian Brabandt <cb@256bit.org>
parents: 11989
diff changeset
1616 at_start = TRUE;
0496ea4c5c2e patch 8.0.0883: invalid memory access with nonsensical script
Christian Brabandt <cb@256bit.org>
parents: 11989
diff changeset
1617 }
0496ea4c5c2e patch 8.0.0883: invalid memory access with nonsensical script
Christian Brabandt <cb@256bit.org>
parents: 11989
diff changeset
1618 }
0496ea4c5c2e patch 8.0.0883: invalid memory access with nonsensical script
Christian Brabandt <cb@256bit.org>
parents: 11989
diff changeset
1619
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1620 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1621 *dst = NUL;
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 /*
17978
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1625 * If the string between "p" and "pend" ends in "name/", return "pend" minus
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1626 * the length of "name/". Otherwise return "pend".
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1627 */
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1628 static char_u *
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1629 remove_tail(char_u *p, char_u *pend, char_u *name)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1630 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1631 int len = (int)STRLEN(name) + 1;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1632 char_u *newend = pend - len;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1633
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1634 if (newend >= p
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1635 && fnamencmp(newend, name, len - 1) == 0
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1636 && (newend == p || after_pathsep(p, newend)))
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1637 return newend;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1638 return pend;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1639 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1640
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1641 /*
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1642 * Check if the directory "vimdir/<version>" or "vimdir/runtime" exists.
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1643 * Return NULL if not, return its name in allocated memory otherwise.
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1644 */
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1645 static char_u *
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1646 vim_version_dir(char_u *vimdir)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1647 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1648 char_u *p;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1649
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1650 if (vimdir == NULL || *vimdir == NUL)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1651 return NULL;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1652 p = concat_fnames(vimdir, (char_u *)VIM_VERSION_NODOT, TRUE);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1653 if (p != NULL && mch_isdir(p))
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1654 return p;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1655 vim_free(p);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1656 p = concat_fnames(vimdir, (char_u *)RUNTIME_DIRNAME, TRUE);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1657 if (p != NULL && mch_isdir(p))
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1658 return p;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1659 vim_free(p);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1660 return NULL;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1661 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1662
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
1663 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1664 * Vim's version of getenv().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1665 * Special handling of $HOME, $VIM and $VIMRUNTIME.
196
991a7623a1fe updated for version 7.0058
vimboss
parents: 191
diff changeset
1666 * Also does ACP to 'enc' conversion for Win32.
2786
5f45bacf31ef updated for version 7.3.169
Bram Moolenaar <bram@vim.org>
parents: 2776
diff changeset
1667 * "mustfree" is set to TRUE when returned is allocated, it must be
5f45bacf31ef updated for version 7.3.169
Bram Moolenaar <bram@vim.org>
parents: 2776
diff changeset
1668 * initialized to FALSE by the caller.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1669 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1670 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1671 vim_getenv(char_u *name, int *mustfree)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1672 {
16172
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1673 char_u *p = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1674 char_u *pend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1675 int vimruntime;
16172
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1676 #ifdef MSWIN
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1677 WCHAR *wn, *wp;
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1678
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1679 // use "C:/" when $HOME is not set
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1680 if (STRCMP(name, "HOME") == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1681 return homedir;
16172
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1682
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1683 // Use Wide function
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1684 wn = enc_to_utf16(name, NULL);
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1685 if (wn == NULL)
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1686 return NULL;
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1687
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1688 wp = _wgetenv(wn);
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1689 vim_free(wn);
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1690
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1691 if (wp != NULL && *wp == NUL) // empty is the same as not set
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1692 wp = NULL;
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1693
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1694 if (wp != NULL)
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1695 {
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1696 p = utf16_to_enc(wp, NULL);
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1697 if (p == NULL)
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1698 return NULL;
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1699
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1700 *mustfree = TRUE;
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1701 return p;
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1702 }
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1703 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1704 p = mch_getenv(name);
16172
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1705 if (p != NULL && *p == NUL) // empty is the same as not set
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1706 p = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1707
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1708 if (p != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1709 return p;
20277
8a694c9447d7 patch 8.2.0694: Haiku: channel and terminal do not work
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
1710
8a694c9447d7 patch 8.2.0694: Haiku: channel and terminal do not work
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
1711 # ifdef __HAIKU__
8a694c9447d7 patch 8.2.0694: Haiku: channel and terminal do not work
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
1712 // special handling for user settings directory...
8a694c9447d7 patch 8.2.0694: Haiku: channel and terminal do not work
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
1713 if (STRCMP(name, "BE_USER_SETTINGS") == 0)
8a694c9447d7 patch 8.2.0694: Haiku: channel and terminal do not work
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
1714 {
8a694c9447d7 patch 8.2.0694: Haiku: channel and terminal do not work
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
1715 static char userSettingsPath[MAXPATHL];
8a694c9447d7 patch 8.2.0694: Haiku: channel and terminal do not work
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
1716
8a694c9447d7 patch 8.2.0694: Haiku: channel and terminal do not work
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
1717 if (find_directory(B_USER_SETTINGS_DIRECTORY, 0, false,
8a694c9447d7 patch 8.2.0694: Haiku: channel and terminal do not work
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
1718 userSettingsPath, MAXPATHL) == B_OK)
8a694c9447d7 patch 8.2.0694: Haiku: channel and terminal do not work
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
1719 return (char_u *)userSettingsPath;
8a694c9447d7 patch 8.2.0694: Haiku: channel and terminal do not work
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
1720 else
8a694c9447d7 patch 8.2.0694: Haiku: channel and terminal do not work
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
1721 return NULL;
8a694c9447d7 patch 8.2.0694: Haiku: channel and terminal do not work
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
1722 }
8a694c9447d7 patch 8.2.0694: Haiku: channel and terminal do not work
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
1723 # endif
16172
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1724 #endif
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1725
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1726 // handling $VIMRUNTIME and $VIM is below, bail out if it's another name.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1727 vimruntime = (STRCMP(name, "VIMRUNTIME") == 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1728 if (!vimruntime && STRCMP(name, "VIM") != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1729 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1730
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1731 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1732 * When expanding $VIMRUNTIME fails, try using $VIM/vim<version> or $VIM.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1733 * Don't do this when default_vimruntime_dir is non-empty.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1734 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1735 if (vimruntime
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1736 #ifdef HAVE_PATHDEF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1737 && *default_vimruntime_dir == NUL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1738 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1739 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1740 {
16172
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1741 #ifdef MSWIN
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1742 // Use Wide function
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1743 wp = _wgetenv(L"VIM");
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1744 if (wp != NULL && *wp == NUL) // empty is the same as not set
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1745 wp = NULL;
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1746 if (wp != NULL)
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1747 {
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1748 char_u *q = utf16_to_enc(wp, NULL);
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1749 if (q != NULL)
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1750 {
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1751 p = vim_version_dir(q);
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1752 *mustfree = TRUE;
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1753 if (p == NULL)
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1754 p = q;
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1755 }
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1756 }
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1757 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1758 p = mch_getenv((char_u *)"VIM");
16172
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1759 if (p != NULL && *p == NUL) // empty is the same as not set
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1760 p = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1761 if (p != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1762 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1763 p = vim_version_dir(p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1764 if (p != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1765 *mustfree = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1766 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1767 p = mch_getenv((char_u *)"VIM");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1768 }
16172
6b0836727cf3 patch 8.1.1091: MS-Windows: cannot use multi-byte chars in environment var
Bram Moolenaar <Bram@vim.org>
parents: 16162
diff changeset
1769 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1770 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1771
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1772 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1773 * When expanding $VIM or $VIMRUNTIME fails, try using:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1774 * - the directory name from 'helpfile' (unless it contains '$')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1775 * - the executable name from argv[0]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1776 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1777 if (p == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1778 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1779 if (p_hf != NULL && vim_strchr(p_hf, '$') == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1780 p = p_hf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1781 #ifdef USE_EXE_NAME
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1782 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1783 * Use the name of the executable, obtained from argv[0].
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1784 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1785 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1786 p = exe_name;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1787 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1788 if (p != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1789 {
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1790 // remove the file name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1791 pend = gettail(p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1792
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1793 // remove "doc/" from 'helpfile', if present
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1794 if (p == p_hf)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1795 pend = remove_tail(p, pend, (char_u *)"doc");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1796
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1797 #ifdef USE_EXE_NAME
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1798 # ifdef MACOS_X
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1799 // remove "MacOS" from exe_name and add "Resources/vim"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1800 if (p == exe_name)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1801 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1802 char_u *pend1;
768
8ccb9047b14d updated for version 7.0225
vimboss
parents: 720
diff changeset
1803 char_u *pnew;
8ccb9047b14d updated for version 7.0225
vimboss
parents: 720
diff changeset
1804
8ccb9047b14d updated for version 7.0225
vimboss
parents: 720
diff changeset
1805 pend1 = remove_tail(p, pend, (char_u *)"MacOS");
8ccb9047b14d updated for version 7.0225
vimboss
parents: 720
diff changeset
1806 if (pend1 != pend)
8ccb9047b14d updated for version 7.0225
vimboss
parents: 720
diff changeset
1807 {
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16738
diff changeset
1808 pnew = alloc(pend1 - p + 15);
768
8ccb9047b14d updated for version 7.0225
vimboss
parents: 720
diff changeset
1809 if (pnew != NULL)
8ccb9047b14d updated for version 7.0225
vimboss
parents: 720
diff changeset
1810 {
8ccb9047b14d updated for version 7.0225
vimboss
parents: 720
diff changeset
1811 STRNCPY(pnew, p, (pend1 - p));
8ccb9047b14d updated for version 7.0225
vimboss
parents: 720
diff changeset
1812 STRCPY(pnew + (pend1 - p), "Resources/vim");
8ccb9047b14d updated for version 7.0225
vimboss
parents: 720
diff changeset
1813 p = pnew;
8ccb9047b14d updated for version 7.0225
vimboss
parents: 720
diff changeset
1814 pend = p + STRLEN(p);
8ccb9047b14d updated for version 7.0225
vimboss
parents: 720
diff changeset
1815 }
8ccb9047b14d updated for version 7.0225
vimboss
parents: 720
diff changeset
1816 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1817 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1818 # endif
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1819 // remove "src/" from exe_name, if present
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1820 if (p == exe_name)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1821 pend = remove_tail(p, pend, (char_u *)"src");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1822 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1823
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1824 // for $VIM, remove "runtime/" or "vim54/", if present
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1825 if (!vimruntime)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1826 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1827 pend = remove_tail(p, pend, (char_u *)RUNTIME_DIRNAME);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1828 pend = remove_tail(p, pend, (char_u *)VIM_VERSION_NODOT);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1829 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1830
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1831 // remove trailing path separator
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
1832 if (pend > p && after_pathsep(p, pend))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1833 --pend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1834
768
8ccb9047b14d updated for version 7.0225
vimboss
parents: 720
diff changeset
1835 #ifdef MACOS_X
8ccb9047b14d updated for version 7.0225
vimboss
parents: 720
diff changeset
1836 if (p == exe_name || p == p_hf)
8ccb9047b14d updated for version 7.0225
vimboss
parents: 720
diff changeset
1837 #endif
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1838 // check that the result is a directory name
20830
9064044fd4f6 patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents: 20788
diff changeset
1839 p = vim_strnsave(p, pend - p);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1840
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1841 if (p != NULL && !mch_isdir(p))
13244
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13188
diff changeset
1842 VIM_CLEAR(p);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1843 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1844 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1845 #ifdef USE_EXE_NAME
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1846 // may add "/vim54" or "/runtime" if it exists
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1847 if (vimruntime && (pend = vim_version_dir(p)) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1848 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1849 vim_free(p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1850 p = pend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1851 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1852 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1853 *mustfree = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1854 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1855 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1856 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1857
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1858 #ifdef HAVE_PATHDEF
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1859 // When there is a pathdef.c file we can use default_vim_dir and
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1860 // default_vimruntime_dir
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1861 if (p == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1862 {
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1863 // Only use default_vimruntime_dir when it is not empty
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1864 if (vimruntime && *default_vimruntime_dir != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1865 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1866 p = default_vimruntime_dir;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1867 *mustfree = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1868 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1869 else if (*default_vim_dir != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1870 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1871 if (vimruntime && (p = vim_version_dir(default_vim_dir)) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1872 *mustfree = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1873 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1874 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1875 p = default_vim_dir;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1876 *mustfree = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1877 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1878 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1879 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1880 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1881
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1882 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1883 * Set the environment variable, so that the new value can be found fast
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1884 * next time, and others can also use it (e.g. Perl).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1885 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1886 if (p != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1887 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1888 if (vimruntime)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1889 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1890 vim_setenv((char_u *)"VIMRUNTIME", p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1891 didset_vimruntime = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1892 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1893 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1894 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1895 vim_setenv((char_u *)"VIM", p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1896 didset_vim = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1897 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1898 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1899 return p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1900 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1901
13923
e4d5726e1678 patch 8.0.1832: cannot use :unlet for an environment variable
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
1902 void
e4d5726e1678 patch 8.0.1832: cannot use :unlet for an environment variable
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
1903 vim_unsetenv(char_u *var)
e4d5726e1678 patch 8.0.1832: cannot use :unlet for an environment variable
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
1904 {
e4d5726e1678 patch 8.0.1832: cannot use :unlet for an environment variable
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
1905 #ifdef HAVE_UNSETENV
e4d5726e1678 patch 8.0.1832: cannot use :unlet for an environment variable
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
1906 unsetenv((char *)var);
e4d5726e1678 patch 8.0.1832: cannot use :unlet for an environment variable
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
1907 #else
13942
a039c93f5ff7 patch 8.0.1841: HP-UX does not have setenv()
Christian Brabandt <cb@256bit.org>
parents: 13923
diff changeset
1908 vim_setenv(var, (char_u *)"");
13923
e4d5726e1678 patch 8.0.1832: cannot use :unlet for an environment variable
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
1909 #endif
e4d5726e1678 patch 8.0.1832: cannot use :unlet for an environment variable
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
1910 }
e4d5726e1678 patch 8.0.1832: cannot use :unlet for an environment variable
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
1911
28459
52ef65c0637f patch 8.2.4754: using cached values after unsetting some environment variables
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
1912 /*
52ef65c0637f patch 8.2.4754: using cached values after unsetting some environment variables
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
1913 * Removes environment variable "name" and take care of side effects.
52ef65c0637f patch 8.2.4754: using cached values after unsetting some environment variables
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
1914 */
52ef65c0637f patch 8.2.4754: using cached values after unsetting some environment variables
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
1915 void
52ef65c0637f patch 8.2.4754: using cached values after unsetting some environment variables
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
1916 vim_unsetenv_ext(char_u *var)
52ef65c0637f patch 8.2.4754: using cached values after unsetting some environment variables
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
1917 {
52ef65c0637f patch 8.2.4754: using cached values after unsetting some environment variables
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
1918 vim_unsetenv(var);
52ef65c0637f patch 8.2.4754: using cached values after unsetting some environment variables
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
1919
52ef65c0637f patch 8.2.4754: using cached values after unsetting some environment variables
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
1920 // "homedir" is not cleared, keep using the old value until $HOME is set.
52ef65c0637f patch 8.2.4754: using cached values after unsetting some environment variables
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
1921 if (STRICMP(var, "VIM") == 0)
52ef65c0637f patch 8.2.4754: using cached values after unsetting some environment variables
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
1922 didset_vim = FALSE;
52ef65c0637f patch 8.2.4754: using cached values after unsetting some environment variables
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
1923 else if (STRICMP(var, "VIMRUNTIME") == 0)
52ef65c0637f patch 8.2.4754: using cached values after unsetting some environment variables
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
1924 didset_vimruntime = FALSE;
52ef65c0637f patch 8.2.4754: using cached values after unsetting some environment variables
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
1925 }
13923
e4d5726e1678 patch 8.0.1832: cannot use :unlet for an environment variable
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
1926
28463
8bf3198ca147 patch 8.2.4756: build error without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents: 28459
diff changeset
1927 #if defined(FEAT_EVAL) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1928 /*
19283
9dc843109c97 patch 8.2.0200: Vim9 script commands not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 19181
diff changeset
1929 * Set environment variable "name" and take care of side effects.
9dc843109c97 patch 8.2.0200: Vim9 script commands not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 19181
diff changeset
1930 */
9dc843109c97 patch 8.2.0200: Vim9 script commands not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 19181
diff changeset
1931 void
9dc843109c97 patch 8.2.0200: Vim9 script commands not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 19181
diff changeset
1932 vim_setenv_ext(char_u *name, char_u *val)
9dc843109c97 patch 8.2.0200: Vim9 script commands not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 19181
diff changeset
1933 {
9dc843109c97 patch 8.2.0200: Vim9 script commands not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 19181
diff changeset
1934 vim_setenv(name, val);
9dc843109c97 patch 8.2.0200: Vim9 script commands not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 19181
diff changeset
1935 if (STRICMP(name, "HOME") == 0)
9dc843109c97 patch 8.2.0200: Vim9 script commands not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 19181
diff changeset
1936 init_homedir();
9dc843109c97 patch 8.2.0200: Vim9 script commands not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 19181
diff changeset
1937 else if (didset_vim && STRICMP(name, "VIM") == 0)
9dc843109c97 patch 8.2.0200: Vim9 script commands not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 19181
diff changeset
1938 didset_vim = FALSE;
28459
52ef65c0637f patch 8.2.4754: using cached values after unsetting some environment variables
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
1939 else if (didset_vimruntime && STRICMP(name, "VIMRUNTIME") == 0)
19283
9dc843109c97 patch 8.2.0200: Vim9 script commands not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 19181
diff changeset
1940 didset_vimruntime = FALSE;
9dc843109c97 patch 8.2.0200: Vim9 script commands not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 19181
diff changeset
1941 }
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26952
diff changeset
1942 #endif
19283
9dc843109c97 patch 8.2.0200: Vim9 script commands not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 19181
diff changeset
1943
9dc843109c97 patch 8.2.0200: Vim9 script commands not sufficiently tested
Bram Moolenaar <Bram@vim.org>
parents: 19181
diff changeset
1944 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1945 * Our portable version of setenv.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1946 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1947 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1948 vim_setenv(char_u *name, char_u *val)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1949 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1950 #ifdef HAVE_SETENV
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1951 mch_setenv((char *)name, (char *)val, 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1952 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1953 char_u *envbuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1954
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1955 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1956 * Putenv does not copy the string, it has to remain
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1957 * valid. The allocated memory will never be freed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1958 */
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16738
diff changeset
1959 envbuf = alloc(STRLEN(name) + STRLEN(val) + 2);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1960 if (envbuf != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1961 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1962 sprintf((char *)envbuf, "%s=%s", name, val);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1963 putenv((char *)envbuf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1964 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1965 #endif
3382
4a2744311b3f updated for version 7.3.457
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
1966 #ifdef FEAT_GETTEXT
4a2744311b3f updated for version 7.3.457
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
1967 /*
4a2744311b3f updated for version 7.3.457
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
1968 * When setting $VIMRUNTIME adjust the directory to find message
4a2744311b3f updated for version 7.3.457
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
1969 * translations to $VIMRUNTIME/lang.
4a2744311b3f updated for version 7.3.457
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
1970 */
4a2744311b3f updated for version 7.3.457
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
1971 if (*val != NUL && STRICMP(name, "VIMRUNTIME") == 0)
4a2744311b3f updated for version 7.3.457
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
1972 {
4a2744311b3f updated for version 7.3.457
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
1973 char_u *buf = concat_str(val, (char_u *)"/lang");
4a2744311b3f updated for version 7.3.457
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
1974
4a2744311b3f updated for version 7.3.457
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
1975 if (buf != NULL)
4a2744311b3f updated for version 7.3.457
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
1976 {
4a2744311b3f updated for version 7.3.457
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
1977 bindtextdomain(VIMPACKAGE, (char *)buf);
4a2744311b3f updated for version 7.3.457
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
1978 vim_free(buf);
4a2744311b3f updated for version 7.3.457
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
1979 }
4a2744311b3f updated for version 7.3.457
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
1980 }
4a2744311b3f updated for version 7.3.457
Bram Moolenaar <bram@vim.org>
parents: 3328
diff changeset
1981 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1982 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1983
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1984 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1985 * Function given to ExpandGeneric() to obtain an environment variable name.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1986 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1987 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1988 get_env_name(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1989 expand_T *xp UNUSED,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
1990 int idx)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1991 {
12716
351cf7c67bbe patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents: 12690
diff changeset
1992 # if defined(AMIGA)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1993 /*
12716
351cf7c67bbe patch 8.0.1236: Mac features are confusing
Christian Brabandt <cb@256bit.org>
parents: 12690
diff changeset
1994 * No environ[] on the Amiga.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1995 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1996 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1997 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1998 # ifndef __WIN32__
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
1999 // Borland C++ 5.2 has this in a header file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2000 extern char **environ;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2001 # endif
17
9be87deaeb52 updated for version 7.0009
vimboss
parents: 16
diff changeset
2002 # define ENVNAMELEN 100
9be87deaeb52 updated for version 7.0009
vimboss
parents: 16
diff changeset
2003 static char_u name[ENVNAMELEN];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2004 char_u *str;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2005 int n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2006
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2007 str = (char_u *)environ[idx];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2008 if (str == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2009 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2010
17
9be87deaeb52 updated for version 7.0009
vimboss
parents: 16
diff changeset
2011 for (n = 0; n < ENVNAMELEN - 1; ++n)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2012 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2013 if (str[n] == '=' || str[n] == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2014 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2015 name[n] = str[n];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2016 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2017 name[n] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2018 return name;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2019 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2020 }
3744
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2021
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2022 /*
14698
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2023 * Add a user name to the list of users in ga_users.
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2024 * Do nothing if user name is NULL or empty.
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2025 */
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2026 static void
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2027 add_user(char_u *user, int need_copy)
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2028 {
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2029 char_u *user_copy = (user != NULL && need_copy)
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2030 ? vim_strsave(user) : user;
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2031
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2032 if (user_copy == NULL || *user_copy == NUL || ga_grow(&ga_users, 1) == FAIL)
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2033 {
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2034 if (need_copy)
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2035 vim_free(user);
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2036 return;
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2037 }
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2038 ((char_u **)(ga_users.ga_data))[ga_users.ga_len++] = user_copy;
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2039 }
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2040
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2041 /*
3744
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2042 * Find all user names for user completion.
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2043 * Done only once and then cached.
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2044 */
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2045 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2046 init_users(void)
4938
bcb84438bb5b updated for version 7.3.1214
Bram Moolenaar <bram@vim.org>
parents: 4805
diff changeset
2047 {
3744
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2048 static int lazy_init_done = FALSE;
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2049
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2050 if (lazy_init_done)
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2051 return;
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2052
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2053 lazy_init_done = TRUE;
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2054 ga_init2(&ga_users, sizeof(char_u *), 20);
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2055
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2056 # if defined(HAVE_GETPWENT) && defined(HAVE_PWD_H)
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2057 {
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2058 struct passwd* pw;
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2059
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2060 setpwent();
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2061 while ((pw = getpwent()) != NULL)
14698
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2062 add_user((char_u *)pw->pw_name, TRUE);
3744
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2063 endpwent();
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2064 }
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
2065 # elif defined(MSWIN)
14133
352c2832d17f patch 8.1.0084: user name completion does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 13942
diff changeset
2066 {
352c2832d17f patch 8.1.0084: user name completion does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 13942
diff changeset
2067 DWORD nusers = 0, ntotal = 0, i;
352c2832d17f patch 8.1.0084: user name completion does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 13942
diff changeset
2068 PUSER_INFO_0 uinfo;
352c2832d17f patch 8.1.0084: user name completion does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 13942
diff changeset
2069
352c2832d17f patch 8.1.0084: user name completion does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 13942
diff changeset
2070 if (NetUserEnum(NULL, 0, 0, (LPBYTE *) &uinfo, MAX_PREFERRED_LENGTH,
352c2832d17f patch 8.1.0084: user name completion does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 13942
diff changeset
2071 &nusers, &ntotal, NULL) == NERR_Success)
352c2832d17f patch 8.1.0084: user name completion does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 13942
diff changeset
2072 {
352c2832d17f patch 8.1.0084: user name completion does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 13942
diff changeset
2073 for (i = 0; i < nusers; i++)
14698
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2074 add_user(utf16_to_enc(uinfo[i].usri0_name, NULL), FALSE);
14133
352c2832d17f patch 8.1.0084: user name completion does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 13942
diff changeset
2075
352c2832d17f patch 8.1.0084: user name completion does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 13942
diff changeset
2076 NetApiBufferFree(uinfo);
352c2832d17f patch 8.1.0084: user name completion does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 13942
diff changeset
2077 }
352c2832d17f patch 8.1.0084: user name completion does not work on MS-Windows
Christian Brabandt <cb@256bit.org>
parents: 13942
diff changeset
2078 }
3744
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2079 # endif
14698
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2080 # if defined(HAVE_GETPWNAM)
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2081 {
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2082 char_u *user_env = mch_getenv((char_u *)"USER");
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2083
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2084 // The $USER environment variable may be a valid remote user name (NIS,
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2085 // LDAP) not already listed by getpwent(), as getpwent() only lists
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2086 // local user names. If $USER is not already listed, check whether it
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2087 // is a valid remote user name using getpwnam() and if it is, add it to
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2088 // the list of user names.
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2089
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2090 if (user_env != NULL && *user_env != NUL)
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2091 {
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2092 int i;
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2093
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2094 for (i = 0; i < ga_users.ga_len; i++)
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2095 {
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2096 char_u *local_user = ((char_u **)ga_users.ga_data)[i];
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2097
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2098 if (STRCMP(local_user, user_env) == 0)
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2099 break;
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2100 }
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2101
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2102 if (i == ga_users.ga_len)
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2103 {
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2104 struct passwd *pw = getpwnam((char *)user_env);
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2105
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2106 if (pw != NULL)
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2107 add_user((char_u *)pw->pw_name, TRUE);
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2108 }
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2109 }
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2110 }
d2cfca5b178e patch 8.1.0361: remote user not used for completion
Christian Brabandt <cb@256bit.org>
parents: 14629
diff changeset
2111 # endif
3744
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2112 }
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2113
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2114 /*
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2115 * Function given to ExpandGeneric() to obtain an user names.
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2116 */
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2117 char_u*
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2118 get_users(expand_T *xp UNUSED, int idx)
3744
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2119 {
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2120 init_users();
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2121 if (idx < ga_users.ga_len)
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2122 return ((char_u **)ga_users.ga_data)[idx];
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2123 return NULL;
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2124 }
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2125
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2126 /*
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2127 * Check whether name matches a user name. Return:
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2128 * 0 if name does not match any user name.
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2129 * 1 if name partially matches the beginning of a user name.
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2130 * 2 is name fully matches a user name.
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2131 */
14286
95030c543411 patch 8.1.0159: completion for user names does not work for a prefix.
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
2132 int
95030c543411 patch 8.1.0159: completion for user names does not work for a prefix.
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
2133 match_user(char_u *name)
3744
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2134 {
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2135 int i;
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2136 int n = (int)STRLEN(name);
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2137 int result = 0;
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2138
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2139 init_users();
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2140 for (i = 0; i < ga_users.ga_len; i++)
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2141 {
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2142 if (STRCMP(((char_u **)ga_users.ga_data)[i], name) == 0)
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2143 return 2; // full match
3744
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2144 if (STRNCMP(((char_u **)ga_users.ga_data)[i], name, n) == 0)
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2145 result = 1; // partial match
3744
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2146 }
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2147 return result;
99f076ca8d84 updated for version 7.3.631
Bram Moolenaar <bram@vim.org>
parents: 3740
diff changeset
2148 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2149
17789
0f7ae8010787 patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents: 17781
diff changeset
2150 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2151 prepare_to_exit(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2152 {
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
2153 #if defined(SIGHUP) && defined(SIG_IGN)
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2154 // Ignore SIGHUP, because a dropped connection causes a read error, which
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2155 // makes Vim exit and then handling SIGHUP causes various reentrance
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2156 // problems.
36
125e80798a85 updated for version 7.0021
vimboss
parents: 24
diff changeset
2157 signal(SIGHUP, SIG_IGN);
125e80798a85 updated for version 7.0021
vimboss
parents: 24
diff changeset
2158 #endif
125e80798a85 updated for version 7.0021
vimboss
parents: 24
diff changeset
2159
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2160 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2161 if (gui.in_use)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2162 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2163 gui.dying = TRUE;
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2164 out_trash(); // trash any pending output
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2165 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2166 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2167 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2168 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2169 windgoto((int)Rows - 1, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2170
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2171 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2172 * Switch terminal mode back now, so messages end up on the "normal"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2173 * screen (if there are two screens).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2174 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2175 settmode(TMODE_COOK);
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10180
diff changeset
2176 stoptermcap();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2177 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2178 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2179 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2180
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2181 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2182 * Preserve files and exit.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2183 * When called IObuff must contain a message.
5338
965044860b7f updated for version 7.4.022
Bram Moolenaar <bram@vim.org>
parents: 5275
diff changeset
2184 * NOTE: This may be called from deathtrap() in a signal handler, avoid unsafe
965044860b7f updated for version 7.4.022
Bram Moolenaar <bram@vim.org>
parents: 5275
diff changeset
2185 * functions, such as allocating memory.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2186 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2187 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2188 preserve_exit(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2189 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2190 buf_T *buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2191
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2192 prepare_to_exit();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2193
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2194 // Setting this will prevent free() calls. That avoids calling free()
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2195 // recursively when free() was invoked with a bad pointer.
625
81fe2ccc1207 updated for version 7.0179
vimboss
parents: 613
diff changeset
2196 really_exiting = TRUE;
81fe2ccc1207 updated for version 7.0179
vimboss
parents: 613
diff changeset
2197
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2198 out_str(IObuff);
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2199 screen_start(); // don't know where cursor is now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2200 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2201
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2202 ml_close_notmod(); // close all not-modified buffers
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2203
9649
fd9727ae3c49 commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
2204 FOR_ALL_BUFFERS(buf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2205 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2206 if (buf->b_ml.ml_mfp != NULL && buf->b_ml.ml_mfp->mf_fname != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2207 {
20345
d636f5e76347 patch 8.2.0728: messages about a deadly signal are not left aligned
Bram Moolenaar <Bram@vim.org>
parents: 20277
diff changeset
2208 OUT_STR("Vim: preserving files...\r\n");
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2209 screen_start(); // don't know where cursor is now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2210 out_flush();
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2211 ml_sync_all(FALSE, FALSE); // preserve all swap files
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2212 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2213 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2214 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2215
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2216 ml_close_all(FALSE); // close all memfiles, without deleting
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2217
20345
d636f5e76347 patch 8.2.0728: messages about a deadly signal are not left aligned
Bram Moolenaar <Bram@vim.org>
parents: 20277
diff changeset
2218 OUT_STR("Vim: Finished.\r\n");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2219
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2220 getout(1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2221 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2222
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2223 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2224 * Check for CTRL-C pressed, but only once in a while.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2225 * Should be used instead of ui_breakcheck() for functions that check for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2226 * each line in the file. Calling ui_breakcheck() each time takes too much
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2227 * time, because it can be a system call.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2228 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2229
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2230 #ifndef BREAKCHECK_SKIP
17452
f12745505a23 patch 8.1.1724: too much overhead checking for CTRL-C while processing text
Bram Moolenaar <Bram@vim.org>
parents: 17018
diff changeset
2231 # define BREAKCHECK_SKIP 1000
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2232 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2233
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2234 static int breakcheck_count = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2235
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2236 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2237 line_breakcheck(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2238 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2239 if (++breakcheck_count >= BREAKCHECK_SKIP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2240 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2241 breakcheck_count = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2242 ui_breakcheck();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2243 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2244 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2245
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2246 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2247 * Like line_breakcheck() but check 10 times less often.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2248 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2249 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2250 fast_breakcheck(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2251 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2252 if (++breakcheck_count >= BREAKCHECK_SKIP * 10)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2253 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2254 breakcheck_count = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2255 ui_breakcheck();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2256 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2257 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2258
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26952
diff changeset
2259 # if defined(FEAT_SPELL) || defined(PROTO)
19728
41a1ea967a97 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C
Bram Moolenaar <Bram@vim.org>
parents: 19526
diff changeset
2260 /*
41a1ea967a97 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C
Bram Moolenaar <Bram@vim.org>
parents: 19526
diff changeset
2261 * Like line_breakcheck() but check 100 times less often.
41a1ea967a97 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C
Bram Moolenaar <Bram@vim.org>
parents: 19526
diff changeset
2262 */
41a1ea967a97 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C
Bram Moolenaar <Bram@vim.org>
parents: 19526
diff changeset
2263 void
41a1ea967a97 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C
Bram Moolenaar <Bram@vim.org>
parents: 19526
diff changeset
2264 veryfast_breakcheck(void)
41a1ea967a97 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C
Bram Moolenaar <Bram@vim.org>
parents: 19526
diff changeset
2265 {
41a1ea967a97 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C
Bram Moolenaar <Bram@vim.org>
parents: 19526
diff changeset
2266 if (++breakcheck_count >= BREAKCHECK_SKIP * 100)
41a1ea967a97 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C
Bram Moolenaar <Bram@vim.org>
parents: 19526
diff changeset
2267 {
41a1ea967a97 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C
Bram Moolenaar <Bram@vim.org>
parents: 19526
diff changeset
2268 breakcheck_count = 0;
41a1ea967a97 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C
Bram Moolenaar <Bram@vim.org>
parents: 19526
diff changeset
2269 ui_breakcheck();
41a1ea967a97 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C
Bram Moolenaar <Bram@vim.org>
parents: 19526
diff changeset
2270 }
41a1ea967a97 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C
Bram Moolenaar <Bram@vim.org>
parents: 19526
diff changeset
2271 }
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26952
diff changeset
2272 #endif
19728
41a1ea967a97 patch 8.2.0420: Vim9: cannot interrupt a loop with CTRL-C
Bram Moolenaar <Bram@vim.org>
parents: 19526
diff changeset
2273
17781
04245f071792 patch 8.1.1887: the +cmdline_compl feature is not in the tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17452
diff changeset
2274 #if defined(VIM_BACKTICK) || defined(FEAT_EVAL) \
04245f071792 patch 8.1.1887: the +cmdline_compl feature is not in the tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17452
diff changeset
2275 || (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
04245f071792 patch 8.1.1887: the +cmdline_compl feature is not in the tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17452
diff changeset
2276 || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2277
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2278 #ifndef SEEK_SET
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2279 # define SEEK_SET 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2280 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2281 #ifndef SEEK_END
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2282 # define SEEK_END 2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2283 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2284
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2285 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2286 * Get the stdout of an external command.
5808
e5f1f2ea0b4a updated for version 7.4.248
Bram Moolenaar <bram@vim.org>
parents: 5782
diff changeset
2287 * If "ret_len" is NULL replace NUL characters with NL. When "ret_len" is not
e5f1f2ea0b4a updated for version 7.4.248
Bram Moolenaar <bram@vim.org>
parents: 5782
diff changeset
2288 * NULL store the length there.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2289 * Returns an allocated string, or NULL for error.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2290 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2291 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2292 get_cmd_output(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2293 char_u *cmd,
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2294 char_u *infile, // optional input file name
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2295 int flags, // can be SHELL_SILENT
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2296 int *ret_len)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2297 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2298 char_u *tempname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2299 char_u *command;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2300 char_u *buffer = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2301 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2302 int i = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2303 FILE *fd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2304
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2305 if (check_restricted() || check_secure())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2306 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2307
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2308 // get a name for the temp file
6721
7347229a646a updated for version 7.4.684
Bram Moolenaar <bram@vim.org>
parents: 6695
diff changeset
2309 if ((tempname = vim_tempname('o', FALSE)) == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2310 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
2311 emsg(_(e_cant_get_temp_file_name));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2312 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2313 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2314
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2315 // Add the redirection stuff
24
8ff7fd162d3c updated for version 7.0016
vimboss
parents: 22
diff changeset
2316 command = make_filter_cmd(cmd, infile, tempname);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2317 if (command == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2318 goto done;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2319
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2320 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2321 * Call the shell to execute the command (errors are ignored).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2322 * Don't check timestamps here.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2323 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2324 ++no_check_timestamps;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2325 call_shell(command, SHELL_DOOUT | SHELL_EXPAND | flags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2326 --no_check_timestamps;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2327
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2328 vim_free(command);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2329
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2330 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2331 * read the names from the file into memory
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2332 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2333 # ifdef VMS
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2334 // created temporary file is not always readable as binary
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2335 fd = mch_fopen((char *)tempname, "r");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2336 # else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2337 fd = mch_fopen((char *)tempname, READBIN);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2338 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2339
28495
f285dd00704e patch 8.2.4772: old Coverity warning for not checking ftell() return value
Bram Moolenaar <Bram@vim.org>
parents: 28463
diff changeset
2340 // Not being able to seek means we can't read the file.
f285dd00704e patch 8.2.4772: old Coverity warning for not checking ftell() return value
Bram Moolenaar <Bram@vim.org>
parents: 28463
diff changeset
2341 if (fd == NULL
f285dd00704e patch 8.2.4772: old Coverity warning for not checking ftell() return value
Bram Moolenaar <Bram@vim.org>
parents: 28463
diff changeset
2342 || fseek(fd, 0L, SEEK_END) == -1
f285dd00704e patch 8.2.4772: old Coverity warning for not checking ftell() return value
Bram Moolenaar <Bram@vim.org>
parents: 28463
diff changeset
2343 || (len = ftell(fd)) == -1 // get size of temp file
f285dd00704e patch 8.2.4772: old Coverity warning for not checking ftell() return value
Bram Moolenaar <Bram@vim.org>
parents: 28463
diff changeset
2344 || fseek(fd, 0L, SEEK_SET) == -1) // back to the start
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2345 {
28497
7c4a9e20c178 patch 8.2.4773: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents: 28495
diff changeset
2346 semsg(_(e_cannot_read_from_str_2), tempname);
28495
f285dd00704e patch 8.2.4772: old Coverity warning for not checking ftell() return value
Bram Moolenaar <Bram@vim.org>
parents: 28463
diff changeset
2347 if (fd != NULL)
f285dd00704e patch 8.2.4772: old Coverity warning for not checking ftell() return value
Bram Moolenaar <Bram@vim.org>
parents: 28463
diff changeset
2348 fclose(fd);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2349 goto done;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2350 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2351
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2352 buffer = alloc(len + 1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2353 if (buffer != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2354 i = (int)fread((char *)buffer, (size_t)1, (size_t)len, fd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2355 fclose(fd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2356 mch_remove(tempname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2357 if (buffer == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2358 goto done;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2359 #ifdef VMS
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2360 len = i; // VMS doesn't give us what we asked for...
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2361 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2362 if (i != len)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2363 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
2364 semsg(_(e_cant_read_file_str), tempname);
13244
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13188
diff changeset
2365 VIM_CLEAR(buffer);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2366 }
5808
e5f1f2ea0b4a updated for version 7.4.248
Bram Moolenaar <bram@vim.org>
parents: 5782
diff changeset
2367 else if (ret_len == NULL)
5271
25f67b62afd8 updated for version 7.4b.012
Bram Moolenaar <bram@vim.org>
parents: 5104
diff changeset
2368 {
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2369 // Change NUL into SOH, otherwise the string is truncated.
5271
25f67b62afd8 updated for version 7.4b.012
Bram Moolenaar <bram@vim.org>
parents: 5104
diff changeset
2370 for (i = 0; i < len; ++i)
5275
3ddec3d25bd1 updated for version 7.4b.014
Bram Moolenaar <bram@vim.org>
parents: 5271
diff changeset
2371 if (buffer[i] == NUL)
3ddec3d25bd1 updated for version 7.4b.014
Bram Moolenaar <bram@vim.org>
parents: 5271
diff changeset
2372 buffer[i] = 1;
5271
25f67b62afd8 updated for version 7.4b.012
Bram Moolenaar <bram@vim.org>
parents: 5104
diff changeset
2373
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2374 buffer[len] = NUL; // make sure the buffer is terminated
5271
25f67b62afd8 updated for version 7.4b.012
Bram Moolenaar <bram@vim.org>
parents: 5104
diff changeset
2375 }
5808
e5f1f2ea0b4a updated for version 7.4.248
Bram Moolenaar <bram@vim.org>
parents: 5782
diff changeset
2376 else
e5f1f2ea0b4a updated for version 7.4.248
Bram Moolenaar <bram@vim.org>
parents: 5782
diff changeset
2377 *ret_len = len;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2378
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2379 done:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2380 vim_free(tempname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2381 return buffer;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2382 }
17978
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2383
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2384 # if defined(FEAT_EVAL) || defined(PROTO)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2385
18051
d1e77015f60b patch 8.1.2021: some global functions can be local to the file
Bram Moolenaar <Bram@vim.org>
parents: 17978
diff changeset
2386 static void
17978
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2387 get_cmd_output_as_rettv(
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2388 typval_T *argvars,
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2389 typval_T *rettv,
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2390 int retlist)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2391 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2392 char_u *res = NULL;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2393 char_u *p;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2394 char_u *infile = NULL;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2395 int err = FALSE;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2396 FILE *fd;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2397 list_T *list = NULL;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2398 int flags = SHELL_SILENT;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2399
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2400 rettv->v_type = VAR_STRING;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2401 rettv->vval.v_string = NULL;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2402 if (check_restricted() || check_secure())
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2403 goto errret;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2404
25338
e2be9f3c5907 patch 8.2.3206: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents: 25234
diff changeset
2405 if (in_vim9script()
e2be9f3c5907 patch 8.2.3206: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents: 25234
diff changeset
2406 && (check_for_string_arg(argvars, 0) == FAIL
25390
a6c347a0c6e3 patch 8.2.3232: system() does not work without a second argument
Bram Moolenaar <Bram@vim.org>
parents: 25384
diff changeset
2407 || check_for_opt_string_or_number_or_list_arg(argvars, 1) == FAIL))
25338
e2be9f3c5907 patch 8.2.3206: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents: 25234
diff changeset
2408 return;
e2be9f3c5907 patch 8.2.3206: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents: 25234
diff changeset
2409
17978
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2410 if (argvars[1].v_type != VAR_UNKNOWN)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2411 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2412 /*
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2413 * Write the text to a temp file, to be used for input of the shell
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2414 * command.
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2415 */
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2416 if ((infile = vim_tempname('i', TRUE)) == NULL)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2417 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
2418 emsg(_(e_cant_get_temp_file_name));
17978
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2419 goto errret;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2420 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2421
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2422 fd = mch_fopen((char *)infile, WRITEBIN);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2423 if (fd == NULL)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2424 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
2425 semsg(_(e_cant_open_file_str), infile);
17978
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2426 goto errret;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2427 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2428 if (argvars[1].v_type == VAR_NUMBER)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2429 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2430 linenr_T lnum;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2431 buf_T *buf;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2432
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2433 buf = buflist_findnr(argvars[1].vval.v_number);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2434 if (buf == NULL)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2435 {
26439
b18f3b0f317c patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26414
diff changeset
2436 semsg(_(e_buffer_nr_does_not_exist), argvars[1].vval.v_number);
17978
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2437 fclose(fd);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2438 goto errret;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2439 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2440
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2441 for (lnum = 1; lnum <= buf->b_ml.ml_line_count; lnum++)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2442 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2443 for (p = ml_get_buf(buf, lnum, FALSE); *p != NUL; ++p)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2444 if (putc(*p == '\n' ? NUL : *p, fd) == EOF)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2445 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2446 err = TRUE;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2447 break;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2448 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2449 if (putc(NL, fd) == EOF)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2450 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2451 err = TRUE;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2452 break;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2453 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2454 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2455 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2456 else if (argvars[1].v_type == VAR_LIST)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2457 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2458 if (write_list(fd, argvars[1].vval.v_list, TRUE) == FAIL)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2459 err = TRUE;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2460 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2461 else
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2462 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2463 size_t len;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2464 char_u buf[NUMBUFLEN];
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2465
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2466 p = tv_get_string_buf_chk(&argvars[1], buf);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2467 if (p == NULL)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2468 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2469 fclose(fd);
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2470 goto errret; // type error; errmsg already given
17978
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2471 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2472 len = STRLEN(p);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2473 if (len > 0 && fwrite(p, len, 1, fd) != 1)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2474 err = TRUE;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2475 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2476 if (fclose(fd) != 0)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2477 err = TRUE;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2478 if (err)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2479 {
26952
b34ddbca305c patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
2480 emsg(_(e_error_writing_temp_file));
17978
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2481 goto errret;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2482 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2483 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2484
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2485 // Omit SHELL_COOKED when invoked with ":silent". Avoids that the shell
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2486 // echoes typeahead, that messes up the display.
17978
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2487 if (!msg_silent)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2488 flags += SHELL_COOKED;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2489
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2490 if (retlist)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2491 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2492 int len;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2493 listitem_T *li;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2494 char_u *s = NULL;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2495 char_u *start;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2496 char_u *end;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2497 int i;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2498
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2499 res = get_cmd_output(tv_get_string(&argvars[0]), infile, flags, &len);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2500 if (res == NULL)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2501 goto errret;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2502
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2503 list = list_alloc();
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2504 if (list == NULL)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2505 goto errret;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2506
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2507 for (i = 0; i < len; ++i)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2508 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2509 start = res + i;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2510 while (i < len && res[i] != NL)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2511 ++i;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2512 end = res + i;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2513
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2514 s = alloc(end - start + 1);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2515 if (s == NULL)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2516 goto errret;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2517
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2518 for (p = s; start < end; ++p, ++start)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2519 *p = *start == NUL ? NL : *start;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2520 *p = NUL;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2521
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2522 li = listitem_alloc();
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2523 if (li == NULL)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2524 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2525 vim_free(s);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2526 goto errret;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2527 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2528 li->li_tv.v_type = VAR_STRING;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2529 li->li_tv.v_lock = 0;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2530 li->li_tv.vval.v_string = s;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2531 list_append(list, li);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2532 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2533
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2534 rettv_list_set(rettv, list);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2535 list = NULL;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2536 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2537 else
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2538 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2539 res = get_cmd_output(tv_get_string(&argvars[0]), infile, flags, NULL);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2540 #ifdef USE_CRNL
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2541 // translate <CR><NL> into <NL>
17978
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2542 if (res != NULL)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2543 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2544 char_u *s, *d;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2545
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2546 d = res;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2547 for (s = res; *s; ++s)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2548 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2549 if (s[0] == CAR && s[1] == NL)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2550 ++s;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2551 *d++ = *s;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2552 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2553 *d = NUL;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2554 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2555 #endif
17978
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2556 rettv->vval.v_string = res;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2557 res = NULL;
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2558 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2559
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2560 errret:
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2561 if (infile != NULL)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2562 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2563 mch_remove(infile);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2564 vim_free(infile);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2565 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2566 if (res != NULL)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2567 vim_free(res);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2568 if (list != NULL)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2569 list_free(list);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2570 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2571
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2572 /*
17978
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2573 * "system()" function
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2574 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2575 void
17978
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2576 f_system(typval_T *argvars, typval_T *rettv)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2577 {
17978
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2578 get_cmd_output_as_rettv(argvars, rettv, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2579 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2580
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2581 /*
17978
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2582 * "systemlist()" function
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2583 */
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2584 void
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2585 f_systemlist(typval_T *argvars, typval_T *rettv)
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2586 {
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2587 get_cmd_output_as_rettv(argvars, rettv, TRUE);
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2588 }
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2589 # endif // FEAT_EVAL
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2590
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2591 #endif
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2592
8f4cc259ed7a patch 8.1.1985: code for dealing with paths is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17966
diff changeset
2593 /*
2302
488be8cbe19c Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents: 2297
diff changeset
2594 * Return TRUE when need to go to Insert mode because of 'insertmode'.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2595 * Don't do this when still processing a command or a mapping.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2596 * Don't do this when inside a ":normal" command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2597 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2598 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2599 goto_im(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2600 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2601 return (p_im && stuff_empty() && typebuf_typed());
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2602 }
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2603
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2604 /*
5911
81f5a056b2a5 updated for version 7.4.297
Bram Moolenaar <bram@vim.org>
parents: 5885
diff changeset
2605 * Returns the isolated name of the shell in allocated memory:
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2606 * - Skip beyond any path. E.g., "/usr/bin/csh -f" -> "csh -f".
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2607 * - Remove any argument. E.g., "csh -f" -> "csh".
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2608 * But don't allow a space in the path, so that this works:
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2609 * "/usr/bin/csh --rcfile ~/.cshrc"
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2610 * But don't do that for Windows, it's common to have a space in the path.
22742
f7f2d73ff85e patch 8.2.1919: assert_fails() setting emsg_silent changes normal execution
Bram Moolenaar <Bram@vim.org>
parents: 22685
diff changeset
2611 * Returns NULL when out of memory.
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2612 */
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2613 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7803
diff changeset
2614 get_isolated_shell_name(void)
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2615 {
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2616 char_u *p;
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2617
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15814
diff changeset
2618 #ifdef MSWIN
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2619 p = gettail(p_sh);
20830
9064044fd4f6 patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents: 20788
diff changeset
2620 p = vim_strnsave(p, skiptowhite(p) - p);
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2621 #else
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2622 p = skiptowhite(p_sh);
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2623 if (*p == NUL)
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2624 {
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2625 // No white space, use the tail.
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2626 p = vim_strsave(gettail(p_sh));
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2627 }
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2628 else
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2629 {
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2630 char_u *p1, *p2;
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2631
18931
80b40bd5ec1a patch 8.2.0026: still some /* */ comments
Bram Moolenaar <Bram@vim.org>
parents: 18528
diff changeset
2632 // Find the last path separator before the space.
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2633 p1 = p_sh;
11127
506f5d8b7d8b patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11121
diff changeset
2634 for (p2 = p_sh; p2 < p; MB_PTR_ADV(p2))
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2635 if (vim_ispathsep(*p2))
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2636 p1 = p2 + 1;
20830
9064044fd4f6 patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents: 20788
diff changeset
2637 p = vim_strnsave(p1, p - p1);
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2638 }
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2639 #endif
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2640 return p;
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5808
diff changeset
2641 }
15814
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2642
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2643 /*
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2644 * Check if the "://" of a URL is at the pointer, return URL_SLASH.
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2645 * Also check for ":\\", which MS Internet Explorer accepts, return
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2646 * URL_BACKSLASH.
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2647 */
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2648 int
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2649 path_is_url(char_u *p)
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2650 {
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2651 if (STRNCMP(p, "://", (size_t)3) == 0)
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2652 return URL_SLASH;
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2653 else if (STRNCMP(p, ":\\\\", (size_t)3) == 0)
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2654 return URL_BACKSLASH;
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2655 return 0;
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2656 }
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2657
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2658 /*
25234
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2659 * Check if "fname" starts with "name://" or "name:\\".
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2660 * Return URL_SLASH for "name://", URL_BACKSLASH for "name:\\".
15814
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2661 * Return zero otherwise.
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2662 */
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2663 int
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2664 path_with_url(char_u *fname)
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2665 {
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2666 char_u *p;
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2667
25234
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2668 // We accept alphabetic characters and a dash in scheme part.
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2669 // RFC 3986 allows for more, but it increases the risk of matching
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2670 // non-URL text.
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2671
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2672 // first character must be alpha
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2673 if (!isalpha(*fname))
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2674 return 0;
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2675
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2676 // check body: alpha or dash
26034
9b2c6cea573c patch 8.2.3551: checking first character of url twice
Bram Moolenaar <Bram@vim.org>
parents: 25864
diff changeset
2677 for (p = fname + 1; (isalpha(*p) || (*p == '-')); ++p)
15814
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2678 ;
25234
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2679
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2680 // check last char is not a dash
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2681 if (p[-1] == '-')
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2682 return 0;
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2683
34a6db7af738 patch 8.2.3153: URLs with a dash in the scheme are not recognized
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
2684 // "://" or ":\\" must follow
15814
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2685 return path_is_url(p);
99ebf78686a9 patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents: 15699
diff changeset
2686 }
25790
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2687
26155
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2688 #if defined(FEAT_EVAL) || defined(PROTO)
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2689 /*
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2690 * Return the dictionary of v:event.
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2691 * Save and clear the value in case it already has items.
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2692 */
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2693 dict_T *
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2694 get_v_event(save_v_event_T *sve)
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2695 {
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2696 dict_T *v_event = get_vim_var_dict(VV_EVENT);
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2697
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2698 if (v_event->dv_hashtab.ht_used > 0)
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2699 {
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2700 // recursive use of v:event, save, make empty and restore later
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2701 sve->sve_did_save = TRUE;
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2702 sve->sve_hashtab = v_event->dv_hashtab;
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2703 hash_init(&v_event->dv_hashtab);
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2704 }
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2705 else
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2706 sve->sve_did_save = FALSE;
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2707 return v_event;
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2708 }
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2709
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2710 void
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2711 restore_v_event(dict_T *v_event, save_v_event_T *sve)
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2712 {
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2713 dict_free_contents(v_event);
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2714 if (sve->sve_did_save)
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2715 v_event->dv_hashtab = sve->sve_hashtab;
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2716 else
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2717 hash_init(&v_event->dv_hashtab);
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2718 }
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2719 #endif
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2720
25790
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2721 /*
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2722 * Fires a ModeChanged autocmd event if appropriate.
25790
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2723 */
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2724 void
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2725 may_trigger_modechanged()
25790
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2726 {
26155
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2727 #ifdef FEAT_EVAL
25790
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2728 dict_T *v_event;
26155
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2729 save_v_event_T save_v_event;
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2730 char_u curr_mode[MODE_MAX_LENGTH];
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2731 char_u pattern_buf[2 * MODE_MAX_LENGTH];
25790
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2732
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2733 if (!has_modechanged())
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2734 return;
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2735
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2736 get_mode(curr_mode);
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2737 if (STRCMP(curr_mode, last_mode) == 0)
26042
6b39ab99e367 patch 8.2.3555: ModeChanged is not triggered on every mode change
Bram Moolenaar <Bram@vim.org>
parents: 26034
diff changeset
2738 return;
6b39ab99e367 patch 8.2.3555: ModeChanged is not triggered on every mode change
Bram Moolenaar <Bram@vim.org>
parents: 26034
diff changeset
2739
26155
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2740 v_event = get_v_event(&save_v_event);
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2741 (void)dict_add_string(v_event, "new_mode", curr_mode);
25790
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2742 (void)dict_add_string(v_event, "old_mode", last_mode);
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2743 dict_set_items_ro(v_event);
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2744
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2745 // concatenate modes in format "old_mode:new_mode"
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2746 vim_snprintf((char *)pattern_buf, sizeof(pattern_buf), "%s:%s", last_mode,
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2747 curr_mode);
25790
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2748
28397
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2749 apply_autocmds(EVENT_MODECHANGED, pattern_buf, NULL, FALSE, curbuf);
d1702731786c patch 8.2.4723: the ModeChanged autocmd event is inefficient
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2750 STRCPY(last_mode, curr_mode);
25790
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2751
26155
f2392648af3e patch 8.2.3609: internal error when ModeChanged is triggered recursively
Bram Moolenaar <Bram@vim.org>
parents: 26042
diff changeset
2752 restore_v_event(v_event, &save_v_event);
25790
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2753 #endif
16a7d1154be8 patch 8.2.3430: no generic way to trigger an autocommand on mode change
Bram Moolenaar <Bram@vim.org>
parents: 25398
diff changeset
2754 }