Mercurial > vim
annotate src/proto/netbeans.pro @ 6991:814f1f569e4a v7.4.813
patch 7.4.813
Problem: It is not possible to save and restore character search state.
Solution: Add getcharsearch() and setcharsearch(). (James McCoy)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Tue, 11 Aug 2015 14:26:19 +0200 |
parents | 0b3be97064e5 |
children | 21b0a39d13ed |
rev | line source |
---|---|
7 | 1 /* netbeans.c */ |
1621 | 2 void netbeans_parse_messages __ARGS((void)); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2048
diff
changeset
|
3 void netbeans_read __ARGS((void)); |
1121 | 4 int isNetbeansBuffer __ARGS((buf_T *bufp)); |
5 int isNetbeansModified __ARGS((buf_T *bufp)); | |
6 void netbeans_end __ARGS((void)); | |
2210 | 7 void ex_nbclose __ARGS((exarg_T *eap)); |
1121 | 8 void ex_nbkey __ARGS((exarg_T *eap)); |
2210 | 9 void ex_nbstart __ARGS((exarg_T *eap)); |
1121 | 10 void netbeans_beval_cb __ARGS((BalloonEval *beval, int state)); |
2210 | 11 int netbeans_active __ARGS((void)); |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2048
diff
changeset
|
12 int netbeans_filedesc __ARGS((void)); |
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2048
diff
changeset
|
13 void netbeans_gui_register __ARGS((void)); |
2278
0b3be97064e5
Various small fixes from Dominique Pelle.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
14 void netbeans_open __ARGS((char *params, int doabort)); |
1121 | 15 void netbeans_send_disconnect __ARGS((void)); |
16 void netbeans_frame_moved __ARGS((int new_x, int new_y)); | |
17 void netbeans_file_activated __ARGS((buf_T *bufp)); | |
18 void netbeans_file_opened __ARGS((buf_T *bufp)); | |
1781 | 19 void netbeans_file_killed __ARGS((buf_T *bufp)); |
1121 | 20 void netbeans_inserted __ARGS((buf_T *bufp, linenr_T linenr, colnr_T col, char_u *txt, int newlen)); |
21 void netbeans_removed __ARGS((buf_T *bufp, linenr_T linenr, colnr_T col, long len)); | |
22 void netbeans_unmodified __ARGS((buf_T *bufp)); | |
23 void netbeans_button_release __ARGS((int button)); | |
2048
351bf13db807
updated for version 7.2.334
Bram Moolenaar <bram@zimbu.org>
parents:
1781
diff
changeset
|
24 int netbeans_keycommand __ARGS((int key)); |
1121 | 25 void netbeans_save_buffer __ARGS((buf_T *bufp)); |
26 void netbeans_deleted_all_lines __ARGS((buf_T *bufp)); | |
27 int netbeans_is_guarded __ARGS((linenr_T top, linenr_T bot)); | |
28 void netbeans_draw_multisign_indicator __ARGS((int row)); | |
29 void netbeans_gutter_click __ARGS((linenr_T lnum)); | |
7 | 30 /* vim: set ft=c : */ |