diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-22 21:34:09 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-22 21:34:09 +0200 |
commit | b26e6327e69ed57c897d59183a4171c5eb979c19 (patch) | |
tree | 523c56a73826b7917ebe46580ce7936f86556aae /src/proto/netbeans.pro | |
parent | 67c53844343011089e1b847200b5c5257a83e1c4 (diff) | |
download | vim-git-b26e6327e69ed57c897d59183a4171c5eb979c19.tar.gz |
Add :nbstart and :nbclose.
Diffstat (limited to 'src/proto/netbeans.pro')
-rw-r--r-- | src/proto/netbeans.pro | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/proto/netbeans.pro b/src/proto/netbeans.pro index e070c51c0..17a60bccb 100644 --- a/src/proto/netbeans.pro +++ b/src/proto/netbeans.pro @@ -4,11 +4,14 @@ void netbeans_read __ARGS((void)); int isNetbeansBuffer __ARGS((buf_T *bufp)); int isNetbeansModified __ARGS((buf_T *bufp)); void netbeans_end __ARGS((void)); +void ex_nbclose __ARGS((exarg_T *eap)); void ex_nbkey __ARGS((exarg_T *eap)); +void ex_nbstart __ARGS((exarg_T *eap)); void netbeans_beval_cb __ARGS((BalloonEval *beval, int state)); +int netbeans_active __ARGS((void)); int netbeans_filedesc __ARGS((void)); void netbeans_gui_register __ARGS((void)); -void netbeans_startup_done __ARGS((void)); +void netbeans_open __ARGS((char *params, int abort)); void netbeans_send_disconnect __ARGS((void)); void netbeans_frame_moved __ARGS((int new_x, int new_y)); void netbeans_file_activated __ARGS((buf_T *bufp)); |