Mercurial > vim
annotate src/proto/netbeans.pro @ 15641:2c264fda0f59 v8.1.0828
patch 8.1.0828: still using FEAT_VIRTUALEDIT
commit https://github.com/vim/vim/commit/6aba96dd5778b4201c9f5cb065d7669d3398e724
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 26 17:43:21 2019 +0100
patch 8.1.0828: still using FEAT_VIRTUALEDIT
Problem: Still using FEAT_VIRTUALEDIT.
Solution: Remove last use of FEAT_VIRTUALEDIT.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 26 Jan 2019 17:45:13 +0100 |
parents | 3a6b66c02d6d |
children |
rev | line source |
---|---|
7 | 1 /* netbeans.c */ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
2 void netbeans_parse_messages(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
3 int isNetbeansBuffer(buf_T *bufp); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
4 int isNetbeansModified(buf_T *bufp); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
5 void netbeans_end(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
6 void ex_nbclose(exarg_T *eap); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
7 void ex_nbkey(exarg_T *eap); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
8 void ex_nbstart(exarg_T *eap); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
9 void netbeans_beval_cb(BalloonEval *beval, int state); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
10 int netbeans_active(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
11 void netbeans_open(char *params, int doabort); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
12 void netbeans_send_disconnect(void); |
9052
3a6b66c02d6d
commit https://github.com/vim/vim/commit/3266c85a44a637862b0ed6e531680c6ab2897ab5
Christian Brabandt <cb@256bit.org>
parents:
7780
diff
changeset
|
13 int set_ref_in_nb_channel(int copyID); |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
14 void netbeans_frame_moved(int new_x, int new_y); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
15 void netbeans_file_activated(buf_T *bufp); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
16 void netbeans_file_opened(buf_T *bufp); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
17 void netbeans_file_killed(buf_T *bufp); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
18 void netbeans_inserted(buf_T *bufp, linenr_T linenr, colnr_T col, char_u *txt, int newlen); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
19 void netbeans_removed(buf_T *bufp, linenr_T linenr, colnr_T col, long len); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
20 void netbeans_unmodified(buf_T *bufp); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
21 void netbeans_button_release(int button); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
22 int netbeans_keycommand(int key); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
23 void netbeans_save_buffer(buf_T *bufp); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
24 void netbeans_deleted_all_lines(buf_T *bufp); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
25 int netbeans_is_guarded(linenr_T top, linenr_T bot); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
26 void netbeans_draw_multisign_indicator(int row); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
2278
diff
changeset
|
27 void netbeans_gutter_click(linenr_T lnum); |
7 | 28 /* vim: set ft=c : */ |