Mercurial > vim
annotate src/netbeans.c @ 21828:af5db9b6d210
patch 8.2.1463: Vim9: list slice not supported yet
Commit: https://github.com/vim/vim/commit/ed5918771fcf9877d8445e74c62ab1ce6b8e28c1
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Aug 15 22:14:53 2020 +0200
patch 8.2.1463: Vim9: list slice not supported yet
Problem: Vim9: list slice not supported yet.
Solution: Add support for list slicing.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 15 Aug 2020 22:15:03 +0200 |
parents | b378f860d4ab |
children | 13f4aee01ce5 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * Netbeans integration by David Weatherford | |
5 * Adopted for Win32 by Sergey Khorev | |
6 * | |
7 * Do ":help uganda" in Vim to read copying and usage conditions. | |
8 * Do ":help credits" in Vim to see a list of people who contributed. | |
9 */ | |
10 | |
11 /* | |
12 * Implements client side of org.netbeans.modules.emacs editor | |
13 * integration protocol. Be careful! The protocol uses offsets | |
14 * which are *between* characters, whereas vim uses line number | |
15 * and column number which are *on* characters. | |
16 * See ":help netbeans-protocol" for explanation. | |
3151 | 17 * |
18 * The Netbeans messages are received and queued in the gui event loop, or in | |
19 * the select loop when Vim runs in a terminal. These messages are processed | |
20 * by netbeans_parse_messages() which is invoked in the idle loop when Vim is | |
21 * waiting for user input. The function netbeans_parse_messages() is also | |
22 * called from the ":sleep" command, to allow the execution of test cases that | |
23 * may not invoke the idle loop. | |
7 | 24 */ |
25 | |
26 #include "vim.h" | |
27 | |
28 #if defined(FEAT_NETBEANS_INTG) || defined(PROTO) | |
29 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
30 #ifndef MSWIN |
7753
15e67f90b9b2
commit https://github.com/vim/vim/commit/3e53c700a2bcbe7fafb51cd01f3e6428fd803099
Christian Brabandt <cb@256bit.org>
parents:
7743
diff
changeset
|
31 # include <netdb.h> |
7 | 32 # ifdef HAVE_LIBGEN_H |
33 # include <libgen.h> | |
34 # endif | |
35 #endif | |
36 | |
37 #include "version.h" | |
38 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
39 #define GUARDED 10000 // typenr for "guarded" annotation |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
40 #define GUARDEDOFFSET 1000000 // base for "guarded" sign id's |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
41 #define MAX_COLOR_LENGTH 32 // max length of color name in defineAnnoType |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
42 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
43 // The first implementation (working only with Netbeans) returned "1.1". The |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
44 // protocol implemented here also supports A-A-P. |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
45 static char *ExtEdProtocolVersion = "2.5"; |
7 | 46 |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
47 static long pos2off(buf_T *, pos_T *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
48 static pos_T *off2pos(buf_T *, long); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
49 static pos_T *get_off_or_lnum(buf_T *buf, char_u **argp); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
50 static long get_buf_size(buf_T *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
51 static int netbeans_keystring(char_u *keystr); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
52 static void special_keys(char_u *args); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
53 |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
54 static int getConnInfo(char *file, char **host, char **port, char **password); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
55 |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
56 static void nb_init_graphics(void); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
57 static void coloncmd(char *cmd, ...); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
58 static void nb_set_curbuf(buf_T *buf); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
59 static void nb_parse_cmd(char_u *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
60 static int nb_do_cmd(int, char_u *, int, int, char_u *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
61 static void nb_send(char *buf, char *fun); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
62 static void nb_free(void); |
7 | 63 |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
64 #define NETBEANS_OPEN (channel_can_write_to(nb_channel)) |
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
65 static channel_T *nb_channel = NULL; |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
66 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
67 static int r_cmdno; // current command number for reply |
33 | 68 static int dosetvisible = FALSE; |
69 | |
7 | 70 /* |
71 * Include the debugging code if wanted. | |
72 */ | |
73 #ifdef NBDEBUG | |
74 # include "nbdebug.c" | |
75 #endif | |
76 | |
2210 | 77 static int needupdate = 0; |
78 static int inAtomic = 0; | |
7 | 79 |
2639 | 80 /* |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
81 * Callback invoked when the channel is closed. |
2639 | 82 */ |
7 | 83 static void |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
84 nb_channel_closed(void) |
7 | 85 { |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
86 nb_channel = NULL; |
2639 | 87 } |
88 | |
89 /* | |
90 * Close the connection and cleanup. | |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
91 * May be called when the socket was closed earlier. |
2639 | 92 */ |
93 static void | |
94 netbeans_close(void) | |
95 { | |
96 if (NETBEANS_OPEN) | |
97 { | |
98 netbeans_send_disconnect(); | |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
99 if (nb_channel != NULL) |
8267
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
100 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
101 // Close the socket and remove the input handlers. |
8240
60586ce747c4
commit https://github.com/vim/vim/commit/8b374215ccd35003b95ba1df8f12e03bf8a8adc3
Christian Brabandt <cb@256bit.org>
parents:
8218
diff
changeset
|
102 channel_close(nb_channel, TRUE); |
8267
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
103 channel_clear(nb_channel); |
108d30ed34ba
commit https://github.com/vim/vim/commit/187db50d0499aecf4cfd42fb4db0a1bebf61c8cd
Christian Brabandt <cb@256bit.org>
parents:
8240
diff
changeset
|
104 } |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
105 nb_channel = NULL; |
2639 | 106 } |
107 | |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
108 #ifdef FEAT_BEVAL_GUI |
183 | 109 bevalServers &= ~BEVAL_NETBEANS; |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
110 #endif |
2210 | 111 |
112 needupdate = 0; | |
113 inAtomic = 0; | |
114 nb_free(); | |
115 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
116 // remove all signs and update the screen after gutter removal |
2210 | 117 coloncmd(":sign unplace *"); |
118 changed_window_setting(); | |
119 update_screen(CLEAR); | |
120 setcursor(); | |
2745 | 121 cursor_on(); |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
122 out_flush_cursor(TRUE, FALSE); |
7 | 123 } |
124 | |
125 #define NB_DEF_HOST "localhost" | |
126 #define NB_DEF_ADDR "3219" | |
127 #define NB_DEF_PASS "changeme" | |
128 | |
2210 | 129 static int |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
130 netbeans_connect(char *params, int doabort) |
7 | 131 { |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
132 int port; |
7 | 133 char buf[32]; |
134 char *hostname = NULL; | |
135 char *address = NULL; | |
136 char *password = NULL; | |
137 char *fname; | |
138 char *arg = NULL; | |
139 | |
2210 | 140 if (*params == '=') |
7 | 141 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
142 // "=fname": Read info from specified file. |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
143 if (getConnInfo(params + 1, &hostname, &address, &password) == FAIL) |
2210 | 144 return FAIL; |
7 | 145 } |
146 else | |
147 { | |
2210 | 148 if (*params == ':') |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
149 // ":<host>:<addr>:<password>": get info from argument |
2210 | 150 arg = params + 1; |
7 | 151 if (arg == NULL && (fname = getenv("__NETBEANS_CONINFO")) != NULL) |
152 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
153 // "": get info from file specified in environment |
7 | 154 if (getConnInfo(fname, &hostname, &address, &password) == FAIL) |
2210 | 155 return FAIL; |
7 | 156 } |
157 else | |
158 { | |
159 if (arg != NULL) | |
160 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
161 // ":<host>:<addr>:<password>": get info from argument |
7 | 162 hostname = arg; |
163 address = strchr(hostname, ':'); | |
164 if (address != NULL) | |
165 { | |
166 *address++ = '\0'; | |
167 password = strchr(address, ':'); | |
168 if (password != NULL) | |
169 *password++ = '\0'; | |
170 } | |
171 } | |
172 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
173 // Get the missing values from the environment. |
7 | 174 if (hostname == NULL || *hostname == '\0') |
175 hostname = getenv("__NETBEANS_HOST"); | |
176 if (address == NULL) | |
177 address = getenv("__NETBEANS_SOCKET"); | |
178 if (password == NULL) | |
179 password = getenv("__NETBEANS_VIM_PASSWORD"); | |
180 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
181 // Move values to allocated memory. |
7 | 182 if (hostname != NULL) |
183 hostname = (char *)vim_strsave((char_u *)hostname); | |
184 if (address != NULL) | |
185 address = (char *)vim_strsave((char_u *)address); | |
186 if (password != NULL) | |
187 password = (char *)vim_strsave((char_u *)password); | |
188 } | |
189 } | |
190 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
191 // Use the default when a value is missing. |
7 | 192 if (hostname == NULL || *hostname == '\0') |
193 { | |
194 vim_free(hostname); | |
195 hostname = (char *)vim_strsave((char_u *)NB_DEF_HOST); | |
196 } | |
197 if (address == NULL || *address == '\0') | |
198 { | |
199 vim_free(address); | |
200 address = (char *)vim_strsave((char_u *)NB_DEF_ADDR); | |
201 } | |
202 if (password == NULL || *password == '\0') | |
203 { | |
204 vim_free(password); | |
205 password = (char *)vim_strsave((char_u *)NB_DEF_PASS); | |
206 } | |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
207 if (hostname != NULL && address != NULL && password != NULL) |
7 | 208 { |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
209 port = atoi(address); |
8114
4aea0b0aa714
commit https://github.com/vim/vim/commit/81661fb86801e6d6e5194b43dfd27d73fcc016ec
Christian Brabandt <cb@256bit.org>
parents:
8041
diff
changeset
|
210 nb_channel = channel_open(hostname, port, 3000, nb_channel_closed); |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
211 if (nb_channel != NULL) |
7 | 212 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
213 // success |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
214 # ifdef FEAT_BEVAL_GUI |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
215 bevalServers |= BEVAL_NETBEANS; |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
216 # endif |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
217 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
218 // success, login |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
219 vim_snprintf(buf, sizeof(buf), "AUTH %s\n", password); |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
220 nb_send(buf, "netbeans_connect"); |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
221 |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
222 sprintf(buf, "0:version=0 \"%s\"\n", ExtEdProtocolVersion); |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
223 nb_send(buf, "externaleditor_version"); |
7 | 224 } |
225 } | |
226 | |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
227 if (nb_channel == NULL && doabort) |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
228 getout(1); |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
229 |
7 | 230 vim_free(hostname); |
231 vim_free(address); | |
232 vim_free(password); | |
2210 | 233 return NETBEANS_OPEN ? OK : FAIL; |
7 | 234 } |
235 | |
236 /* | |
237 * Obtain the NetBeans hostname, port address and password from a file. | |
238 * Return the strings in allocated memory. | |
239 * Return FAIL if the file could not be read, OK otherwise (no matter what it | |
240 * contains). | |
241 */ | |
242 static int | |
243 getConnInfo(char *file, char **host, char **port, char **auth) | |
244 { | |
245 FILE *fp; | |
246 char_u buf[BUFSIZ]; | |
247 char_u *lp; | |
3265 | 248 char_u *nlp; |
7 | 249 #ifdef UNIX |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9375
diff
changeset
|
250 stat_T st; |
7 | 251 |
252 /* | |
253 * For Unix only accept the file when it's not accessible by others. | |
254 * The open will then fail if we don't own the file. | |
255 */ | |
256 if (mch_stat(file, &st) == 0 && (st.st_mode & 0077) != 0) | |
257 { | |
1618 | 258 nbdebug(("Wrong access mode for NetBeans connection info file: \"%s\"\n", |
259 file)); | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
260 semsg(_("E668: Wrong access mode for NetBeans connection info file: \"%s\""), |
7 | 261 file); |
262 return FAIL; | |
263 } | |
264 #endif | |
265 | |
266 fp = mch_fopen(file, "r"); | |
267 if (fp == NULL) | |
268 { | |
1618 | 269 nbdebug(("Cannot open NetBeans connection info file\n")); |
7 | 270 PERROR("E660: Cannot open NetBeans connection info file"); |
271 return FAIL; | |
272 } | |
273 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
274 // Read the file. There should be one of each parameter |
7 | 275 while ((lp = (char_u *)fgets((char *)buf, BUFSIZ, fp)) != NULL) |
276 { | |
3265 | 277 if ((nlp = vim_strchr(lp, '\n')) != NULL) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
278 *nlp = 0; // strip off the trailing newline |
7 | 279 |
280 if (STRNCMP(lp, "host=", 5) == 0) | |
281 { | |
282 vim_free(*host); | |
283 *host = (char *)vim_strsave(&buf[5]); | |
284 } | |
285 else if (STRNCMP(lp, "port=", 5) == 0) | |
286 { | |
287 vim_free(*port); | |
288 *port = (char *)vim_strsave(&buf[5]); | |
289 } | |
290 else if (STRNCMP(lp, "auth=", 5) == 0) | |
291 { | |
292 vim_free(*auth); | |
293 *auth = (char *)vim_strsave(&buf[5]); | |
294 } | |
295 } | |
296 fclose(fp); | |
297 | |
298 return OK; | |
299 } | |
300 | |
301 | |
302 struct keyqueue | |
303 { | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
304 char_u *keystr; |
7 | 305 struct keyqueue *next; |
306 struct keyqueue *prev; | |
307 }; | |
308 | |
309 typedef struct keyqueue keyQ_T; | |
310 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
311 static keyQ_T keyHead; // dummy node, header for circular queue |
7 | 312 |
313 | |
314 /* | |
315 * Queue up key commands sent from netbeans. | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
316 * We store the string, because it may depend on the global mod_mask and |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
317 * :nbkey doesn't have a key number. |
7 | 318 */ |
319 static void | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
320 postpone_keycommand(char_u *keystr) |
7 | 321 { |
322 keyQ_T *node; | |
323 | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
324 node = ALLOC_ONE(keyQ_T); |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
325 if (node == NULL) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
326 return; // out of memory, drop the key |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
327 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
328 if (keyHead.next == NULL) // initialize circular queue |
7 | 329 { |
330 keyHead.next = &keyHead; | |
331 keyHead.prev = &keyHead; | |
332 } | |
333 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
334 // insert node at tail of queue |
7 | 335 node->next = &keyHead; |
336 node->prev = keyHead.prev; | |
337 keyHead.prev->next = node; | |
338 keyHead.prev = node; | |
339 | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
340 node->keystr = vim_strsave(keystr); |
7 | 341 } |
342 | |
343 /* | |
344 * Handle any queued-up NetBeans keycommands to be send. | |
345 */ | |
346 static void | |
347 handle_key_queue(void) | |
348 { | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
349 int postponed = FALSE; |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
350 |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
351 while (!postponed && keyHead.next && keyHead.next != &keyHead) |
7 | 352 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
353 // first, unlink the node |
7 | 354 keyQ_T *node = keyHead.next; |
355 keyHead.next = node->next; | |
356 node->next->prev = node->prev; | |
357 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
358 // Now, send the keycommand. This may cause it to be postponed again |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
359 // and change keyHead. |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
360 if (node->keystr != NULL) |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
361 postponed = !netbeans_keystring(node->keystr); |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
362 vim_free(node->keystr); |
7 | 363 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
364 // Finally, dispose of the node |
7 | 365 vim_free(node); |
366 } | |
367 } | |
368 | |
369 | |
370 /* | |
371 * While there's still a command in the work queue, parse and execute it. | |
372 */ | |
1618 | 373 void |
374 netbeans_parse_messages(void) | |
7 | 375 { |
9246
6ee88fa405b3
commit https://github.com/vim/vim/commit/5f1032d2a55b9417a0a6fa225e35089c98a5a419
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
376 readq_T *node; |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
377 char_u *buffer; |
7 | 378 char_u *p; |
2653 | 379 int own_node; |
7 | 380 |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
381 while (nb_channel != NULL) |
7 | 382 { |
9246
6ee88fa405b3
commit https://github.com/vim/vim/commit/5f1032d2a55b9417a0a6fa225e35089c98a5a419
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
383 node = channel_peek(nb_channel, PART_SOCK); |
6ee88fa405b3
commit https://github.com/vim/vim/commit/5f1032d2a55b9417a0a6fa225e35089c98a5a419
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
384 if (node == NULL) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
385 break; // nothing to read |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
386 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
387 // Locate the end of the first line in the first buffer. |
9246
6ee88fa405b3
commit https://github.com/vim/vim/commit/5f1032d2a55b9417a0a6fa225e35089c98a5a419
Christian Brabandt <cb@256bit.org>
parents:
9215
diff
changeset
|
388 p = channel_first_nl(node); |
7 | 389 if (p == NULL) |
390 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
391 // Command isn't complete. If there is no following buffer, |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
392 // return (wait for more). If there is another buffer following, |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
393 // prepend the text to that buffer and delete this one. |
9215
d2d44592467d
commit https://github.com/vim/vim/commit/9ed96efb3d47d46e9637da04656efff715102407
Christian Brabandt <cb@256bit.org>
parents:
9052
diff
changeset
|
394 if (channel_collapse(nb_channel, PART_SOCK, TRUE) == FAIL) |
7 | 395 return; |
9250
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
396 continue; |
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
397 } |
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
398 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
399 // There is a complete command at the start of the buffer. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
400 // Terminate it with a NUL. When no more text is following unlink |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
401 // the buffer. Do this before executing, because new buffers can |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
402 // be added while busy handling the command. |
9250
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
403 *p++ = NUL; |
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
404 if (*p == NUL) |
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
405 { |
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
406 own_node = TRUE; |
15454
1d2b5c016f17
patch 8.1.0735: cannot handle binary data
Bram Moolenaar <Bram@vim.org>
parents:
15300
diff
changeset
|
407 buffer = channel_get(nb_channel, PART_SOCK, NULL); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
408 // "node" is now invalid! |
7 | 409 } |
410 else | |
411 { | |
9250
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
412 own_node = FALSE; |
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
413 buffer = node->rq_buffer; |
7 | 414 } |
9250
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
415 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
416 // Now, parse and execute the commands. This may set nb_channel to |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
417 // NULL if the channel is closed. |
9250
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
418 nb_parse_cmd(buffer); |
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
419 |
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
420 if (own_node) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
421 // buffer finished, dispose of it |
9250
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
422 vim_free(buffer); |
9375
1f9172cbfef1
commit https://github.com/vim/vim/commit/24cf233ef9e92f947618c55d8bff423898a45c24
Christian Brabandt <cb@256bit.org>
parents:
9250
diff
changeset
|
423 else if (nb_channel != NULL) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
424 // more follows, move it to the start |
9250
d82724272c61
commit https://github.com/vim/vim/commit/5ce4a0b96ab688b1ea2481c2516e2889ff6713bf
Christian Brabandt <cb@256bit.org>
parents:
9246
diff
changeset
|
425 channel_consume(nb_channel, PART_SOCK, (int)(p - buffer)); |
7 | 426 } |
427 } | |
428 | |
429 /* | |
430 * Handle one NUL terminated command. | |
431 * | |
432 * format of a command from netbeans: | |
433 * | |
434 * 6:setTitle!84 "a.c" | |
435 * | |
436 * bufno | |
437 * colon | |
438 * cmd | |
439 * ! | |
440 * cmdno | |
441 * args | |
442 * | |
443 * for function calls, the ! is replaced by a / | |
444 */ | |
445 static void | |
446 nb_parse_cmd(char_u *cmd) | |
447 { | |
27 | 448 char *verb; |
449 char *q; | |
7 | 450 int bufno; |
451 int isfunc = -1; | |
452 | |
453 if (STRCMP(cmd, "DISCONNECT") == 0) | |
454 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
455 // We assume the server knows that we can safely exit! |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
456 // Disconnect before exiting, Motif hangs in a Select error |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
457 // message otherwise. |
2210 | 458 netbeans_close(); |
7 | 459 getout(0); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
460 // NOTREACHED |
7 | 461 } |
462 | |
8204
08d251a1c178
commit https://github.com/vim/vim/commit/eed284a16977ab81fa6da8c9562990ba498acd8c
Christian Brabandt <cb@256bit.org>
parents:
8151
diff
changeset
|
463 if (STRCMP(cmd, "DETACH") == 0) |
7 | 464 { |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
465 buf_T *buf; |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
466 |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
467 FOR_ALL_BUFFERS(buf) |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
468 buf->b_has_sign_column = FALSE; |
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
469 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
470 // The IDE is breaking the connection. |
2210 | 471 netbeans_close(); |
7 | 472 return; |
473 } | |
474 | |
27 | 475 bufno = strtol((char *)cmd, &verb, 10); |
7 | 476 |
477 if (*verb != ':') | |
478 { | |
1618 | 479 nbdebug((" missing colon: %s\n", cmd)); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
480 semsg("E627: missing colon: %s", cmd); |
7 | 481 return; |
482 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
483 ++verb; // skip colon |
7 | 484 |
485 for (q = verb; *q; q++) | |
486 { | |
487 if (*q == '!') | |
488 { | |
489 *q++ = NUL; | |
490 isfunc = 0; | |
491 break; | |
492 } | |
493 else if (*q == '/') | |
494 { | |
495 *q++ = NUL; | |
496 isfunc = 1; | |
497 break; | |
498 } | |
499 } | |
500 | |
501 if (isfunc < 0) | |
502 { | |
1618 | 503 nbdebug((" missing ! or / in: %s\n", cmd)); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
504 semsg("E628: missing ! or / in: %s", cmd); |
7 | 505 return; |
506 } | |
507 | |
944 | 508 r_cmdno = strtol(q, &q, 10); |
27 | 509 |
510 q = (char *)skipwhite((char_u *)q); | |
511 | |
944 | 512 if (nb_do_cmd(bufno, (char_u *)verb, isfunc, r_cmdno, (char_u *)q) == FAIL) |
7 | 513 { |
33 | 514 #ifdef NBDEBUG |
515 /* | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1956
diff
changeset
|
516 * This happens because the ExtEd can send a command or 2 after |
33 | 517 * doing a stopDocumentListen command. It doesn't harm anything |
518 * so I'm disabling it except for debugging. | |
519 */ | |
7 | 520 nbdebug(("nb_parse_cmd: Command error for \"%s\"\n", cmd)); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
521 emsg("E629: bad return from nb_do_cmd"); |
33 | 522 #endif |
7 | 523 } |
524 } | |
525 | |
526 struct nbbuf_struct | |
527 { | |
528 buf_T *bufp; | |
529 unsigned int fireChanges:1; | |
530 unsigned int initDone:1; | |
33 | 531 unsigned int insertDone:1; |
7 | 532 unsigned int modified:1; |
33 | 533 int nbbuf_number; |
7 | 534 char *displayname; |
535 int *signmap; | |
536 short_u signmaplen; | |
537 short_u signmapused; | |
538 }; | |
539 | |
540 typedef struct nbbuf_struct nbbuf_T; | |
541 | |
2210 | 542 static nbbuf_T *buf_list = NULL; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
543 static int buf_list_size = 0; // size of buf_list |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
544 static int buf_list_used = 0; // nr of entries in buf_list actually in use |
7 | 545 |
2210 | 546 static char **globalsignmap = NULL; |
547 static int globalsignmaplen = 0; | |
548 static int globalsignmapused = 0; | |
7 | 549 |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
550 static int mapsigntype(nbbuf_T *, int localsigntype); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
551 static void addsigntype(nbbuf_T *, int localsigntype, char_u *typeName, |
7 | 552 char_u *tooltip, char_u *glyphfile, |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
553 char_u *fg, char_u *bg); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
554 static void print_read_msg(nbbuf_T *buf); |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9375
diff
changeset
|
555 static void print_save_msg(nbbuf_T *buf, off_T nchars); |
7 | 556 |
557 static int curPCtype = -1; | |
558 | |
559 /* | |
2210 | 560 * Free netbeans resources. |
561 */ | |
562 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
563 nb_free(void) |
2210 | 564 { |
565 keyQ_T *key_node = keyHead.next; | |
566 nbbuf_T buf; | |
567 int i; | |
568 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
569 // free the netbeans buffer list |
2210 | 570 for (i = 0; i < buf_list_used; i++) |
571 { | |
572 buf = buf_list[i]; | |
573 vim_free(buf.displayname); | |
574 vim_free(buf.signmap); | |
2656 | 575 if (buf.bufp != NULL) |
2210 | 576 { |
577 buf.bufp->b_netbeans_file = FALSE; | |
578 buf.bufp->b_was_netbeans_file = FALSE; | |
579 } | |
580 } | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
581 VIM_CLEAR(buf_list); |
2210 | 582 buf_list_size = 0; |
583 buf_list_used = 0; | |
584 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
585 // free the queued key commands |
3935 | 586 while (key_node != NULL && key_node != &keyHead) |
2210 | 587 { |
588 keyQ_T *next = key_node->next; | |
589 vim_free(key_node->keystr); | |
590 vim_free(key_node); | |
591 if (next == &keyHead) | |
592 { | |
593 keyHead.next = &keyHead; | |
594 keyHead.prev = &keyHead; | |
595 break; | |
596 } | |
597 key_node = next; | |
598 } | |
599 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
600 // free the queued netbeans commands |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
601 if (nb_channel != NULL) |
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
602 channel_clear(nb_channel); |
2210 | 603 } |
604 | |
605 /* | |
7 | 606 * Get the Netbeans buffer number for the specified buffer. |
607 */ | |
608 static int | |
609 nb_getbufno(buf_T *bufp) | |
610 { | |
611 int i; | |
612 | |
613 for (i = 0; i < buf_list_used; i++) | |
614 if (buf_list[i].bufp == bufp) | |
615 return i; | |
616 return -1; | |
617 } | |
618 | |
619 /* | |
620 * Is this a NetBeans-owned buffer? | |
621 */ | |
622 int | |
623 isNetbeansBuffer(buf_T *bufp) | |
624 { | |
2210 | 625 return NETBEANS_OPEN && bufp->b_netbeans_file; |
7 | 626 } |
627 | |
628 /* | |
629 * NetBeans and Vim have different undo models. In Vim, the file isn't | |
630 * changed if changes are undone via the undo command. In NetBeans, once | |
631 * a change has been made the file is marked as modified until saved. It | |
632 * doesn't matter if the change was undone. | |
633 * | |
634 * So this function is for the corner case where Vim thinks a buffer is | |
635 * unmodified but NetBeans thinks it IS modified. | |
636 */ | |
637 int | |
638 isNetbeansModified(buf_T *bufp) | |
639 { | |
2210 | 640 if (isNetbeansBuffer(bufp)) |
33 | 641 { |
642 int bufno = nb_getbufno(bufp); | |
643 | |
644 if (bufno > 0) | |
645 return buf_list[bufno].modified; | |
646 else | |
647 return FALSE; | |
648 } | |
7 | 649 else |
650 return FALSE; | |
651 } | |
652 | |
653 /* | |
654 * Given a Netbeans buffer number, return the netbeans buffer. | |
655 * Returns NULL for 0 or a negative number. A 0 bufno means a | |
656 * non-buffer related command has been sent. | |
657 */ | |
658 static nbbuf_T * | |
659 nb_get_buf(int bufno) | |
660 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
661 // find or create a buffer with the given number |
7 | 662 int incr; |
663 | |
664 if (bufno <= 0) | |
665 return NULL; | |
666 | |
667 if (!buf_list) | |
668 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
669 // initialize |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
670 buf_list = alloc_clear(100 * sizeof(nbbuf_T)); |
7 | 671 buf_list_size = 100; |
672 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
673 if (bufno >= buf_list_used) // new |
7 | 674 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
675 if (bufno >= buf_list_size) // grow list |
7 | 676 { |
6596 | 677 nbbuf_T *t_buf_list = buf_list; |
678 | |
7 | 679 incr = bufno - buf_list_size + 90; |
680 buf_list_size += incr; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
681 buf_list = vim_realloc(buf_list, buf_list_size * sizeof(nbbuf_T)); |
6596 | 682 if (buf_list == NULL) |
683 { | |
684 vim_free(t_buf_list); | |
685 buf_list_size = 0; | |
686 return NULL; | |
687 } | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2213
diff
changeset
|
688 vim_memset(buf_list + buf_list_size - incr, 0, |
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2213
diff
changeset
|
689 incr * sizeof(nbbuf_T)); |
7 | 690 } |
691 | |
692 while (buf_list_used <= bufno) | |
693 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
694 // Default is to fire text changes. |
7 | 695 buf_list[buf_list_used].fireChanges = 1; |
696 ++buf_list_used; | |
697 } | |
698 } | |
699 | |
700 return buf_list + bufno; | |
701 } | |
702 | |
703 /* | |
704 * Return the number of buffers that are modified. | |
705 */ | |
706 static int | |
707 count_changed_buffers(void) | |
708 { | |
709 buf_T *bufp; | |
710 int n; | |
711 | |
712 n = 0; | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9624
diff
changeset
|
713 FOR_ALL_BUFFERS(bufp) |
7 | 714 if (bufp->b_changed) |
715 ++n; | |
716 return n; | |
717 } | |
718 | |
719 /* | |
720 * End the netbeans session. | |
721 */ | |
722 void | |
723 netbeans_end(void) | |
724 { | |
725 int i; | |
726 static char buf[128]; | |
727 | |
2210 | 728 if (!NETBEANS_OPEN) |
7 | 729 return; |
730 | |
731 for (i = 0; i < buf_list_used; i++) | |
732 { | |
733 if (!buf_list[i].bufp) | |
734 continue; | |
735 if (netbeansForcedQuit) | |
736 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
737 // mark as unmodified so NetBeans won't put up dialog on "killed" |
944 | 738 sprintf(buf, "%d:unmodified=%d\n", i, r_cmdno); |
7 | 739 nbdebug(("EVT: %s", buf)); |
740 nb_send(buf, "netbeans_end"); | |
741 } | |
944 | 742 sprintf(buf, "%d:killed=%d\n", i, r_cmdno); |
7 | 743 nbdebug(("EVT: %s", buf)); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
744 // nb_send(buf, "netbeans_end"); avoid "write failed" messages |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
745 nb_send(buf, NULL); |
20087
b378f860d4ab
patch 8.2.0599: Netbeans interface insufficiently tested
Bram Moolenaar <Bram@vim.org>
parents:
20007
diff
changeset
|
746 buf_list[i].bufp = NULL; |
7 | 747 } |
748 } | |
749 | |
750 /* | |
751 * Send a message to netbeans. | |
7770
42c1a4e63d12
commit https://github.com/vim/vim/commit/d04a020a8a8d7a438b091d49218c438880beb50c
Christian Brabandt <cb@256bit.org>
parents:
7753
diff
changeset
|
752 * When "fun" is NULL no error is given. |
7 | 753 */ |
754 static void | |
755 nb_send(char *buf, char *fun) | |
756 { | |
8041
c6443e78cf2d
commit https://github.com/vim/vim/commit/7707344ddec9069b495b2a5ed41f2104466fc88b
Christian Brabandt <cb@256bit.org>
parents:
7935
diff
changeset
|
757 if (nb_channel != NULL) |
9434
8f904a323b3f
commit https://github.com/vim/vim/commit/bf2cc5f36d5ffd5de445e6970602000c7869b65a
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
758 channel_send(nb_channel, PART_SOCK, (char_u *)buf, |
8f904a323b3f
commit https://github.com/vim/vim/commit/bf2cc5f36d5ffd5de445e6970602000c7869b65a
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
759 (int)STRLEN(buf), fun); |
7 | 760 } |
761 | |
762 /* | |
763 * Some input received from netbeans requires a response. This function | |
764 * handles a response with no information (except the command number). | |
765 */ | |
766 static void | |
767 nb_reply_nil(int cmdno) | |
768 { | |
769 char reply[32]; | |
770 | |
33 | 771 nbdebug(("REP %d: <none>\n", cmdno)); |
772 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
773 // Avoid printing an annoying error message. |
2639 | 774 if (!NETBEANS_OPEN) |
775 return; | |
776 | |
7 | 777 sprintf(reply, "%d\n", cmdno); |
778 nb_send(reply, "nb_reply_nil"); | |
779 } | |
780 | |
781 | |
782 /* | |
783 * Send a response with text. | |
784 * "result" must have been quoted already (using nb_quote()). | |
785 */ | |
786 static void | |
787 nb_reply_text(int cmdno, char_u *result) | |
788 { | |
789 char_u *reply; | |
790 | |
33 | 791 nbdebug(("REP %d: %s\n", cmdno, (char *)result)); |
792 | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
793 reply = alloc(STRLEN(result) + 32); |
7 | 794 sprintf((char *)reply, "%d %s\n", cmdno, (char *)result); |
795 nb_send((char *)reply, "nb_reply_text"); | |
796 | |
797 vim_free(reply); | |
798 } | |
799 | |
800 | |
801 /* | |
802 * Send a response with a number result code. | |
803 */ | |
804 static void | |
805 nb_reply_nr(int cmdno, long result) | |
806 { | |
807 char reply[32]; | |
808 | |
33 | 809 nbdebug(("REP %d: %ld\n", cmdno, result)); |
810 | |
7 | 811 sprintf(reply, "%d %ld\n", cmdno, result); |
812 nb_send(reply, "nb_reply_nr"); | |
813 } | |
814 | |
815 | |
816 /* | |
817 * Encode newline, ret, backslash, double quote for transmission to NetBeans. | |
818 */ | |
819 static char_u * | |
820 nb_quote(char_u *txt) | |
821 { | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
822 char_u *buf = alloc(2 * STRLEN(txt) + 1); |
7 | 823 char_u *p = txt; |
824 char_u *q = buf; | |
825 | |
826 if (buf == NULL) | |
827 return NULL; | |
828 for (; *p; p++) | |
829 { | |
830 switch (*p) | |
831 { | |
832 case '\"': | |
833 case '\\': | |
834 *q++ = '\\'; *q++ = *p; break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
835 // case '\t': |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
836 // *q++ = '\\'; *q++ = 't'; break; |
7 | 837 case '\n': |
838 *q++ = '\\'; *q++ = 'n'; break; | |
839 case '\r': | |
840 *q++ = '\\'; *q++ = 'r'; break; | |
841 default: | |
842 *q++ = *p; | |
843 break; | |
844 } | |
845 } | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1956
diff
changeset
|
846 *q = '\0'; |
7 | 847 |
848 return buf; | |
849 } | |
850 | |
851 | |
852 /* | |
853 * Remove top level double quotes; convert backslashed chars. | |
854 * Returns an allocated string (NULL for failure). | |
855 * If "endp" is not NULL it is set to the character after the terminating | |
856 * quote. | |
857 */ | |
858 static char * | |
859 nb_unquote(char_u *p, char_u **endp) | |
860 { | |
861 char *result = 0; | |
862 char *q; | |
863 int done = 0; | |
864 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
865 // result is never longer than input |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
866 result = alloc_clear(STRLEN(p) + 1); |
7 | 867 if (result == NULL) |
868 return NULL; | |
869 | |
870 if (*p++ != '"') | |
871 { | |
872 nbdebug(("nb_unquote called with string that doesn't start with a quote!: %s\n", | |
873 p)); | |
874 result[0] = NUL; | |
875 return result; | |
876 } | |
877 | |
878 for (q = result; !done && *p != NUL;) | |
879 { | |
880 switch (*p) | |
881 { | |
882 case '"': | |
883 /* | |
884 * Unbackslashed dquote marks the end, if first char was dquote. | |
885 */ | |
886 done = 1; | |
887 break; | |
888 | |
889 case '\\': | |
890 ++p; | |
891 switch (*p) | |
892 { | |
893 case '\\': *q++ = '\\'; break; | |
894 case 'n': *q++ = '\n'; break; | |
895 case 't': *q++ = '\t'; break; | |
896 case 'r': *q++ = '\r'; break; | |
897 case '"': *q++ = '"'; break; | |
898 case NUL: --p; break; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
899 // default: skip over illegal chars |
7 | 900 } |
901 ++p; | |
902 break; | |
903 | |
904 default: | |
905 *q++ = *p++; | |
906 } | |
907 } | |
908 | |
909 if (endp != NULL) | |
910 *endp = p; | |
911 | |
912 return result; | |
913 } | |
914 | |
1492 | 915 /* |
916 * Remove from "first" byte to "last" byte (inclusive), at line "lnum" of the | |
917 * current buffer. Remove to end of line when "last" is MAXCOL. | |
918 */ | |
919 static void | |
920 nb_partialremove(linenr_T lnum, colnr_T first, colnr_T last) | |
921 { | |
922 char_u *oldtext, *newtext; | |
923 int oldlen; | |
924 int lastbyte = last; | |
925 | |
926 oldtext = ml_get(lnum); | |
1570 | 927 oldlen = (int)STRLEN(oldtext); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
928 if (first >= (colnr_T)oldlen || oldlen == 0) // just in case |
1492 | 929 return; |
930 if (lastbyte >= oldlen) | |
931 lastbyte = oldlen - 1; | |
932 newtext = alloc(oldlen - (int)(lastbyte - first)); | |
933 if (newtext != NULL) | |
934 { | |
935 mch_memmove(newtext, oldtext, first); | |
1618 | 936 STRMOVE(newtext + first, oldtext + lastbyte + 1); |
15874
c7ba5fed403c
patch 8.1.0944: format of nbdbg() arguments is not checked
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
937 nbdebug((" NEW LINE %ld: %s\n", lnum, newtext)); |
1492 | 938 ml_replace(lnum, newtext, FALSE); |
939 } | |
940 } | |
941 | |
942 /* | |
943 * Replace the "first" line with the concatenation of the "first" and | |
944 * the "other" line. The "other" line is not removed. | |
945 */ | |
946 static void | |
947 nb_joinlines(linenr_T first, linenr_T other) | |
948 { | |
949 int len_first, len_other; | |
950 char_u *p; | |
951 | |
1570 | 952 len_first = (int)STRLEN(ml_get(first)); |
953 len_other = (int)STRLEN(ml_get(other)); | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
954 p = alloc(len_first + len_other + 1); |
1492 | 955 if (p != NULL) |
956 { | |
957 mch_memmove(p, ml_get(first), len_first); | |
958 mch_memmove(p + len_first, ml_get(other), len_other + 1); | |
959 ml_replace(first, p, FALSE); | |
960 } | |
961 } | |
962 | |
7 | 963 #define SKIP_STOP 2 |
964 #define streq(a,b) (strcmp(a,b) == 0) | |
965 | |
966 /* | |
967 * Do the actual processing of a single netbeans command or function. | |
1186 | 968 * The difference between a command and function is that a function |
969 * gets a response (it's required) but a command does not. | |
7 | 970 * For arguments see comment for nb_parse_cmd(). |
971 */ | |
972 static int | |
973 nb_do_cmd( | |
974 int bufno, | |
975 char_u *cmd, | |
976 int func, | |
977 int cmdno, | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
978 char_u *args) // points to space before arguments or NUL |
7 | 979 { |
3263 | 980 int do_update = 0; |
7 | 981 long off = 0; |
982 nbbuf_T *buf = nb_get_buf(bufno); | |
983 static int skip = 0; | |
984 int retval = OK; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
985 char *cp; // for when a char pointer is needed |
7 | 986 |
987 nbdebug(("%s %d: (%d) %s %s\n", (func) ? "FUN" : "CMD", cmdno, bufno, cmd, | |
988 STRCMP(cmd, "insert") == 0 ? "<text>" : (char *)args)); | |
989 | |
990 if (func) | |
991 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
992 // ===================================================================== |
7 | 993 if (streq((char *)cmd, "getModified")) |
994 { | |
995 if (buf == NULL || buf->bufp == NULL) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
996 // Return the number of buffers that are modified. |
7 | 997 nb_reply_nr(cmdno, (long)count_changed_buffers()); |
998 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
999 // Return whether the buffer is modified. |
7 | 1000 nb_reply_nr(cmdno, (long)(buf->bufp->b_changed |
1001 || isNetbeansModified(buf->bufp))); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1002 // ===================================================================== |
7 | 1003 } |
1004 else if (streq((char *)cmd, "saveAndExit")) | |
1005 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1006 // Note: this will exit Vim if successful. |
7 | 1007 coloncmd(":confirm qall"); |
1008 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1009 // We didn't exit: return the number of changed buffers. |
7 | 1010 nb_reply_nr(cmdno, (long)count_changed_buffers()); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1011 // ===================================================================== |
7 | 1012 } |
1013 else if (streq((char *)cmd, "getCursor")) | |
1014 { | |
1015 char_u text[200]; | |
1016 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1017 // Note: nb_getbufno() may return -1. This indicates the IDE |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1018 // didn't assign a number to the current buffer in response to a |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1019 // fileOpened event. |
7 | 1020 sprintf((char *)text, "%d %ld %d %ld", |
1021 nb_getbufno(curbuf), | |
1022 (long)curwin->w_cursor.lnum, | |
1023 (int)curwin->w_cursor.col, | |
1024 pos2off(curbuf, &curwin->w_cursor)); | |
1025 nb_reply_text(cmdno, text); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1026 // ===================================================================== |
7 | 1027 } |
1037 | 1028 else if (streq((char *)cmd, "getAnno")) |
1029 { | |
1030 long linenum = 0; | |
1031 #ifdef FEAT_SIGNS | |
1032 if (buf == NULL || buf->bufp == NULL) | |
1033 { | |
1618 | 1034 nbdebug((" Invalid buffer identifier in getAnno\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1035 emsg("E652: Invalid buffer identifier in getAnno"); |
1037 | 1036 retval = FAIL; |
1037 } | |
1038 else | |
1039 { | |
1040 int serNum; | |
1041 | |
1042 cp = (char *)args; | |
1043 serNum = strtol(cp, &cp, 10); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1044 // If the sign isn't found linenum will be zero. |
15209
3a99b2e6d136
patch 8.1.0614: placing signs can be complicated
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
1045 linenum = (long)buf_findsign(buf->bufp, serNum, NULL); |
1037 | 1046 } |
1047 #endif | |
1048 nb_reply_nr(cmdno, linenum); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1049 // ===================================================================== |
1037 | 1050 } |
7 | 1051 else if (streq((char *)cmd, "getLength")) |
1052 { | |
1053 long len = 0; | |
1054 | |
1055 if (buf == NULL || buf->bufp == NULL) | |
1056 { | |
1618 | 1057 nbdebug((" invalid buffer identifier in getLength\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1058 emsg("E632: invalid buffer identifier in getLength"); |
7 | 1059 retval = FAIL; |
1060 } | |
1061 else | |
1062 { | |
1063 len = get_buf_size(buf->bufp); | |
1064 } | |
1065 nb_reply_nr(cmdno, len); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1066 // ===================================================================== |
7 | 1067 } |
1068 else if (streq((char *)cmd, "getText")) | |
1069 { | |
1070 long len; | |
1071 linenr_T nlines; | |
1072 char_u *text = NULL; | |
1073 linenr_T lno = 1; | |
1074 char_u *p; | |
1075 char_u *line; | |
1076 | |
1077 if (buf == NULL || buf->bufp == NULL) | |
1078 { | |
1618 | 1079 nbdebug((" invalid buffer identifier in getText\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1080 emsg("E633: invalid buffer identifier in getText"); |
7 | 1081 retval = FAIL; |
1082 } | |
1083 else | |
1084 { | |
1085 len = get_buf_size(buf->bufp); | |
1086 nlines = buf->bufp->b_ml.ml_line_count; | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
1087 text = alloc((len > 0) ? ((len + nlines) * 2) : 4); |
7 | 1088 if (text == NULL) |
1089 { | |
1090 nbdebug((" nb_do_cmd: getText has null text field\n")); | |
1091 retval = FAIL; | |
1092 } | |
1093 else | |
1094 { | |
1095 p = text; | |
1096 *p++ = '\"'; | |
1097 for (; lno <= nlines ; lno++) | |
1098 { | |
1099 line = nb_quote(ml_get_buf(buf->bufp, lno, FALSE)); | |
1100 if (line != NULL) | |
1101 { | |
1102 STRCPY(p, line); | |
1103 p += STRLEN(line); | |
1104 *p++ = '\\'; | |
1105 *p++ = 'n'; | |
33 | 1106 vim_free(line); |
7 | 1107 } |
1108 } | |
1109 *p++ = '\"'; | |
1110 *p = '\0'; | |
1111 } | |
1112 } | |
1113 if (text == NULL) | |
1114 nb_reply_text(cmdno, (char_u *)""); | |
1115 else | |
1116 { | |
1117 nb_reply_text(cmdno, text); | |
1118 vim_free(text); | |
1119 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1120 // ===================================================================== |
7 | 1121 } |
1122 else if (streq((char *)cmd, "remove")) | |
1123 { | |
1124 long count; | |
1125 pos_T first, last; | |
1126 pos_T *pos; | |
1492 | 1127 pos_T *next; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1128 linenr_T del_from_lnum, del_to_lnum; // lines to be deleted as a whole |
7 | 1129 int oldFire = netbeansFireChanges; |
1130 int oldSuppress = netbeansSuppressNoLines; | |
1131 int wasChanged; | |
1132 | |
1133 if (skip >= SKIP_STOP) | |
1134 { | |
1135 nbdebug((" Skipping %s command\n", (char *) cmd)); | |
1136 nb_reply_nil(cmdno); | |
1137 return OK; | |
1138 } | |
1139 | |
1140 if (buf == NULL || buf->bufp == NULL) | |
1141 { | |
1618 | 1142 nbdebug((" invalid buffer identifier in remove\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1143 emsg("E634: invalid buffer identifier in remove"); |
7 | 1144 retval = FAIL; |
1145 } | |
1146 else | |
1147 { | |
1148 netbeansFireChanges = FALSE; | |
1149 netbeansSuppressNoLines = TRUE; | |
1150 | |
659 | 1151 nb_set_curbuf(buf->bufp); |
7 | 1152 wasChanged = buf->bufp->b_changed; |
27 | 1153 cp = (char *)args; |
1154 off = strtol(cp, &cp, 10); | |
1155 count = strtol(cp, &cp, 10); | |
1156 args = (char_u *)cp; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1157 // delete "count" chars, starting at "off" |
7 | 1158 pos = off2pos(buf->bufp, off); |
1159 if (!pos) | |
1160 { | |
1618 | 1161 nbdebug((" !bad position\n")); |
7 | 1162 nb_reply_text(cmdno, (char_u *)"!bad position"); |
1163 netbeansFireChanges = oldFire; | |
1164 netbeansSuppressNoLines = oldSuppress; | |
1165 return FAIL; | |
1166 } | |
1167 first = *pos; | |
15874
c7ba5fed403c
patch 8.1.0944: format of nbdbg() arguments is not checked
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
1168 nbdebug((" FIRST POS: line %ld, col %d\n", |
1956 | 1169 first.lnum, first.col)); |
7 | 1170 pos = off2pos(buf->bufp, off+count-1); |
1171 if (!pos) | |
1172 { | |
1618 | 1173 nbdebug((" !bad count\n")); |
7 | 1174 nb_reply_text(cmdno, (char_u *)"!bad count"); |
1175 netbeansFireChanges = oldFire; | |
1176 netbeansSuppressNoLines = oldSuppress; | |
1177 return FAIL; | |
1178 } | |
1179 last = *pos; | |
15874
c7ba5fed403c
patch 8.1.0944: format of nbdbg() arguments is not checked
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
1180 nbdebug((" LAST POS: line %ld, col %d\n", |
1956 | 1181 last.lnum, last.col)); |
1492 | 1182 del_from_lnum = first.lnum; |
1183 del_to_lnum = last.lnum; | |
3263 | 1184 do_update = 1; |
7 | 1185 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1186 // Get the position of the first byte after the deleted |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1187 // section. "next" is NULL when deleting to the end of the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1188 // file. |
1492 | 1189 next = off2pos(buf->bufp, off + count); |
1190 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1191 // Remove part of the first line. |
1956 | 1192 if (first.col != 0 |
1193 || (next != NULL && first.lnum == next->lnum)) | |
7 | 1194 { |
1492 | 1195 if (first.lnum != last.lnum |
1196 || (next != NULL && first.lnum != next->lnum)) | |
1197 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1198 // remove to the end of the first line |
1492 | 1199 nb_partialremove(first.lnum, first.col, |
1200 (colnr_T)MAXCOL); | |
1201 if (first.lnum == last.lnum) | |
1202 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1203 // Partial line to remove includes the end of |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1204 // line. Join the line with the next one, have |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1205 // the next line deleted below. |
1492 | 1206 nb_joinlines(first.lnum, next->lnum); |
1207 del_to_lnum = next->lnum; | |
1208 } | |
1209 } | |
1210 else | |
1211 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1212 // remove within one line |
1492 | 1213 nb_partialremove(first.lnum, first.col, last.col); |
1214 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1215 ++del_from_lnum; // don't delete the first line |
7 | 1216 } |
1217 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1218 // Remove part of the last line. |
1492 | 1219 if (first.lnum != last.lnum && next != NULL |
1220 && next->col != 0 && last.lnum == next->lnum) | |
1221 { | |
1222 nb_partialremove(last.lnum, 0, last.col); | |
1223 if (del_from_lnum > first.lnum) | |
1224 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1225 // Join end of last line to start of first line; last |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1226 // line is deleted below. |
1492 | 1227 nb_joinlines(first.lnum, last.lnum); |
1228 } | |
1229 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1230 // First line is deleted as a whole, keep the last |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1231 // line. |
1492 | 1232 --del_to_lnum; |
1233 } | |
1234 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1235 // First is partial line; last line to remove includes |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1236 // the end of line; join first line to line following last |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1237 // line; line following last line is deleted below. |
1492 | 1238 if (first.lnum != last.lnum && del_from_lnum > first.lnum |
1239 && next != NULL && last.lnum != next->lnum) | |
1240 { | |
1241 nb_joinlines(first.lnum, next->lnum); | |
1242 del_to_lnum = next->lnum; | |
1243 } | |
1244 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1245 // Delete whole lines if there are any. |
1492 | 1246 if (del_to_lnum >= del_from_lnum) |
7 | 1247 { |
1248 int i; | |
1249 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1250 // delete signs from the lines being deleted |
1492 | 1251 for (i = del_from_lnum; i <= del_to_lnum; i++) |
7 | 1252 { |
15300
890203d87ee5
patch 8.1.0658: deleting signs and completion for :sign is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
15209
diff
changeset
|
1253 int id = buf_findsign_id(buf->bufp, (linenr_T)i, NULL); |
7 | 1254 if (id > 0) |
1255 { | |
1956 | 1256 nbdebug((" Deleting sign %d on line %d\n", |
1257 id, i)); | |
15300
890203d87ee5
patch 8.1.0658: deleting signs and completion for :sign is insufficient
Bram Moolenaar <Bram@vim.org>
parents:
15209
diff
changeset
|
1258 buf_delsign(buf->bufp, 0, id, NULL); |
7 | 1259 } |
1260 else | |
1884 | 1261 { |
7 | 1262 nbdebug((" No sign on line %d\n", i)); |
1884 | 1263 } |
7 | 1264 } |
1265 | |
15874
c7ba5fed403c
patch 8.1.0944: format of nbdbg() arguments is not checked
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
1266 nbdebug((" Deleting lines %ld through %ld\n", |
1956 | 1267 del_from_lnum, del_to_lnum)); |
1492 | 1268 curwin->w_cursor.lnum = del_from_lnum; |
1269 curwin->w_cursor.col = 0; | |
1270 del_lines(del_to_lnum - del_from_lnum + 1, FALSE); | |
7 | 1271 } |
1492 | 1272 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1273 // Leave cursor at first deleted byte. |
1492 | 1274 curwin->w_cursor = first; |
1275 check_cursor_lnum(); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1276 buf->bufp->b_changed = wasChanged; // logically unchanged |
7 | 1277 netbeansFireChanges = oldFire; |
1278 netbeansSuppressNoLines = oldSuppress; | |
1279 | |
1280 u_blockfree(buf->bufp); | |
1281 u_clearall(buf->bufp); | |
1282 } | |
1283 nb_reply_nil(cmdno); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1284 // ===================================================================== |
7 | 1285 } |
1286 else if (streq((char *)cmd, "insert")) | |
1287 { | |
1288 char_u *to_free; | |
1289 | |
1290 if (skip >= SKIP_STOP) | |
1291 { | |
1292 nbdebug((" Skipping %s command\n", (char *) cmd)); | |
1293 nb_reply_nil(cmdno); | |
1294 return OK; | |
1295 } | |
1296 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1297 // get offset |
27 | 1298 cp = (char *)args; |
1299 off = strtol(cp, &cp, 10); | |
1300 args = (char_u *)cp; | |
7 | 1301 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1302 // get text to be inserted |
7 | 1303 args = skipwhite(args); |
1304 args = to_free = (char_u *)nb_unquote(args, NULL); | |
33 | 1305 /* |
1306 nbdebug((" CHUNK[%d]: %d bytes at offset %d\n", | |
1307 buf->bufp->b_ml.ml_line_count, STRLEN(args), off)); | |
1308 */ | |
7 | 1309 |
1310 if (buf == NULL || buf->bufp == NULL) | |
1311 { | |
1618 | 1312 nbdebug((" invalid buffer identifier in insert\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1313 emsg("E635: invalid buffer identifier in insert"); |
7 | 1314 retval = FAIL; |
1315 } | |
1316 else if (args != NULL) | |
1317 { | |
718 | 1318 int ff_detected = EOL_UNKNOWN; |
1319 int buf_was_empty = (buf->bufp->b_ml.ml_flags & ML_EMPTY); | |
1320 size_t len = 0; | |
1321 int added = 0; | |
1322 int oldFire = netbeansFireChanges; | |
1323 int old_b_changed; | |
3265 | 1324 char_u *nlp; |
718 | 1325 linenr_T lnum; |
1326 linenr_T lnum_start; | |
1327 pos_T *pos; | |
1328 | |
7 | 1329 netbeansFireChanges = 0; |
718 | 1330 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1331 // Jump to the buffer where we insert. After this "curbuf" |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1332 // can be used. |
659 | 1333 nb_set_curbuf(buf->bufp); |
717 | 1334 old_b_changed = curbuf->b_changed; |
1335 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1336 // Convert the specified character offset into a lnum/col |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1337 // position. |
717 | 1338 pos = off2pos(curbuf, off); |
1339 if (pos != NULL) | |
7 | 1340 { |
718 | 1341 if (pos->lnum <= 0) |
1342 lnum_start = 1; | |
1343 else | |
1344 lnum_start = pos->lnum; | |
7 | 1345 } |
1346 else | |
1347 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1348 // If the given position is not found, assume we want |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1349 // the end of the file. See setLocAndSize HACK. |
718 | 1350 if (buf_was_empty) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1351 lnum_start = 1; // above empty line |
718 | 1352 else |
1353 lnum_start = curbuf->b_ml.ml_line_count + 1; | |
7 | 1354 } |
718 | 1355 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1356 // "lnum" is the line where we insert: either append to it or |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1357 // insert a new line above it. |
718 | 1358 lnum = lnum_start; |
1359 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1360 // Loop over the "\n" separated lines of the argument. |
3263 | 1361 do_update = 1; |
718 | 1362 while (*args != NUL) |
33 | 1363 { |
3265 | 1364 nlp = vim_strchr(args, '\n'); |
1365 if (nlp == NULL) | |
7 | 1366 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1367 // Incomplete line, probably truncated. Next "insert" |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1368 // command should append to this one. |
718 | 1369 len = STRLEN(args); |
7 | 1370 } |
33 | 1371 else |
1372 { | |
3265 | 1373 len = nlp - args; |
718 | 1374 |
1375 /* | |
1376 * We need to detect EOL style, because the commands | |
1377 * use a character offset. | |
1378 */ | |
3265 | 1379 if (nlp > args && nlp[-1] == '\r') |
718 | 1380 { |
1381 ff_detected = EOL_DOS; | |
1382 --len; | |
1383 } | |
1384 else | |
1385 ff_detected = EOL_UNIX; | |
33 | 1386 } |
718 | 1387 args[len] = NUL; |
1388 | |
1389 if (lnum == lnum_start | |
1390 && ((pos != NULL && pos->col > 0) | |
1391 || (lnum == 1 && buf_was_empty))) | |
1392 { | |
17785
3f0fd418ac1d
patch 8.1.1889: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1393 char_u *oldline = ml_get(lnum); |
3f0fd418ac1d
patch 8.1.1889: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1394 char_u *newline; |
3f0fd418ac1d
patch 8.1.1889: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1395 int col = pos == NULL ? 0 : pos->col; |
718 | 1396 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1397 // Insert halfway a line. |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
1398 newline = alloc(STRLEN(oldline) + len + 1); |
718 | 1399 if (newline != NULL) |
1400 { | |
17785
3f0fd418ac1d
patch 8.1.1889: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1401 mch_memmove(newline, oldline, (size_t)col); |
3f0fd418ac1d
patch 8.1.1889: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1402 newline[col] = NUL; |
718 | 1403 STRCAT(newline, args); |
17785
3f0fd418ac1d
patch 8.1.1889: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1404 STRCAT(newline, oldline + col); |
718 | 1405 ml_replace(lnum, newline, FALSE); |
1406 } | |
1407 } | |
1408 else | |
1409 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1410 // Append a new line. Not that we always do this, |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1411 // also when the text doesn't end in a "\n". |
3265 | 1412 ml_append((linenr_T)(lnum - 1), args, |
1413 (colnr_T)(len + 1), FALSE); | |
718 | 1414 ++added; |
1415 } | |
1416 | |
3265 | 1417 if (nlp == NULL) |
718 | 1418 break; |
1419 ++lnum; | |
3265 | 1420 args = nlp + 1; |
33 | 1421 } |
1422 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1423 // Adjust the marks below the inserted lines. |
718 | 1424 appended_lines_mark(lnum_start - 1, (long)added); |
1425 | |
1426 /* | |
1427 * When starting with an empty buffer set the fileformat. | |
1428 * This is just guessing... | |
7 | 1429 */ |
1430 if (buf_was_empty) | |
1431 { | |
1432 if (ff_detected == EOL_UNKNOWN) | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
8204
diff
changeset
|
1433 #if defined(MSWIN) |
7 | 1434 ff_detected = EOL_DOS; |
718 | 1435 #else |
1436 ff_detected = EOL_UNIX; | |
1437 #endif | |
7 | 1438 set_fileformat(ff_detected, OPT_LOCAL); |
717 | 1439 curbuf->b_start_ffc = *curbuf->b_p_ff; |
7 | 1440 } |
1441 | |
1442 /* | |
1443 * XXX - GRP - Is the next line right? If I've inserted | |
1444 * text the buffer has been updated but not written. Will | |
1445 * netbeans guarantee to write it? Even if I do a :q! ? | |
1446 */ | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1447 curbuf->b_changed = old_b_changed; // logically unchanged |
7 | 1448 netbeansFireChanges = oldFire; |
1449 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1450 // Undo info is invalid now... |
717 | 1451 u_blockfree(curbuf); |
1452 u_clearall(curbuf); | |
7 | 1453 } |
1454 vim_free(to_free); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1455 nb_reply_nil(cmdno); // or !error |
7 | 1456 } |
1457 else | |
1458 { | |
1459 nbdebug(("UNIMPLEMENTED FUNCTION: %s\n", cmd)); | |
1460 nb_reply_nil(cmdno); | |
1461 retval = FAIL; | |
1462 } | |
1463 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1464 else // Not a function; no reply required. |
7 | 1465 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1466 // ===================================================================== |
7 | 1467 if (streq((char *)cmd, "create")) |
1468 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1469 // Create a buffer without a name. |
7 | 1470 if (buf == NULL) |
1471 { | |
1618 | 1472 nbdebug((" invalid buffer identifier in create\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1473 emsg("E636: invalid buffer identifier in create"); |
7 | 1474 return FAIL; |
1475 } | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
1476 VIM_CLEAR(buf->displayname); |
7 | 1477 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1478 netbeansReadFile = 0; // don't try to open disk file |
1743 | 1479 do_ecmd(0, NULL, 0, 0, ECMD_ONE, ECMD_HIDE + ECMD_OLDBUF, curwin); |
7 | 1480 netbeansReadFile = 1; |
1481 buf->bufp = curbuf; | |
1482 maketitle(); | |
33 | 1483 buf->insertDone = FALSE; |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1484 #if defined(FEAT_MENU) && defined(FEAT_GUI) |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1485 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1486 gui_update_menus(0); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1487 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1488 // ===================================================================== |
7 | 1489 } |
33 | 1490 else if (streq((char *)cmd, "insertDone")) |
1491 { | |
840 | 1492 if (buf == NULL || buf->bufp == NULL) |
1493 { | |
1618 | 1494 nbdebug((" invalid buffer identifier in insertDone\n")); |
840 | 1495 } |
1496 else | |
1497 { | |
1498 buf->bufp->b_start_eol = *args == 'T'; | |
1499 buf->insertDone = TRUE; | |
1500 args += 2; | |
1501 buf->bufp->b_p_ro = *args == 'T'; | |
1502 print_read_msg(buf); | |
1503 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1504 // ===================================================================== |
33 | 1505 } |
1506 else if (streq((char *)cmd, "saveDone")) | |
1507 { | |
840 | 1508 long savedChars = atol((char *)args); |
1509 | |
1510 if (buf == NULL || buf->bufp == NULL) | |
1618 | 1511 nbdebug((" invalid buffer identifier in saveDone\n")); |
840 | 1512 else |
1513 print_save_msg(buf, savedChars); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1514 // ===================================================================== |
33 | 1515 } |
7 | 1516 else if (streq((char *)cmd, "startDocumentListen")) |
1517 { | |
1518 if (buf == NULL) | |
1519 { | |
1618 | 1520 nbdebug((" invalid buffer identifier in startDocumentListen\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1521 emsg("E637: invalid buffer identifier in startDocumentListen"); |
7 | 1522 return FAIL; |
1523 } | |
1524 buf->fireChanges = 1; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1525 // ===================================================================== |
7 | 1526 } |
1527 else if (streq((char *)cmd, "stopDocumentListen")) | |
1528 { | |
1529 if (buf == NULL) | |
1530 { | |
1618 | 1531 nbdebug((" invalid buffer identifier in stopDocumentListen\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1532 emsg("E638: invalid buffer identifier in stopDocumentListen"); |
7 | 1533 return FAIL; |
1534 } | |
1535 buf->fireChanges = 0; | |
152 | 1536 if (buf->bufp != NULL && buf->bufp->b_was_netbeans_file) |
33 | 1537 { |
152 | 1538 if (!buf->bufp->b_netbeans_file) |
1618 | 1539 { |
15874
c7ba5fed403c
patch 8.1.0944: format of nbdbg() arguments is not checked
Bram Moolenaar <Bram@vim.org>
parents:
15868
diff
changeset
|
1540 nbdebug(("E658: NetBeans connection lost for buffer %d\n", buf->bufp->b_fnum)); |
15490
98c35d312987
patch 8.1.0753: printf format not checked for semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1541 semsg(_("E658: NetBeans connection lost for buffer %d"), |
7 | 1542 buf->bufp->b_fnum); |
1618 | 1543 } |
33 | 1544 else |
1545 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1546 // NetBeans uses stopDocumentListen when it stops editing |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1547 // a file. It then expects the buffer in Vim to |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1548 // disappear. |
152 | 1549 do_bufdel(DOBUF_DEL, (char_u *)"", 1, |
1550 buf->bufp->b_fnum, buf->bufp->b_fnum, TRUE); | |
20007
aadd1cae2ff5
patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents:
19888
diff
changeset
|
1551 CLEAR_POINTER(buf); |
33 | 1552 } |
1553 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1554 // ===================================================================== |
7 | 1555 } |
1556 else if (streq((char *)cmd, "setTitle")) | |
1557 { | |
1558 if (buf == NULL) | |
1559 { | |
1618 | 1560 nbdebug((" invalid buffer identifier in setTitle\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1561 emsg("E639: invalid buffer identifier in setTitle"); |
7 | 1562 return FAIL; |
1563 } | |
1564 vim_free(buf->displayname); | |
1565 buf->displayname = nb_unquote(args, NULL); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1566 // ===================================================================== |
7 | 1567 } |
1568 else if (streq((char *)cmd, "initDone")) | |
1569 { | |
1570 if (buf == NULL || buf->bufp == NULL) | |
1571 { | |
1618 | 1572 nbdebug((" invalid buffer identifier in initDone\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1573 emsg("E640: invalid buffer identifier in initDone"); |
7 | 1574 return FAIL; |
1575 } | |
3263 | 1576 do_update = 1; |
33 | 1577 buf->initDone = TRUE; |
659 | 1578 nb_set_curbuf(buf->bufp); |
7 | 1579 apply_autocmds(EVENT_BUFREADPOST, 0, 0, FALSE, buf->bufp); |
1580 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1581 // handle any postponed key commands |
7 | 1582 handle_key_queue(); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1583 // ===================================================================== |
7 | 1584 } |
1585 else if (streq((char *)cmd, "setBufferNumber") | |
1586 || streq((char *)cmd, "putBufferNumber")) | |
1587 { | |
33 | 1588 char_u *path; |
7 | 1589 buf_T *bufp; |
1590 | |
1591 if (buf == NULL) | |
1592 { | |
1618 | 1593 nbdebug((" invalid buffer identifier in setBufferNumber\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1594 emsg("E641: invalid buffer identifier in setBufferNumber"); |
7 | 1595 return FAIL; |
1596 } | |
33 | 1597 path = (char_u *)nb_unquote(args, NULL); |
1598 if (path == NULL) | |
7 | 1599 return FAIL; |
33 | 1600 bufp = buflist_findname(path); |
1601 vim_free(path); | |
7 | 1602 if (bufp == NULL) |
1603 { | |
1816 | 1604 nbdebug((" File %s not found in setBufferNumber\n", args)); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1605 semsg("E642: File %s not found in setBufferNumber", args); |
7 | 1606 return FAIL; |
1607 } | |
1608 buf->bufp = bufp; | |
33 | 1609 buf->nbbuf_number = bufp->b_fnum; |
7 | 1610 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1611 // "setBufferNumber" has the side effect of jumping to the buffer |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1612 // (don't know why!). Don't do that for "putBufferNumber". |
7 | 1613 if (*cmd != 'p') |
1614 coloncmd(":buffer %d", bufp->b_fnum); | |
1615 else | |
1616 { | |
33 | 1617 buf->initDone = TRUE; |
7 | 1618 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1619 // handle any postponed key commands |
7 | 1620 handle_key_queue(); |
1621 } | |
1622 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1623 // ===================================================================== |
7 | 1624 } |
1625 else if (streq((char *)cmd, "setFullName")) | |
1626 { | |
1627 if (buf == NULL) | |
1628 { | |
1618 | 1629 nbdebug((" invalid buffer identifier in setFullName\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1630 emsg("E643: invalid buffer identifier in setFullName"); |
7 | 1631 return FAIL; |
1632 } | |
1633 vim_free(buf->displayname); | |
1634 buf->displayname = nb_unquote(args, NULL); | |
1635 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1636 netbeansReadFile = 0; // don't try to open disk file |
7 | 1637 do_ecmd(0, (char_u *)buf->displayname, 0, 0, ECMD_ONE, |
1743 | 1638 ECMD_HIDE + ECMD_OLDBUF, curwin); |
7 | 1639 netbeansReadFile = 1; |
1640 buf->bufp = curbuf; | |
1641 maketitle(); | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1642 #if defined(FEAT_MENU) && defined(FEAT_GUI) |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1643 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1644 gui_update_menus(0); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1645 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1646 // ===================================================================== |
7 | 1647 } |
1648 else if (streq((char *)cmd, "editFile")) | |
1649 { | |
1650 if (buf == NULL) | |
1651 { | |
1618 | 1652 nbdebug((" invalid buffer identifier in editFile\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1653 emsg("E644: invalid buffer identifier in editFile"); |
7 | 1654 return FAIL; |
1655 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1656 // Edit a file: like create + setFullName + read the file. |
7 | 1657 vim_free(buf->displayname); |
1658 buf->displayname = nb_unquote(args, NULL); | |
1659 do_ecmd(0, (char_u *)buf->displayname, NULL, NULL, ECMD_ONE, | |
1743 | 1660 ECMD_HIDE + ECMD_OLDBUF, curwin); |
7 | 1661 buf->bufp = curbuf; |
33 | 1662 buf->initDone = TRUE; |
3263 | 1663 do_update = 1; |
7 | 1664 #if defined(FEAT_TITLE) |
1665 maketitle(); | |
1666 #endif | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1667 #if defined(FEAT_MENU) && defined(FEAT_GUI) |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1668 if (gui.in_use) |
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1669 gui_update_menus(0); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1670 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1671 // ===================================================================== |
7 | 1672 } |
1673 else if (streq((char *)cmd, "setVisible")) | |
1674 { | |
1675 if (buf == NULL || buf->bufp == NULL) | |
1676 { | |
1618 | 1677 nbdebug((" invalid buffer identifier in setVisible\n")); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1678 // This message was commented out, probably because it can |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1679 // happen when shutting down. |
1618 | 1680 if (p_verbose > 0) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1681 emsg("E645: invalid buffer identifier in setVisible"); |
7 | 1682 return FAIL; |
1683 } | |
33 | 1684 if (streq((char *)args, "T") && buf->bufp != curbuf) |
7 | 1685 { |
1686 exarg_T exarg; | |
1687 exarg.cmd = (char_u *)"goto"; | |
1688 exarg.forceit = FALSE; | |
33 | 1689 dosetvisible = TRUE; |
7 | 1690 goto_buffer(&exarg, DOBUF_FIRST, FORWARD, buf->bufp->b_fnum); |
3263 | 1691 do_update = 1; |
33 | 1692 dosetvisible = FALSE; |
7 | 1693 |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1694 #ifdef FEAT_GUI |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1695 // Side effect!!!. |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1696 if (gui.in_use) |
7 | 1697 gui_mch_set_foreground(); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1698 #endif |
7 | 1699 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1700 // ===================================================================== |
7 | 1701 } |
1702 else if (streq((char *)cmd, "raise")) | |
1703 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1704 #ifdef FEAT_GUI |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1705 // Bring gvim to the foreground. |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1706 if (gui.in_use) |
7 | 1707 gui_mch_set_foreground(); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1708 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1709 // ===================================================================== |
7 | 1710 } |
1711 else if (streq((char *)cmd, "setModified")) | |
1712 { | |
1600 | 1713 int prev_b_changed; |
1714 | |
7 | 1715 if (buf == NULL || buf->bufp == NULL) |
1716 { | |
1618 | 1717 nbdebug((" invalid buffer identifier in setModified\n")); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1718 // This message was commented out, probably because it can |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1719 // happen when shutting down. |
1618 | 1720 if (p_verbose > 0) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1721 emsg("E646: invalid buffer identifier in setModified"); |
7 | 1722 return FAIL; |
1723 } | |
1600 | 1724 prev_b_changed = buf->bufp->b_changed; |
7 | 1725 if (streq((char *)args, "T")) |
1600 | 1726 buf->bufp->b_changed = TRUE; |
7 | 1727 else |
1728 { | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9375
diff
changeset
|
1729 stat_T st; |
7 | 1730 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1731 // Assume NetBeans stored the file. Reset the timestamp to |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1732 // avoid "file changed" warnings. |
7 | 1733 if (buf->bufp->b_ffname != NULL |
1734 && mch_stat((char *)buf->bufp->b_ffname, &st) >= 0) | |
1735 buf_store_time(buf->bufp, &st, buf->bufp->b_ffname); | |
1600 | 1736 buf->bufp->b_changed = FALSE; |
7 | 1737 } |
1738 buf->modified = buf->bufp->b_changed; | |
1600 | 1739 if (prev_b_changed != buf->bufp->b_changed) |
1740 { | |
1741 check_status(buf->bufp); | |
1742 redraw_tabline = TRUE; | |
1743 #ifdef FEAT_TITLE | |
1744 maketitle(); | |
1745 #endif | |
1746 update_screen(0); | |
1747 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1748 // ===================================================================== |
7 | 1749 } |
33 | 1750 else if (streq((char *)cmd, "setModtime")) |
1751 { | |
840 | 1752 if (buf == NULL || buf->bufp == NULL) |
1618 | 1753 nbdebug((" invalid buffer identifier in setModtime\n")); |
840 | 1754 else |
1755 buf->bufp->b_mtime = atoi((char *)args); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1756 // ===================================================================== |
33 | 1757 } |
1758 else if (streq((char *)cmd, "setReadOnly")) | |
1759 { | |
840 | 1760 if (buf == NULL || buf->bufp == NULL) |
1618 | 1761 nbdebug((" invalid buffer identifier in setReadOnly\n")); |
840 | 1762 else if (streq((char *)args, "T")) |
33 | 1763 buf->bufp->b_p_ro = TRUE; |
1764 else | |
1765 buf->bufp->b_p_ro = FALSE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1766 // ===================================================================== |
33 | 1767 } |
7 | 1768 else if (streq((char *)cmd, "setMark")) |
1769 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1770 // not yet |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1771 // ===================================================================== |
7 | 1772 } |
1773 else if (streq((char *)cmd, "showBalloon")) | |
1774 { | |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
1775 #if defined(FEAT_BEVAL_GUI) |
7 | 1776 static char *text = NULL; |
1777 | |
1778 /* | |
1779 * Set up the Balloon Expression Evaluation area. | |
1780 * Ignore 'ballooneval' here. | |
1781 * The text pointer must remain valid for a while. | |
1782 */ | |
1783 if (balloonEval != NULL) | |
1784 { | |
1785 vim_free(text); | |
1786 text = nb_unquote(args, NULL); | |
1787 if (text != NULL) | |
1788 gui_mch_post_balloon(balloonEval, (char_u *)text); | |
1789 } | |
1790 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1791 // ===================================================================== |
7 | 1792 } |
1793 else if (streq((char *)cmd, "setDot")) | |
1794 { | |
1795 pos_T *pos; | |
1796 #ifdef NBDEBUG | |
1797 char_u *s; | |
1798 #endif | |
1799 | |
1800 if (buf == NULL || buf->bufp == NULL) | |
1801 { | |
1618 | 1802 nbdebug((" invalid buffer identifier in setDot\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1803 emsg("E647: invalid buffer identifier in setDot"); |
7 | 1804 return FAIL; |
1805 } | |
1806 | |
659 | 1807 nb_set_curbuf(buf->bufp); |
1808 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1809 // Don't want Visual mode now. |
7 | 1810 if (VIsual_active) |
1811 end_visual_mode(); | |
1812 #ifdef NBDEBUG | |
1813 s = args; | |
1814 #endif | |
1815 pos = get_off_or_lnum(buf->bufp, &args); | |
1816 if (pos) | |
1817 { | |
1818 curwin->w_cursor = *pos; | |
1819 check_cursor(); | |
1820 #ifdef FEAT_FOLDING | |
1821 foldOpenCursor(); | |
1822 #endif | |
1823 } | |
1824 else | |
1884 | 1825 { |
7 | 1826 nbdebug((" BAD POSITION in setDot: %s\n", s)); |
1884 | 1827 } |
7 | 1828 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1829 // gui_update_cursor(TRUE, FALSE); |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1830 // update_curbuf(NOT_VALID); |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1831 update_topline(); // scroll to show the line |
7 | 1832 update_screen(VALID); |
1833 setcursor(); | |
2745 | 1834 cursor_on(); |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1835 out_flush_cursor(TRUE, FALSE); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
1836 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1837 // Quit a hit-return or more prompt. |
7 | 1838 if (State == HITRETURN || State == ASKMORE) |
1839 { | |
1840 #ifdef FEAT_GUI_GTK | |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
1841 if (gui.in_use && gtk_main_level() > 0) |
7 | 1842 gtk_main_quit(); |
1843 #endif | |
1844 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1845 // ===================================================================== |
7 | 1846 } |
1847 else if (streq((char *)cmd, "close")) | |
1848 { | |
1849 #ifdef NBDEBUG | |
1850 char *name = "<NONE>"; | |
1851 #endif | |
1852 | |
1853 if (buf == NULL) | |
1854 { | |
1618 | 1855 nbdebug((" invalid buffer identifier in close\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1856 emsg("E648: invalid buffer identifier in close"); |
7 | 1857 return FAIL; |
1858 } | |
1859 | |
1860 #ifdef NBDEBUG | |
1861 if (buf->displayname != NULL) | |
1862 name = buf->displayname; | |
1863 #endif | |
1618 | 1864 if (buf->bufp == NULL) |
1865 { | |
1866 nbdebug((" invalid buffer identifier in close\n")); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1867 // This message was commented out, probably because it can |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1868 // happen when shutting down. |
1618 | 1869 if (p_verbose > 0) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1870 emsg("E649: invalid buffer identifier in close"); |
1618 | 1871 } |
7 | 1872 nbdebug((" CLOSE %d: %s\n", bufno, name)); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1873 #ifdef FEAT_GUI |
7 | 1874 need_mouse_correct = TRUE; |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1875 #endif |
7 | 1876 if (buf->bufp != NULL) |
1877 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, | |
1878 buf->bufp->b_fnum, TRUE); | |
924 | 1879 buf->bufp = NULL; |
1880 buf->initDone = FALSE; | |
3263 | 1881 do_update = 1; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1882 // ===================================================================== |
7 | 1883 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1884 else if (streq((char *)cmd, "setStyle")) // obsolete... |
7 | 1885 { |
1618 | 1886 nbdebug((" setStyle is obsolete!\n")); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1887 // ===================================================================== |
7 | 1888 } |
1889 else if (streq((char *)cmd, "setExitDelay")) | |
1890 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1891 // Only used in version 2.1. |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1892 // ===================================================================== |
7 | 1893 } |
1894 else if (streq((char *)cmd, "defineAnnoType")) | |
1895 { | |
1896 #ifdef FEAT_SIGNS | |
1897 int typeNum; | |
1898 char_u *typeName; | |
1899 char_u *tooltip; | |
1900 char_u *p; | |
1901 char_u *glyphFile; | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1902 int parse_error = FALSE; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1903 char_u *fg; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1904 char_u *bg; |
7 | 1905 |
1906 if (buf == NULL) | |
1907 { | |
1618 | 1908 nbdebug((" invalid buffer identifier in defineAnnoType\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1909 emsg("E650: invalid buffer identifier in defineAnnoType"); |
7 | 1910 return FAIL; |
1911 } | |
1912 | |
27 | 1913 cp = (char *)args; |
1914 typeNum = strtol(cp, &cp, 10); | |
1915 args = (char_u *)cp; | |
7 | 1916 args = skipwhite(args); |
1917 typeName = (char_u *)nb_unquote(args, &args); | |
1918 args = skipwhite(args + 1); | |
1919 tooltip = (char_u *)nb_unquote(args, &args); | |
1920 args = skipwhite(args + 1); | |
1921 | |
1922 p = (char_u *)nb_unquote(args, &args); | |
1923 glyphFile = vim_strsave_escaped(p, escape_chars); | |
1924 vim_free(p); | |
1925 | |
1926 args = skipwhite(args + 1); | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1927 p = skiptowhite(args); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1928 if (*p != NUL) |
7 | 1929 { |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1930 *p = NUL; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1931 p = skipwhite(p + 1); |
7 | 1932 } |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1933 fg = vim_strsave(args); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1934 bg = vim_strsave(p); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1935 if (STRLEN(fg) > MAX_COLOR_LENGTH || STRLEN(bg) > MAX_COLOR_LENGTH) |
7 | 1936 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1937 emsg("E532: highlighting color name too long in defineAnnoType"); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1938 vim_free(typeName); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1939 parse_error = TRUE; |
7 | 1940 } |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1941 else if (typeName != NULL && tooltip != NULL && glyphFile != NULL) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1942 addsigntype(buf, typeNum, typeName, tooltip, glyphFile, fg, bg); |
7 | 1943 else |
1944 vim_free(typeName); | |
1945 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1946 // don't free typeName; it's used directly in addsigntype() |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1947 vim_free(fg); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1948 vim_free(bg); |
7 | 1949 vim_free(tooltip); |
1950 vim_free(glyphFile); | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1951 if (parse_error) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
1952 return FAIL; |
7 | 1953 |
1954 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1955 // ===================================================================== |
7 | 1956 } |
1957 else if (streq((char *)cmd, "addAnno")) | |
1958 { | |
1959 #ifdef FEAT_SIGNS | |
1960 int serNum; | |
1961 int localTypeNum; | |
1962 int typeNum; | |
1963 pos_T *pos; | |
1964 | |
1965 if (buf == NULL || buf->bufp == NULL) | |
1966 { | |
1618 | 1967 nbdebug((" invalid buffer identifier in addAnno\n")); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
1968 emsg("E651: invalid buffer identifier in addAnno"); |
7 | 1969 return FAIL; |
1970 } | |
1971 | |
3263 | 1972 do_update = 1; |
7 | 1973 |
27 | 1974 cp = (char *)args; |
1975 serNum = strtol(cp, &cp, 10); | |
7 | 1976 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1977 // Get the typenr specific for this buffer and convert it to |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
1978 // the global typenumber, as used for the sign name. |
27 | 1979 localTypeNum = strtol(cp, &cp, 10); |
1980 args = (char_u *)cp; | |
7 | 1981 typeNum = mapsigntype(buf, localTypeNum); |
1982 | |
1983 pos = get_off_or_lnum(buf->bufp, &args); | |
1984 | |
27 | 1985 cp = (char *)args; |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1986 vim_ignored = (int)strtol(cp, &cp, 10); |
27 | 1987 args = (char_u *)cp; |
7 | 1988 # ifdef NBDEBUG |
14730
193471015e1a
patch 8.1.0377: xdiff doesn't use the Vim memory allocation functions
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
1989 if (vim_ignored != -1) |
1618 | 1990 nbdebug((" partial line annotation -- Not Yet Implemented!\n")); |
7 | 1991 # endif |
1992 if (serNum >= GUARDEDOFFSET) | |
1993 { | |
1618 | 1994 nbdebug((" too many annotations! ignoring...\n")); |
7 | 1995 return FAIL; |
1996 } | |
1997 if (pos) | |
1998 { | |
1816 | 1999 coloncmd(":sign place %d line=%ld name=%d buffer=%d", |
7 | 2000 serNum, pos->lnum, typeNum, buf->bufp->b_fnum); |
2001 if (typeNum == curPCtype) | |
2002 coloncmd(":sign jump %d buffer=%d", serNum, | |
2003 buf->bufp->b_fnum); | |
2004 } | |
2005 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2006 // ===================================================================== |
7 | 2007 } |
2008 else if (streq((char *)cmd, "removeAnno")) | |
2009 { | |
2010 #ifdef FEAT_SIGNS | |
2011 int serNum; | |
2012 | |
2013 if (buf == NULL || buf->bufp == NULL) | |
2014 { | |
1618 | 2015 nbdebug((" invalid buffer identifier in removeAnno\n")); |
7 | 2016 return FAIL; |
2017 } | |
3263 | 2018 do_update = 1; |
27 | 2019 cp = (char *)args; |
2020 serNum = strtol(cp, &cp, 10); | |
2021 args = (char_u *)cp; | |
7 | 2022 coloncmd(":sign unplace %d buffer=%d", |
2023 serNum, buf->bufp->b_fnum); | |
2024 redraw_buf_later(buf->bufp, NOT_VALID); | |
2025 #endif | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2026 // ===================================================================== |
7 | 2027 } |
2028 else if (streq((char *)cmd, "moveAnnoToFront")) | |
2029 { | |
2030 #ifdef FEAT_SIGNS | |
1618 | 2031 nbdebug((" moveAnnoToFront: Not Yet Implemented!\n")); |
7 | 2032 #endif |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2033 // ===================================================================== |
7 | 2034 } |
2035 else if (streq((char *)cmd, "guard") || streq((char *)cmd, "unguard")) | |
2036 { | |
2037 int len; | |
2038 pos_T first; | |
2039 pos_T last; | |
2040 pos_T *pos; | |
2041 int un = (cmd[0] == 'u'); | |
2042 static int guardId = GUARDEDOFFSET; | |
2043 | |
2044 if (skip >= SKIP_STOP) | |
2045 { | |
2046 nbdebug((" Skipping %s command\n", (char *) cmd)); | |
2047 return OK; | |
2048 } | |
2049 | |
2050 nb_init_graphics(); | |
2051 | |
2052 if (buf == NULL || buf->bufp == NULL) | |
2053 { | |
1618 | 2054 nbdebug((" invalid buffer identifier in %s command\n", cmd)); |
7 | 2055 return FAIL; |
2056 } | |
659 | 2057 nb_set_curbuf(buf->bufp); |
27 | 2058 cp = (char *)args; |
2059 off = strtol(cp, &cp, 10); | |
2060 len = strtol(cp, NULL, 10); | |
2061 args = (char_u *)cp; | |
7 | 2062 pos = off2pos(buf->bufp, off); |
3263 | 2063 do_update = 1; |
7 | 2064 if (!pos) |
2065 nbdebug((" no such start pos in %s, %ld\n", cmd, off)); | |
2066 else | |
2067 { | |
2068 first = *pos; | |
2069 pos = off2pos(buf->bufp, off + len - 1); | |
33 | 2070 if (pos != NULL && pos->col == 0) |
2071 { | |
7 | 2072 /* |
2073 * In Java Swing the offset is a position between 2 | |
2074 * characters. If col == 0 then we really want the | |
2075 * previous line as the end. | |
2076 */ | |
2077 pos = off2pos(buf->bufp, off + len - 2); | |
2078 } | |
2079 if (!pos) | |
2080 nbdebug((" no such end pos in %s, %ld\n", | |
2081 cmd, off + len - 1)); | |
2082 else | |
2083 { | |
2084 long lnum; | |
2085 last = *pos; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2086 // set highlight for region |
7 | 2087 nbdebug((" %sGUARD %ld,%d to %ld,%d\n", (un) ? "UN" : "", |
2088 first.lnum, first.col, | |
2089 last.lnum, last.col)); | |
2090 #ifdef FEAT_SIGNS | |
2091 for (lnum = first.lnum; lnum <= last.lnum; lnum++) | |
2092 { | |
2093 if (un) | |
2094 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2095 // never used |
7 | 2096 } |
2097 else | |
2098 { | |
2099 if (buf_findsigntype_id(buf->bufp, lnum, | |
2100 GUARDED) == 0) | |
2101 { | |
2102 coloncmd( | |
1816 | 2103 ":sign place %d line=%ld name=%d buffer=%d", |
7 | 2104 guardId++, lnum, GUARDED, |
2105 buf->bufp->b_fnum); | |
2106 } | |
2107 } | |
2108 } | |
2109 #endif | |
2110 redraw_buf_later(buf->bufp, NOT_VALID); | |
2111 } | |
2112 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2113 // ===================================================================== |
7 | 2114 } |
2115 else if (streq((char *)cmd, "startAtomic")) | |
2116 { | |
2117 inAtomic = 1; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2118 // ===================================================================== |
7 | 2119 } |
2120 else if (streq((char *)cmd, "endAtomic")) | |
2121 { | |
2122 inAtomic = 0; | |
2123 if (needupdate) | |
2124 { | |
3263 | 2125 do_update = 1; |
7 | 2126 needupdate = 0; |
2127 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2128 // ===================================================================== |
7 | 2129 } |
2130 else if (streq((char *)cmd, "save")) | |
2131 { | |
33 | 2132 /* |
10226
7a4fb555c83a
commit https://github.com/vim/vim/commit/9af418427652562384744648d7d173a4bfebba95
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2133 * NOTE - This command is obsolete wrt NetBeans. It's left in |
33 | 2134 * only for historical reasons. |
2135 */ | |
7 | 2136 if (buf == NULL || buf->bufp == NULL) |
2137 { | |
1618 | 2138 nbdebug((" invalid buffer identifier in %s command\n", cmd)); |
7 | 2139 return FAIL; |
2140 } | |
2141 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2142 // the following is taken from ex_cmds.c (do_wqall function) |
7 | 2143 if (bufIsChanged(buf->bufp)) |
2144 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2145 // Only write if the buffer can be written. |
7 | 2146 if (p_write |
2147 && !buf->bufp->b_p_ro | |
2148 && buf->bufp->b_ffname != NULL | |
2149 #ifdef FEAT_QUICKFIX | |
2150 && !bt_dontwrite(buf->bufp) | |
2151 #endif | |
2152 ) | |
2153 { | |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9434
diff
changeset
|
2154 bufref_T bufref; |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9434
diff
changeset
|
2155 |
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9434
diff
changeset
|
2156 set_bufref(&bufref, buf->bufp); |
7 | 2157 buf_write_all(buf->bufp, FALSE); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2158 // an autocommand may have deleted the buffer |
9487
69ed2c9d34a6
commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents:
9434
diff
changeset
|
2159 if (!bufref_valid(&bufref)) |
7 | 2160 buf->bufp = NULL; |
2161 } | |
2162 } | |
1618 | 2163 else |
2164 { | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2165 nbdebug((" Buffer has no changes!\n")); |
1618 | 2166 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2167 // ===================================================================== |
7 | 2168 } |
2169 else if (streq((char *)cmd, "netbeansBuffer")) | |
2170 { | |
2171 if (buf == NULL || buf->bufp == NULL) | |
2172 { | |
1618 | 2173 nbdebug((" invalid buffer identifier in %s command\n", cmd)); |
7 | 2174 return FAIL; |
2175 } | |
2176 if (*args == 'T') | |
2177 { | |
2178 buf->bufp->b_netbeans_file = TRUE; | |
2179 buf->bufp->b_was_netbeans_file = TRUE; | |
2180 } | |
2181 else | |
2182 buf->bufp->b_netbeans_file = FALSE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2183 // ===================================================================== |
7 | 2184 } |
33 | 2185 else if (streq((char *)cmd, "specialKeys")) |
2186 { | |
2187 special_keys(args); | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2188 // ===================================================================== |
33 | 2189 } |
2190 else if (streq((char *)cmd, "actionMenuItem")) | |
2191 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2192 // not used yet |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2193 // ===================================================================== |
33 | 2194 } |
7 | 2195 else if (streq((char *)cmd, "version")) |
2196 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2197 // not used yet |
7 | 2198 } |
1618 | 2199 else |
2200 { | |
2201 nbdebug(("Unrecognised command: %s\n", cmd)); | |
2202 } | |
7 | 2203 /* |
2204 * Unrecognized command is ignored. | |
2205 */ | |
2206 } | |
3263 | 2207 if (inAtomic && do_update) |
7 | 2208 { |
2209 needupdate = 1; | |
3263 | 2210 do_update = 0; |
7 | 2211 } |
2212 | |
33 | 2213 /* |
2214 * Is this needed? I moved the netbeans_Xt_connect() later during startup | |
10226
7a4fb555c83a
commit https://github.com/vim/vim/commit/9af418427652562384744648d7d173a4bfebba95
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2215 * and it may no longer be necessary. If it's not needed then needupdate |
3263 | 2216 * and do_update can also be removed. |
33 | 2217 */ |
3263 | 2218 if (buf != NULL && buf->initDone && do_update) |
7 | 2219 { |
2220 update_screen(NOT_VALID); | |
2221 setcursor(); | |
2745 | 2222 cursor_on(); |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
2223 out_flush_cursor(TRUE, FALSE); |
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
2224 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2225 // Quit a hit-return or more prompt. |
7 | 2226 if (State == HITRETURN || State == ASKMORE) |
2227 { | |
2228 #ifdef FEAT_GUI_GTK | |
2532
c067eb3e5904
Fix crash when using netbeans in a terminal when compiled with GUI support.
Bram Moolenaar <bram@vim.org>
parents:
2520
diff
changeset
|
2229 if (gui.in_use && gtk_main_level() > 0) |
7 | 2230 gtk_main_quit(); |
2231 #endif | |
2232 } | |
2233 } | |
2234 | |
2235 return retval; | |
2236 } | |
2237 | |
2238 | |
2239 /* | |
659 | 2240 * If "buf" is not the current buffer try changing to a window that edits this |
2241 * buffer. If there is no such window then close the current buffer and set | |
2242 * the current buffer as "buf". | |
2243 */ | |
2244 static void | |
1492 | 2245 nb_set_curbuf(buf_T *buf) |
659 | 2246 { |
6677 | 2247 if (curbuf != buf) { |
2248 if (buf_jump_open_win(buf) != NULL) | |
2249 return; | |
2250 if ((swb_flags & SWB_USETAB) && buf_jump_open_tab(buf) != NULL) | |
2251 return; | |
659 | 2252 set_curbuf(buf, DOBUF_GOTO); |
6677 | 2253 } |
659 | 2254 } |
2255 | |
2256 /* | |
7 | 2257 * Process a vim colon command. |
2258 */ | |
2259 static void | |
2260 coloncmd(char *cmd, ...) | |
2261 { | |
2262 char buf[1024]; | |
2263 va_list ap; | |
2264 | |
2265 va_start(ap, cmd); | |
11653
67cf0d45b006
patch 8.0.0709: libvterm cannot use vsnprintf()
Christian Brabandt <cb@256bit.org>
parents:
10646
diff
changeset
|
2266 vim_vsnprintf(buf, sizeof(buf), cmd, ap); |
7 | 2267 va_end(ap); |
2268 | |
2269 nbdebug((" COLONCMD %s\n", buf)); | |
2270 | |
2271 do_cmdline((char_u *)buf, NULL, NULL, DOCMD_NOWAIT | DOCMD_KEYTYPED); | |
2272 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2273 setcursor(); // restore the cursor position |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
2274 out_flush_cursor(TRUE, FALSE); |
7 | 2275 } |
2276 | |
2277 | |
2278 /* | |
33 | 2279 * Parse the specialKeys argument and issue the appropriate map commands. |
2280 */ | |
2281 static void | |
2282 special_keys(char_u *args) | |
2283 { | |
2284 char *save_str = nb_unquote(args, NULL); | |
2285 char *tok = strtok(save_str, " "); | |
2286 char *sep; | |
10646
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2287 #define KEYBUFLEN 64 |
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2288 char keybuf[KEYBUFLEN]; |
33 | 2289 char cmdbuf[256]; |
2290 | |
2291 while (tok != NULL) | |
2292 { | |
2293 int i = 0; | |
2294 | |
2295 if ((sep = strchr(tok, '-')) != NULL) | |
2296 { | |
36 | 2297 *sep = NUL; |
33 | 2298 while (*tok) |
2299 { | |
2300 switch (*tok) | |
2301 { | |
2302 case 'A': | |
2303 case 'M': | |
2304 case 'C': | |
2305 case 'S': | |
2306 keybuf[i++] = *tok; | |
2307 keybuf[i++] = '-'; | |
2308 break; | |
2309 } | |
2310 tok++; | |
2311 } | |
2312 tok++; | |
2313 } | |
2314 | |
10646
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2315 if (strlen(tok) + i < KEYBUFLEN) |
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2316 { |
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2317 strcpy(&keybuf[i], tok); |
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2318 vim_snprintf(cmdbuf, sizeof(cmdbuf), |
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2319 "<silent><%s> :nbkey %s<CR>", keybuf, keybuf); |
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2320 do_map(0, (char_u *)cmdbuf, NORMAL, FALSE); |
8cff35d5f5dc
patch 8.0.0213: Netbeans specialKeys command does not check argument length
Christian Brabandt <cb@256bit.org>
parents:
10226
diff
changeset
|
2321 } |
33 | 2322 tok = strtok(NULL, " "); |
2323 } | |
2324 vim_free(save_str); | |
2325 } | |
2326 | |
2210 | 2327 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2328 ex_nbclose(exarg_T *eap UNUSED) |
2210 | 2329 { |
2330 netbeans_close(); | |
2331 } | |
33 | 2332 |
2333 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2334 ex_nbkey(exarg_T *eap) |
33 | 2335 { |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2336 (void)netbeans_keystring(eap->arg); |
33 | 2337 } |
2338 | |
2210 | 2339 void |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2340 ex_nbstart( |
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2341 exarg_T *eap) |
2210 | 2342 { |
2595 | 2343 #ifdef FEAT_GUI |
2344 # if !defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) \ | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2345 && !defined(FEAT_GUI_MSWIN) |
2595 | 2346 if (gui.in_use) |
2347 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
2348 emsg(_("E838: netbeans is not supported with this GUI")); |
2639 | 2349 return; |
2595 | 2350 } |
2351 # endif | |
2352 #endif | |
2210 | 2353 netbeans_open((char *)eap->arg, FALSE); |
2354 } | |
33 | 2355 |
2356 /* | |
7 | 2357 * Initialize highlights and signs for use by netbeans (mostly obsolete) |
2358 */ | |
2359 static void | |
2360 nb_init_graphics(void) | |
2361 { | |
2362 static int did_init = FALSE; | |
2363 | |
2364 if (!did_init) | |
2365 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2366 coloncmd(":highlight NBGuarded guibg=Cyan guifg=Black" |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2367 " ctermbg=LightCyan ctermfg=Black"); |
7 | 2368 coloncmd(":sign define %d linehl=NBGuarded", GUARDED); |
2369 | |
2370 did_init = TRUE; | |
2371 } | |
2372 } | |
2373 | |
2374 /* | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2375 * Convert key to netbeans name. This uses the global "mod_mask". |
7 | 2376 */ |
2377 static void | |
2378 netbeans_keyname(int key, char *buf) | |
2379 { | |
2380 char *name = 0; | |
2381 char namebuf[2]; | |
2382 int ctrl = 0; | |
2383 int shift = 0; | |
2384 int alt = 0; | |
2385 | |
2386 if (mod_mask & MOD_MASK_CTRL) | |
2387 ctrl = 1; | |
2388 if (mod_mask & MOD_MASK_SHIFT) | |
2389 shift = 1; | |
2390 if (mod_mask & MOD_MASK_ALT) | |
2391 alt = 1; | |
2392 | |
2393 | |
2394 switch (key) | |
2395 { | |
2396 case K_F1: name = "F1"; break; | |
2397 case K_S_F1: name = "F1"; shift = 1; break; | |
2398 case K_F2: name = "F2"; break; | |
2399 case K_S_F2: name = "F2"; shift = 1; break; | |
2400 case K_F3: name = "F3"; break; | |
2401 case K_S_F3: name = "F3"; shift = 1; break; | |
2402 case K_F4: name = "F4"; break; | |
2403 case K_S_F4: name = "F4"; shift = 1; break; | |
2404 case K_F5: name = "F5"; break; | |
2405 case K_S_F5: name = "F5"; shift = 1; break; | |
2406 case K_F6: name = "F6"; break; | |
2407 case K_S_F6: name = "F6"; shift = 1; break; | |
2408 case K_F7: name = "F7"; break; | |
2409 case K_S_F7: name = "F7"; shift = 1; break; | |
2410 case K_F8: name = "F8"; break; | |
2411 case K_S_F8: name = "F8"; shift = 1; break; | |
2412 case K_F9: name = "F9"; break; | |
2413 case K_S_F9: name = "F9"; shift = 1; break; | |
2414 case K_F10: name = "F10"; break; | |
2415 case K_S_F10: name = "F10"; shift = 1; break; | |
2416 case K_F11: name = "F11"; break; | |
2417 case K_S_F11: name = "F11"; shift = 1; break; | |
2418 case K_F12: name = "F12"; break; | |
2419 case K_S_F12: name = "F12"; shift = 1; break; | |
2420 default: | |
2421 if (key >= ' ' && key <= '~') | |
2422 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2423 // Allow ASCII characters. |
7 | 2424 name = namebuf; |
2425 namebuf[0] = key; | |
2426 namebuf[1] = NUL; | |
2427 } | |
2428 else | |
2429 name = "X"; | |
2430 break; | |
2431 } | |
2432 | |
2433 buf[0] = '\0'; | |
2434 if (ctrl) | |
2435 strcat(buf, "C"); | |
2436 if (shift) | |
2437 strcat(buf, "S"); | |
2438 if (alt) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2439 strcat(buf, "M"); // META |
7 | 2440 if (ctrl || shift || alt) |
2441 strcat(buf, "-"); | |
2442 strcat(buf, name); | |
2443 } | |
2444 | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2445 #if defined(FEAT_BEVAL) || defined(PROTO) |
7 | 2446 /* |
2447 * Function to be called for balloon evaluation. Grabs the text under the | |
2448 * cursor and sends it to the debugger for evaluation. The debugger should | |
2449 * respond with a showBalloon command when there is a useful result. | |
2450 */ | |
183 | 2451 void |
7 | 2452 netbeans_beval_cb( |
2453 BalloonEval *beval, | |
1884 | 2454 int state UNUSED) |
7 | 2455 { |
183 | 2456 win_T *wp; |
7 | 2457 char_u *text; |
183 | 2458 linenr_T lnum; |
7 | 2459 int col; |
2770 | 2460 char *buf; |
7 | 2461 char_u *p; |
2462 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2463 // Don't do anything when 'ballooneval' is off, messages scrolled the |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2464 // windows up or we have no connection. |
12871
1a450ce6980c
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Christian Brabandt <cb@256bit.org>
parents:
12513
diff
changeset
|
2465 if (!can_use_beval() || !NETBEANS_OPEN) |
7 | 2466 return; |
2467 | |
183 | 2468 if (get_beval_info(beval, TRUE, &wp, &lnum, &text, &col) == OK) |
7 | 2469 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2470 // Send debugger request. Only when the text is of reasonable |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2471 // length. |
7 | 2472 if (text != NULL && text[0] != NUL && STRLEN(text) < MAXPATHL) |
2473 { | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
2474 buf = alloc(MAXPATHL * 2 + 25); |
2770 | 2475 if (buf != NULL) |
33 | 2476 { |
2770 | 2477 p = nb_quote(text); |
2478 if (p != NULL) | |
2479 { | |
2480 vim_snprintf(buf, MAXPATHL * 2 + 25, | |
2481 "0:balloonText=%d \"%s\"\n", r_cmdno, p); | |
2482 vim_free(p); | |
2483 } | |
2484 nbdebug(("EVT: %s", buf)); | |
2485 nb_send(buf, "netbeans_beval_cb"); | |
2486 vim_free(buf); | |
33 | 2487 } |
7 | 2488 } |
2489 vim_free(text); | |
2490 } | |
2491 } | |
2492 #endif | |
2493 | |
2494 /* | |
7743
6069f43cea4e
commit https://github.com/vim/vim/commit/e0874f8cbcddfcf9965a85ba35199964efb1d01a
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
2495 * Return TRUE when the netbeans connection is active. |
2210 | 2496 */ |
2497 int | |
2498 netbeans_active(void) | |
2499 { | |
2500 return NETBEANS_OPEN; | |
2501 } | |
2502 | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2503 /* |
7 | 2504 * Tell netbeans that the window was opened, ready for commands. |
2505 */ | |
2506 void | |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
2507 netbeans_open(char *params, int doabort) |
7 | 2508 { |
2509 char *cmd = "0:startupDone=0\n"; | |
2510 | |
2210 | 2511 if (NETBEANS_OPEN) |
2512 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
2513 emsg(_("E511: netbeans already connected")); |
7 | 2514 return; |
2210 | 2515 } |
2516 | |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2241
diff
changeset
|
2517 if (netbeans_connect(params, doabort) != OK) |
7 | 2518 return; |
183 | 2519 |
7 | 2520 nbdebug(("EVT: %s", cmd)); |
2521 nb_send(cmd, "netbeans_startup_done"); | |
2210 | 2522 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2523 // update the screen after having added the gutter |
2210 | 2524 changed_window_setting(); |
2525 update_screen(CLEAR); | |
2526 setcursor(); | |
2745 | 2527 cursor_on(); |
13150
808625d4b71b
patch 8.0.1449: slow redrawing with DirectX
Christian Brabandt <cb@256bit.org>
parents:
12871
diff
changeset
|
2528 out_flush_cursor(TRUE, FALSE); |
7 | 2529 } |
2530 | |
33 | 2531 /* |
2532 * Tell netbeans that we're exiting. This should be called right | |
2533 * before calling exit. | |
2534 */ | |
2535 void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2536 netbeans_send_disconnect(void) |
33 | 2537 { |
2538 char buf[128]; | |
2539 | |
2210 | 2540 if (NETBEANS_OPEN) |
33 | 2541 { |
944 | 2542 sprintf(buf, "0:disconnect=%d\n", r_cmdno); |
33 | 2543 nbdebug(("EVT: %s", buf)); |
2544 nb_send(buf, "netbeans_disconnect"); | |
2545 } | |
2546 } | |
2547 | |
9052
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2548 #if defined(FEAT_EVAL) || defined(PROTO) |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2549 int |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2550 set_ref_in_nb_channel(int copyID) |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2551 { |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2552 int abort = FALSE; |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2553 typval_T tv; |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2554 |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2555 if (nb_channel != NULL) |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2556 { |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2557 tv.v_type = VAR_CHANNEL; |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2558 tv.vval.v_channel = nb_channel; |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2559 abort = set_ref_in_item(&tv, copyID, NULL, NULL); |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2560 } |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2561 return abort; |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2562 } |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2563 #endif |
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
8267
diff
changeset
|
2564 |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2565 #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_MSWIN) || defined(PROTO) |
7 | 2566 /* |
2567 * Tell netbeans that the window was moved or resized. | |
2568 */ | |
2569 void | |
2570 netbeans_frame_moved(int new_x, int new_y) | |
2571 { | |
2572 char buf[128]; | |
2573 | |
2210 | 2574 if (!NETBEANS_OPEN) |
7 | 2575 return; |
2576 | |
2577 sprintf(buf, "0:geometry=%d %d %d %d %d\n", | |
944 | 2578 r_cmdno, (int)Columns, (int)Rows, new_x, new_y); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2579 // nbdebug(("EVT: %s", buf)); happens too many times during a move |
7 | 2580 nb_send(buf, "netbeans_frame_moved"); |
2581 } | |
2582 #endif | |
2583 | |
2584 /* | |
33 | 2585 * Tell netbeans the user opened or activated a file. |
2586 */ | |
2587 void | |
2588 netbeans_file_activated(buf_T *bufp) | |
2589 { | |
2590 int bufno = nb_getbufno(bufp); | |
2591 nbbuf_T *bp = nb_get_buf(bufno); | |
2592 char buffer[2*MAXPATHL]; | |
2593 char_u *q; | |
2594 | |
2210 | 2595 if (!NETBEANS_OPEN || !bufp->b_netbeans_file || dosetvisible) |
33 | 2596 return; |
2597 | |
2598 q = nb_quote(bufp->b_ffname); | |
840 | 2599 if (q == NULL || bp == NULL) |
33 | 2600 return; |
2601 | |
272 | 2602 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n", |
33 | 2603 bufno, |
2604 bufno, | |
2605 (char *)q, | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2606 "T", // open in NetBeans |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2607 "F"); // modified |
33 | 2608 |
2609 vim_free(q); | |
2610 nbdebug(("EVT: %s", buffer)); | |
2611 | |
2612 nb_send(buffer, "netbeans_file_opened"); | |
2613 } | |
2614 | |
2615 /* | |
7 | 2616 * Tell netbeans the user opened a file. |
2617 */ | |
2618 void | |
33 | 2619 netbeans_file_opened(buf_T *bufp) |
7 | 2620 { |
33 | 2621 int bufno = nb_getbufno(bufp); |
7 | 2622 char buffer[2*MAXPATHL]; |
2623 char_u *q; | |
33 | 2624 nbbuf_T *bp = nb_get_buf(nb_getbufno(bufp)); |
2625 int bnum; | |
7 | 2626 |
2210 | 2627 if (!NETBEANS_OPEN) |
7 | 2628 return; |
2629 | |
33 | 2630 q = nb_quote(bufp->b_ffname); |
7 | 2631 if (q == NULL) |
2632 return; | |
33 | 2633 if (bp != NULL) |
2634 bnum = bufno; | |
2635 else | |
2636 bnum = 0; | |
2637 | |
272 | 2638 vim_snprintf(buffer, sizeof(buffer), "%d:fileOpened=%d \"%s\" %s %s\n", |
33 | 2639 bnum, |
7 | 2640 0, |
2641 (char *)q, | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2642 "T", // open in NetBeans |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2643 "F"); // modified |
7 | 2644 |
2645 vim_free(q); | |
2646 nbdebug(("EVT: %s", buffer)); | |
2647 | |
2648 nb_send(buffer, "netbeans_file_opened"); | |
13170
6559e98f3e74
patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents:
13150
diff
changeset
|
2649 if (p_acd && vim_chdirfile(bufp->b_ffname, "auto") == OK) |
7 | 2650 shorten_fnames(TRUE); |
2651 } | |
2652 | |
2653 /* | |
1781 | 2654 * Tell netbeans that a file was deleted or wiped out. |
7 | 2655 */ |
2656 void | |
1781 | 2657 netbeans_file_killed(buf_T *bufp) |
7 | 2658 { |
2659 int bufno = nb_getbufno(bufp); | |
2660 nbbuf_T *nbbuf = nb_get_buf(bufno); | |
2661 char buffer[2*MAXPATHL]; | |
2662 | |
2210 | 2663 if (!NETBEANS_OPEN || bufno == -1) |
7 | 2664 return; |
1781 | 2665 |
2666 nbdebug(("netbeans_file_killed:\n")); | |
2667 nbdebug((" Killing bufno: %d", bufno)); | |
7 | 2668 |
944 | 2669 sprintf(buffer, "%d:killed=%d\n", bufno, r_cmdno); |
7 | 2670 |
2671 nbdebug(("EVT: %s", buffer)); | |
2672 | |
1781 | 2673 nb_send(buffer, "netbeans_file_killed"); |
7 | 2674 |
2675 if (nbbuf != NULL) | |
2676 nbbuf->bufp = NULL; | |
2677 } | |
2678 | |
2679 /* | |
2680 * Get a pointer to the Netbeans buffer for Vim buffer "bufp". | |
2681 * Return NULL if there is no such buffer or changes are not to be reported. | |
2682 * Otherwise store the buffer number in "*bufnop". | |
2683 */ | |
2684 static nbbuf_T * | |
2685 nb_bufp2nbbuf_fire(buf_T *bufp, int *bufnop) | |
2686 { | |
2687 int bufno; | |
2688 nbbuf_T *nbbuf; | |
2689 | |
2210 | 2690 if (!NETBEANS_OPEN || !netbeansFireChanges) |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2691 return NULL; // changes are not reported at all |
7 | 2692 |
2693 bufno = nb_getbufno(bufp); | |
2694 if (bufno <= 0) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2695 return NULL; // file is not known to NetBeans |
7 | 2696 |
2697 nbbuf = nb_get_buf(bufno); | |
2698 if (nbbuf != NULL && !nbbuf->fireChanges) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2699 return NULL; // changes in this buffer are not reported |
7 | 2700 |
2701 *bufnop = bufno; | |
2702 return nbbuf; | |
2703 } | |
2704 | |
2705 /* | |
2706 * Tell netbeans the user inserted some text. | |
2707 */ | |
2708 void | |
2709 netbeans_inserted( | |
2710 buf_T *bufp, | |
2711 linenr_T linenr, | |
2712 colnr_T col, | |
2713 char_u *txt, | |
2714 int newlen) | |
2715 { | |
2716 char_u *buf; | |
2717 int bufno; | |
2718 nbbuf_T *nbbuf; | |
2719 pos_T pos; | |
2720 long off; | |
2721 char_u *p; | |
2722 char_u *newtxt; | |
2723 | |
2210 | 2724 if (!NETBEANS_OPEN) |
2725 return; | |
2726 | |
7 | 2727 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno); |
2728 if (nbbuf == NULL) | |
2729 return; | |
2730 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2731 // Don't mark as modified for initial read |
33 | 2732 if (nbbuf->insertDone) |
2733 nbbuf->modified = 1; | |
7 | 2734 |
2735 pos.lnum = linenr; | |
2736 pos.col = col; | |
2737 off = pos2off(bufp, &pos); | |
2738 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2739 // send the "insert" EVT |
7 | 2740 newtxt = alloc(newlen + 1); |
416 | 2741 vim_strncpy(newtxt, txt, newlen); |
7 | 2742 p = nb_quote(newtxt); |
2743 if (p != NULL) | |
2744 { | |
33 | 2745 buf = alloc(128 + 2*newlen); |
944 | 2746 sprintf((char *)buf, "%d:insert=%d %ld \"%s\"\n", |
2747 bufno, r_cmdno, off, p); | |
7 | 2748 nbdebug(("EVT: %s", buf)); |
2749 nb_send((char *)buf, "netbeans_inserted"); | |
33 | 2750 vim_free(p); |
2751 vim_free(buf); | |
7 | 2752 } |
2753 vim_free(newtxt); | |
2754 } | |
2755 | |
2756 /* | |
2757 * Tell netbeans some bytes have been removed. | |
2758 */ | |
2759 void | |
2760 netbeans_removed( | |
2761 buf_T *bufp, | |
2762 linenr_T linenr, | |
2763 colnr_T col, | |
2764 long len) | |
2765 { | |
2766 char_u buf[128]; | |
2767 int bufno; | |
2768 nbbuf_T *nbbuf; | |
2769 pos_T pos; | |
2770 long off; | |
2771 | |
2210 | 2772 if (!NETBEANS_OPEN) |
2773 return; | |
2774 | |
7 | 2775 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno); |
2776 if (nbbuf == NULL) | |
2777 return; | |
2778 | |
2779 if (len < 0) | |
2780 { | |
1618 | 2781 nbdebug(("Negative len %ld in netbeans_removed()!\n", len)); |
7 | 2782 return; |
2783 } | |
2784 | |
2785 nbbuf->modified = 1; | |
2786 | |
2787 pos.lnum = linenr; | |
2788 pos.col = col; | |
2789 | |
2790 off = pos2off(bufp, &pos); | |
2791 | |
944 | 2792 sprintf((char *)buf, "%d:remove=%d %ld %ld\n", bufno, r_cmdno, off, len); |
7 | 2793 nbdebug(("EVT: %s", buf)); |
2794 nb_send((char *)buf, "netbeans_removed"); | |
2795 } | |
2796 | |
2797 /* | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1956
diff
changeset
|
2798 * Send netbeans an unmodified command. |
7 | 2799 */ |
2800 void | |
1884 | 2801 netbeans_unmodified(buf_T *bufp UNUSED) |
7 | 2802 { |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2803 // This is a no-op, because NetBeans considers a buffer modified |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2804 // even when all changes have been undone. |
7 | 2805 } |
2806 | |
2807 /* | |
10226
7a4fb555c83a
commit https://github.com/vim/vim/commit/9af418427652562384744648d7d173a4bfebba95
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
2808 * Send a button release event back to netbeans. It's up to netbeans |
7 | 2809 * to decide what to do (if anything) with this event. |
2810 */ | |
2811 void | |
2812 netbeans_button_release(int button) | |
2813 { | |
2814 char buf[128]; | |
2815 int bufno; | |
2816 | |
2210 | 2817 if (!NETBEANS_OPEN) |
2818 return; | |
2819 | |
7 | 2820 bufno = nb_getbufno(curbuf); |
2821 | |
2822 if (bufno >= 0 && curwin != NULL && curwin->w_buffer == curbuf) | |
2823 { | |
12513
3ca08bf99396
patch 8.0.1135: W_WINCOL() is always the same
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2824 int col = mouse_col - curwin->w_wincol |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
2825 - ((curwin->w_p_nu || curwin->w_p_rnu) ? 9 : 1); |
7 | 2826 long off = pos2off(curbuf, &curwin->w_cursor); |
2827 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2828 // sync the cursor position |
944 | 2829 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off); |
7 | 2830 nbdebug(("EVT: %s", buf)); |
2831 nb_send(buf, "netbeans_button_release[newDotAndMark]"); | |
2832 | |
944 | 2833 sprintf(buf, "%d:buttonRelease=%d %d %ld %d\n", bufno, r_cmdno, |
7 | 2834 button, (long)curwin->w_cursor.lnum, col); |
2835 nbdebug(("EVT: %s", buf)); | |
2836 nb_send(buf, "netbeans_button_release"); | |
2837 } | |
2838 } | |
2839 | |
2840 | |
2841 /* | |
1186 | 2842 * Send a keypress event back to netbeans. This usually simulates some |
33 | 2843 * kind of function key press. This function operates on a key code. |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2844 * Return TRUE when the key was sent, FALSE when the command has been |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2845 * postponed. |
7 | 2846 */ |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2847 int |
7 | 2848 netbeans_keycommand(int key) |
2849 { | |
33 | 2850 char keyName[60]; |
2851 | |
2852 netbeans_keyname(key, keyName); | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2853 return netbeans_keystring((char_u *)keyName); |
33 | 2854 } |
2855 | |
2856 | |
2857 /* | |
1186 | 2858 * Send a keypress event back to netbeans. This usually simulates some |
33 | 2859 * kind of function key press. This function operates on a key string. |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2860 * Return TRUE when the key was sent, FALSE when the command has been |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2861 * postponed. |
33 | 2862 */ |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2863 static int |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2864 netbeans_keystring(char_u *keyName) |
33 | 2865 { |
7 | 2866 char buf[2*MAXPATHL]; |
33 | 2867 int bufno = nb_getbufno(curbuf); |
7 | 2868 long off; |
2869 char_u *q; | |
2870 | |
2210 | 2871 if (!NETBEANS_OPEN) |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2872 return TRUE; |
7 | 2873 |
2874 if (bufno == -1) | |
2875 { | |
2876 nbdebug(("got keycommand for non-NetBeans buffer, opening...\n")); | |
2877 q = curbuf->b_ffname == NULL ? (char_u *)"" | |
2878 : nb_quote(curbuf->b_ffname); | |
2879 if (q == NULL) | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2880 return TRUE; |
272 | 2881 vim_snprintf(buf, sizeof(buf), "0:fileOpened=%d \"%s\" %s %s\n", 0, |
7 | 2882 q, |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2883 "T", // open in NetBeans |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2884 "F"); // modified |
7 | 2885 if (curbuf->b_ffname != NULL) |
2886 vim_free(q); | |
2887 nbdebug(("EVT: %s", buf)); | |
2888 nb_send(buf, "netbeans_keycommand"); | |
2889 | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2890 postpone_keycommand(keyName); |
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2891 return FALSE; |
7 | 2892 } |
2893 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2894 // sync the cursor position |
7 | 2895 off = pos2off(curbuf, &curwin->w_cursor); |
944 | 2896 sprintf(buf, "%d:newDotAndMark=%d %ld %ld\n", bufno, r_cmdno, off, off); |
7 | 2897 nbdebug(("EVT: %s", buf)); |
2898 nb_send(buf, "netbeans_keycommand"); | |
2899 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2900 // To work on Win32 you must apply patch to ExtEditor module |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2901 // from ExtEdCaret.java.diff - make EVT_newDotAndMark handler |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2902 // more synchronous |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2903 |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2904 // now send keyCommand event |
272 | 2905 vim_snprintf(buf, sizeof(buf), "%d:keyCommand=%d \"%s\"\n", |
944 | 2906 bufno, r_cmdno, keyName); |
7 | 2907 nbdebug(("EVT: %s", buf)); |
2908 nb_send(buf, "netbeans_keycommand"); | |
2909 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2910 // New: do both at once and include the lnum/col. |
272 | 2911 vim_snprintf(buf, sizeof(buf), "%d:keyAtPos=%d \"%s\" %ld %ld/%ld\n", |
944 | 2912 bufno, r_cmdno, keyName, |
7 | 2913 off, (long)curwin->w_cursor.lnum, (long)curwin->w_cursor.col); |
2914 nbdebug(("EVT: %s", buf)); | |
2915 nb_send(buf, "netbeans_keycommand"); | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
2916 return TRUE; |
7 | 2917 } |
2918 | |
2919 | |
2920 /* | |
2921 * Send a save event to netbeans. | |
2922 */ | |
2923 void | |
2924 netbeans_save_buffer(buf_T *bufp) | |
2925 { | |
2926 char_u buf[64]; | |
2927 int bufno; | |
2928 nbbuf_T *nbbuf; | |
2929 | |
2210 | 2930 if (!NETBEANS_OPEN) |
2931 return; | |
2932 | |
7 | 2933 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno); |
2934 if (nbbuf == NULL) | |
2935 return; | |
2936 | |
2937 nbbuf->modified = 0; | |
2938 | |
944 | 2939 sprintf((char *)buf, "%d:save=%d\n", bufno, r_cmdno); |
7 | 2940 nbdebug(("EVT: %s", buf)); |
2941 nb_send((char *)buf, "netbeans_save_buffer"); | |
2942 } | |
2943 | |
2944 | |
2945 /* | |
2946 * Send remove command to netbeans (this command has been turned off). | |
2947 */ | |
2948 void | |
2949 netbeans_deleted_all_lines(buf_T *bufp) | |
2950 { | |
2951 char_u buf[64]; | |
2952 int bufno; | |
2953 nbbuf_T *nbbuf; | |
2954 | |
2210 | 2955 if (!NETBEANS_OPEN) |
2956 return; | |
2957 | |
7 | 2958 nbbuf = nb_bufp2nbbuf_fire(bufp, &bufno); |
2959 if (nbbuf == NULL) | |
2960 return; | |
2961 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2962 // Don't mark as modified for initial read |
33 | 2963 if (nbbuf->insertDone) |
2964 nbbuf->modified = 1; | |
7 | 2965 |
944 | 2966 sprintf((char *)buf, "%d:remove=%d 0 -1\n", bufno, r_cmdno); |
7 | 2967 nbdebug(("EVT(suppressed): %s", buf)); |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
2968 // nb_send(buf, "netbeans_deleted_all_lines"); |
7 | 2969 } |
2970 | |
2971 | |
2972 /* | |
2973 * See if the lines are guarded. The top and bot parameters are from | |
2974 * u_savecommon(), these are the line above the change and the line below the | |
2975 * change. | |
2976 */ | |
2977 int | |
2978 netbeans_is_guarded(linenr_T top, linenr_T bot) | |
2979 { | |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
2980 sign_entry_T *p; |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
2981 int lnum; |
7 | 2982 |
2210 | 2983 if (!NETBEANS_OPEN) |
2984 return FALSE; | |
2985 | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
18808
diff
changeset
|
2986 FOR_ALL_SIGNS_IN_BUF(curbuf, p) |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
2987 if (p->se_id >= GUARDEDOFFSET) |
7 | 2988 for (lnum = top + 1; lnum < bot; lnum++) |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
2989 if (lnum == p->se_lnum) |
7 | 2990 return TRUE; |
2991 | |
2992 return FALSE; | |
2993 } | |
2994 | |
2592 | 2995 #if defined(FEAT_GUI_X11) || defined(PROTO) |
7 | 2996 /* |
2997 * We have multiple signs to draw at the same location. Draw the | |
2998 * multi-sign indicator instead. This is the Motif version. | |
2999 */ | |
3000 void | |
3001 netbeans_draw_multisign_indicator(int row) | |
3002 { | |
3003 int i; | |
3004 int y; | |
3005 int x; | |
3006 | |
2210 | 3007 if (!NETBEANS_OPEN) |
3008 return; | |
3009 | |
7 | 3010 x = 0; |
3011 y = row * gui.char_height + 2; | |
3012 | |
3013 for (i = 0; i < gui.char_height - 3; i++) | |
3014 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y++); | |
3015 | |
3016 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+0, y); | |
3017 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y); | |
3018 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+4, y++); | |
3019 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+1, y); | |
3020 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y); | |
3021 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+3, y++); | |
3022 XDrawPoint(gui.dpy, gui.wid, gui.text_gc, x+2, y); | |
3023 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3024 #endif // FEAT_GUI_X11 |
7 | 3025 |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2271
diff
changeset
|
3026 #if defined(FEAT_GUI_GTK) && !defined(PROTO) |
7 | 3027 /* |
3028 * We have multiple signs to draw at the same location. Draw the | |
3029 * multi-sign indicator instead. This is the GTK/Gnome version. | |
3030 */ | |
3031 void | |
3032 netbeans_draw_multisign_indicator(int row) | |
3033 { | |
3034 int i; | |
3035 int y; | |
3036 int x; | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3037 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3038 cairo_t *cr = NULL; |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3039 #else |
7 | 3040 GdkDrawable *drawable = gui.drawarea->window; |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3041 #endif |
7 | 3042 |
2210 | 3043 if (!NETBEANS_OPEN) |
3044 return; | |
3045 | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3046 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3047 cr = cairo_create(gui.surface); |
9624
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3048 cairo_set_source_rgba(cr, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3049 gui.fgcolor->red, gui.fgcolor->green, gui.fgcolor->blue, |
d63b85fe3dc7
commit https://github.com/vim/vim/commit/36edf0685c8b55ee3ce709058d83ada8027fec1e
Christian Brabandt <cb@256bit.org>
parents:
9487
diff
changeset
|
3050 gui.fgcolor->alpha); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3051 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3052 |
7 | 3053 x = 0; |
3054 y = row * gui.char_height + 2; | |
3055 | |
3056 for (i = 0; i < gui.char_height - 3; i++) | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3057 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3058 cairo_rectangle(cr, x+2, y++, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3059 #else |
7 | 3060 gdk_draw_point(drawable, gui.text_gc, x+2, y++); |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3061 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3062 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3063 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3064 cairo_rectangle(cr, x+0, y, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3065 cairo_rectangle(cr, x+2, y, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3066 cairo_rectangle(cr, x+4, y++, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3067 cairo_rectangle(cr, x+1, y, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3068 cairo_rectangle(cr, x+2, y, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3069 cairo_rectangle(cr, x+3, y++, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3070 cairo_rectangle(cr, x+2, y, 1, 1); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3071 #else |
7 | 3072 gdk_draw_point(drawable, gui.text_gc, x+0, y); |
3073 gdk_draw_point(drawable, gui.text_gc, x+2, y); | |
3074 gdk_draw_point(drawable, gui.text_gc, x+4, y++); | |
3075 gdk_draw_point(drawable, gui.text_gc, x+1, y); | |
3076 gdk_draw_point(drawable, gui.text_gc, x+2, y); | |
3077 gdk_draw_point(drawable, gui.text_gc, x+3, y++); | |
3078 gdk_draw_point(drawable, gui.text_gc, x+2, y); | |
8218
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3079 #endif |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3080 |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3081 #if GTK_CHECK_VERSION(3,0,0) |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3082 cairo_destroy(cr); |
3456e2ebebd4
commit https://github.com/vim/vim/commit/9892189d2e7ab94b750f99e6da4cbfc3c8014517
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3083 #endif |
7 | 3084 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3085 #endif // FEAT_GUI_GTK |
7 | 3086 |
3087 /* | |
3088 * If the mouse is clicked in the gutter of a line with multiple | |
3089 * annotations, cycle through the set of signs. | |
3090 */ | |
3091 void | |
3092 netbeans_gutter_click(linenr_T lnum) | |
3093 { | |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3094 sign_entry_T *p; |
7 | 3095 |
2210 | 3096 if (!NETBEANS_OPEN) |
3097 return; | |
3098 | |
19888
435726a03481
patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents:
18808
diff
changeset
|
3099 FOR_ALL_SIGNS_IN_BUF(curbuf, p) |
7 | 3100 { |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3101 if (p->se_lnum == lnum && p->se_next && p->se_next->se_lnum == lnum) |
7 | 3102 { |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3103 sign_entry_T *tail; |
7 | 3104 |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3105 // remove "p" from list, reinsert it at the tail of the sublist |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3106 if (p->se_prev) |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3107 p->se_prev->se_next = p->se_next; |
7 | 3108 else |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3109 curbuf->b_signlist = p->se_next; |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3110 p->se_next->se_prev = p->se_prev; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3111 // now find end of sublist and insert p |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3112 for (tail = p->se_next; |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3113 tail->se_next && tail->se_next->se_lnum == lnum |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3114 && tail->se_next->se_id < GUARDEDOFFSET; |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3115 tail = tail->se_next) |
7 | 3116 ; |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3117 // tail now points to last entry with same lnum (except |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3118 // that "guarded" annotations are always last) |
18422
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3119 p->se_next = tail->se_next; |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3120 if (tail->se_next) |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3121 tail->se_next->se_prev = p; |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3122 p->se_prev = tail; |
1848b3e07266
patch 8.1.2205: sign entry structure has confusing name
Bram Moolenaar <Bram@vim.org>
parents:
17785
diff
changeset
|
3123 tail->se_next = p; |
7 | 3124 update_debug_sign(curbuf, lnum); |
3125 break; | |
3126 } | |
3127 } | |
3128 } | |
3129 | |
3130 /* | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1956
diff
changeset
|
3131 * Add a sign of the requested type at the requested location. |
7 | 3132 * |
3133 * Reverse engineering: | |
3134 * Apparently an annotation is defined the first time it is used in a buffer. | |
3135 * When the same annotation is used in two buffers, the second time we do not | |
3136 * need to define a new sign name but reuse the existing one. But since the | |
3137 * ID number used in the second buffer starts counting at one again, a mapping | |
3138 * is made from the ID specifically for the buffer to the global sign name | |
3139 * (which is a number). | |
3140 * | |
3141 * globalsignmap[] stores the signs that have been defined globally. | |
3142 * buf->signmapused[] maps buffer-local annotation IDs to an index in | |
3143 * globalsignmap[]. | |
3144 */ | |
3145 static void | |
3146 addsigntype( | |
3147 nbbuf_T *buf, | |
3148 int typeNum, | |
3149 char_u *typeName, | |
1884 | 3150 char_u *tooltip UNUSED, |
7 | 3151 char_u *glyphFile, |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3152 char_u *fg, |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3153 char_u *bg) |
7 | 3154 { |
3155 int i, j; | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3156 int use_fg = (*fg && STRCMP(fg, "none") != 0); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3157 int use_bg = (*bg && STRCMP(bg, "none") != 0); |
7 | 3158 |
3159 for (i = 0; i < globalsignmapused; i++) | |
3160 if (STRCMP(typeName, globalsignmap[i]) == 0) | |
3161 break; | |
3162 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3163 if (i == globalsignmapused) // not found; add it to global map |
7 | 3164 { |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3165 nbdebug(("DEFINEANNOTYPE(%d,%s,%s,%s,%s,%s)\n", |
7 | 3166 typeNum, typeName, tooltip, glyphFile, fg, bg)); |
3167 if (use_fg || use_bg) | |
3168 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3169 char fgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1]; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3170 char bgbuf[2 * (8 + MAX_COLOR_LENGTH) + 1]; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3171 char *ptr; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3172 int value; |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3173 |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3174 value = strtol((char *)fg, &ptr, 10); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3175 if (ptr != (char *)fg) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3176 sprintf(fgbuf, "guifg=#%06x", value & 0xFFFFFF); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3177 else |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3178 sprintf(fgbuf, "guifg=%s ctermfg=%s", fg, fg); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3179 |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3180 value = strtol((char *)bg, &ptr, 10); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3181 if (ptr != (char *)bg) |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3182 sprintf(bgbuf, "guibg=#%06x", value & 0xFFFFFF); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3183 else |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3184 sprintf(bgbuf, "guibg=%s ctermbg=%s", bg, bg); |
7 | 3185 |
3186 coloncmd(":highlight NB_%s %s %s", typeName, (use_fg) ? fgbuf : "", | |
3187 (use_bg) ? bgbuf : ""); | |
3188 if (*glyphFile == NUL) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3189 // no glyph, line highlighting only |
7 | 3190 coloncmd(":sign define %d linehl=NB_%s", i + 1, typeName); |
3191 else if (vim_strsize(glyphFile) <= 2) | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3192 // one- or two-character glyph name, use as text glyph with |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3193 // texthl |
7 | 3194 coloncmd(":sign define %d text=%s texthl=NB_%s", i + 1, |
3195 glyphFile, typeName); | |
3196 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3197 // glyph, line highlighting |
7 | 3198 coloncmd(":sign define %d icon=%s linehl=NB_%s", i + 1, |
3199 glyphFile, typeName); | |
3200 } | |
3201 else | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3202 // glyph, no line highlighting |
7 | 3203 coloncmd(":sign define %d icon=%s", i + 1, glyphFile); |
3204 | |
3205 if (STRCMP(typeName,"CurrentPC") == 0) | |
3206 curPCtype = typeNum; | |
3207 | |
3208 if (globalsignmapused == globalsignmaplen) | |
3209 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3210 if (globalsignmaplen == 0) // first allocation |
7 | 3211 { |
3212 globalsignmaplen = 20; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3213 globalsignmap = ALLOC_CLEAR_MULT(char *, globalsignmaplen); |
7 | 3214 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3215 else // grow it |
7 | 3216 { |
3217 int incr; | |
3218 int oldlen = globalsignmaplen; | |
6596 | 3219 char **t_globalsignmap = globalsignmap; |
7 | 3220 |
3221 globalsignmaplen *= 2; | |
3222 incr = globalsignmaplen - oldlen; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3223 globalsignmap = vim_realloc(globalsignmap, |
7 | 3224 globalsignmaplen * sizeof(char *)); |
6596 | 3225 if (globalsignmap == NULL) |
3226 { | |
3227 vim_free(t_globalsignmap); | |
3228 globalsignmaplen = 0; | |
3229 return; | |
3230 } | |
2215
cccb71c2c5c1
Fix uninit memory read in undo code. Fix uint32_t in proto file.
Bram Moolenaar <bram@vim.org>
parents:
2213
diff
changeset
|
3231 vim_memset(globalsignmap + oldlen, 0, incr * sizeof(char *)); |
7 | 3232 } |
3233 } | |
3234 | |
3235 globalsignmap[i] = (char *)typeName; | |
3236 globalsignmapused = i + 1; | |
3237 } | |
3238 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3239 // check local map; should *not* be found! |
7 | 3240 for (j = 0; j < buf->signmapused; j++) |
3241 if (buf->signmap[j] == i + 1) | |
3242 return; | |
3243 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3244 // add to local map |
7 | 3245 if (buf->signmapused == buf->signmaplen) |
3246 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3247 if (buf->signmaplen == 0) // first allocation |
7 | 3248 { |
3249 buf->signmaplen = 5; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3250 buf->signmap = ALLOC_CLEAR_MULT(int, buf->signmaplen); |
7 | 3251 } |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3252 else // grow it |
7 | 3253 { |
3254 int incr; | |
3255 int oldlen = buf->signmaplen; | |
6596 | 3256 int *t_signmap = buf->signmap; |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
3257 |
7 | 3258 buf->signmaplen *= 2; |
3259 incr = buf->signmaplen - oldlen; | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3260 buf->signmap = vim_realloc(buf->signmap, |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
3261 buf->signmaplen * sizeof(int)); |
6596 | 3262 if (buf->signmap == NULL) |
3263 { | |
3264 vim_free(t_signmap); | |
3265 buf->signmaplen = 0; | |
3266 return; | |
3267 } | |
2445
04dae202d316
Fixes for coverity warnings.
Bram Moolenaar <bram@vim.org>
parents:
2278
diff
changeset
|
3268 vim_memset(buf->signmap + oldlen, 0, incr * sizeof(int)); |
7 | 3269 } |
3270 } | |
3271 | |
3272 buf->signmap[buf->signmapused++] = i + 1; | |
3273 | |
3274 } | |
3275 | |
3276 | |
3277 /* | |
3278 * See if we have the requested sign type in the buffer. | |
3279 */ | |
3280 static int | |
3281 mapsigntype(nbbuf_T *buf, int localsigntype) | |
3282 { | |
3283 if (--localsigntype >= 0 && localsigntype < buf->signmapused) | |
3284 return buf->signmap[localsigntype]; | |
3285 | |
3286 return 0; | |
3287 } | |
3288 | |
3289 | |
3290 /* | |
3291 * Compute length of buffer, don't print anything. | |
3292 */ | |
3293 static long | |
3294 get_buf_size(buf_T *bufp) | |
3295 { | |
3296 linenr_T lnum; | |
3297 long char_count = 0; | |
3298 int eol_size; | |
3299 long last_check = 100000L; | |
3300 | |
3301 if (bufp->b_ml.ml_flags & ML_EMPTY) | |
3302 return 0; | |
3303 else | |
3304 { | |
3305 if (get_fileformat(bufp) == EOL_DOS) | |
3306 eol_size = 2; | |
3307 else | |
3308 eol_size = 1; | |
3309 for (lnum = 1; lnum <= bufp->b_ml.ml_line_count; ++lnum) | |
3310 { | |
1956 | 3311 char_count += (long)STRLEN(ml_get_buf(bufp, lnum, FALSE)) |
3312 + eol_size; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3313 // Check for a CTRL-C every 100000 characters |
7 | 3314 if (char_count > last_check) |
3315 { | |
3316 ui_breakcheck(); | |
3317 if (got_int) | |
3318 return char_count; | |
3319 last_check = char_count + 100000L; | |
3320 } | |
3321 } | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3322 // Correction for when last line doesn't have an EOL. |
6933 | 3323 if (!bufp->b_p_eol && (bufp->b_p_bin || !bufp->b_p_fixeol)) |
7 | 3324 char_count -= eol_size; |
3325 } | |
3326 | |
3327 return char_count; | |
3328 } | |
3329 | |
3330 /* | |
3331 * Convert character offset to lnum,col | |
3332 */ | |
3333 static pos_T * | |
3334 off2pos(buf_T *buf, long offset) | |
3335 { | |
3336 linenr_T lnum; | |
3337 static pos_T pos; | |
3338 | |
3339 pos.lnum = 0; | |
3340 pos.col = 0; | |
3341 pos.coladd = 0; | |
3342 | |
3343 if (!(buf->b_ml.ml_flags & ML_EMPTY)) | |
3344 { | |
3345 if ((lnum = ml_find_line_or_offset(buf, (linenr_T)0, &offset)) < 0) | |
3346 return NULL; | |
3347 pos.lnum = lnum; | |
3348 pos.col = offset; | |
3349 } | |
3350 | |
3351 return &pos; | |
3352 } | |
3353 | |
3354 /* | |
3355 * Convert an argument in the form "1234" to an offset and compute the | |
3356 * lnum/col from it. Convert an argument in the form "123/12" directly to a | |
3357 * lnum/col. | |
3358 * "argp" is advanced to after the argument. | |
3359 * Return a pointer to the position, NULL if something is wrong. | |
3360 */ | |
3361 static pos_T * | |
3362 get_off_or_lnum(buf_T *buf, char_u **argp) | |
3363 { | |
3364 static pos_T mypos; | |
3365 long off; | |
3366 | |
3367 off = strtol((char *)*argp, (char **)argp, 10); | |
3368 if (**argp == '/') | |
3369 { | |
3370 mypos.lnum = (linenr_T)off; | |
3371 ++*argp; | |
3372 mypos.col = strtol((char *)*argp, (char **)argp, 10); | |
3373 mypos.coladd = 0; | |
3374 return &mypos; | |
3375 } | |
3376 return off2pos(buf, off); | |
3377 } | |
3378 | |
3379 | |
3380 /* | |
667 | 3381 * Convert (lnum,col) to byte offset in the file. |
7 | 3382 */ |
3383 static long | |
3384 pos2off(buf_T *buf, pos_T *pos) | |
3385 { | |
3386 long offset = 0; | |
3387 | |
3388 if (!(buf->b_ml.ml_flags & ML_EMPTY)) | |
3389 { | |
3390 if ((offset = ml_find_line_or_offset(buf, pos->lnum, 0)) < 0) | |
3391 return 0; | |
3392 offset += pos->col; | |
3393 } | |
3394 | |
3395 return offset; | |
3396 } | |
3397 | |
3398 | |
33 | 3399 /* |
10226
7a4fb555c83a
commit https://github.com/vim/vim/commit/9af418427652562384744648d7d173a4bfebba95
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
3400 * This message is printed after NetBeans opens a new file. It's |
33 | 3401 * similar to the message readfile() uses, but since NetBeans |
3402 * doesn't normally call readfile, we do our own. | |
3403 */ | |
3404 static void | |
7829
2a8d6b2dd925
commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3405 print_read_msg(nbbuf_T *buf) |
33 | 3406 { |
3407 int lnum = buf->bufp->b_ml.ml_line_count; | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9375
diff
changeset
|
3408 off_T nchars = buf->bufp->b_orig_size; |
33 | 3409 char_u c; |
3410 | |
3411 msg_add_fname(buf->bufp, buf->bufp->b_ffname); | |
3412 c = FALSE; | |
3413 | |
3414 if (buf->bufp->b_p_ro) | |
3415 { | |
3416 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]")); | |
3417 c = TRUE; | |
3418 } | |
3419 if (!buf->bufp->b_start_eol) | |
3420 { | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3421 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]") |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3422 : _("[Incomplete last line]")); |
33 | 3423 c = TRUE; |
3424 } | |
3425 msg_add_lines(c, (long)lnum, nchars); | |
3426 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3427 // Now display it |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
3428 VIM_CLEAR(keep_msg); |
33 | 3429 msg_scrolled_ign = TRUE; |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3430 msg_trunc_attr((char *)IObuff, FALSE, 0); |
33 | 3431 msg_scrolled_ign = FALSE; |
3432 } | |
3433 | |
3434 | |
3435 /* | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3436 * Print a message after NetBeans writes the file. This message should be |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3437 * identical to the standard message a non-netbeans user would see when |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3438 * writing a file. |
33 | 3439 */ |
3440 static void | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9375
diff
changeset
|
3441 print_save_msg(nbbuf_T *buf, off_T nchars) |
33 | 3442 { |
3443 char_u c; | |
3444 char_u *p; | |
3445 | |
3446 if (nchars >= 0) | |
3447 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3448 // put fname in IObuff with quotes |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2199
diff
changeset
|
3449 msg_add_fname(buf->bufp, buf->bufp->b_ffname); |
33 | 3450 c = FALSE; |
3451 | |
3452 msg_add_lines(c, buf->bufp->b_ml.ml_line_count, | |
2241
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2215
diff
changeset
|
3453 buf->bufp->b_orig_size); |
33 | 3454 |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13170
diff
changeset
|
3455 VIM_CLEAR(keep_msg); |
33 | 3456 msg_scrolled_ign = TRUE; |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15510
diff
changeset
|
3457 p = (char_u *)msg_trunc_attr((char *)IObuff, FALSE, 0); |
33 | 3458 if ((msg_scrolled && !need_wait_return) || !buf->initDone) |
3459 { | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3460 // Need to repeat the message after redrawing when: |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3461 // - When reading from stdin (the screen will be cleared next). |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3462 // - When restart_edit is set (otherwise there will be a delay |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3463 // before redrawing). |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3464 // - When the screen was scrolled but there is no wait-return |
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3465 // prompt. |
678 | 3466 set_keep_msg(p, 0); |
33 | 3467 } |
3468 msg_scrolled_ign = FALSE; | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3469 // add_to_input_buf((char_u *)"\f", 1); |
33 | 3470 } |
3471 else | |
3472 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
3473 char msgbuf[IOSIZE]; |
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
3474 |
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
3475 vim_snprintf(msgbuf, IOSIZE, |
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15454
diff
changeset
|
3476 _("E505: %s is read-only (add ! to override)"), IObuff); |
2768 | 3477 nbdebug((" %s\n", msgbuf)); |
3478 emsg(msgbuf); | |
33 | 3479 } |
3480 } | |
3481 | |
18808
7982f65d8f54
patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents:
18422
diff
changeset
|
3482 #endif // defined(FEAT_NETBEANS_INTG) |