xref: /vim-8.2.3635/runtime/doc/netbeans.txt (revision 3132cddd)
1*netbeans.txt*  For Vim version 8.2.  Last change: 2020 Nov 02
2
3
4		  VIM REFERENCE MANUAL    by Gordon Prieur et al.
5
6
7					*netbeans* *NetBeans* *netbeans-support*
8
9Vim NetBeans Protocol: a socket interface for Vim integration into an IDE.
10
111.  Introduction				|netbeans-intro|
122.  Integration features			|netbeans-integration|
133.  Configuring Vim for NetBeans		|netbeans-configure|
144.  Error Messages				|netbeans-messages|
155.  Running Vim in NetBeans mode		|netbeans-run|
166.  NetBeans protocol				|netbeans-protocol|
177.  NetBeans commands				|netbeans-commands|
188.  Known problems				|netbeans-problems|
199.  Debugging NetBeans protocol			|netbeans-debugging|
2010. NetBeans External Editor
21    10.1. Downloading NetBeans			|netbeans-download|
22    10.2. NetBeans Key Bindings			|netbeans-keybindings|
23    10.3. Preparing NetBeans for Vim		|netbeans-preparation|
24    10.4. Obtaining the External Editor Module	|obtaining-exted|
25    10.5. Setting up NetBeans to run with Vim	|netbeans-setup|
26
27{only available when compiled with the |+netbeans_intg| feature}
28
29==============================================================================
301. Introduction						*netbeans-intro*
31
32The NetBeans interface was initially developed to integrate Vim into the
33NetBeans Java IDE, using the external editor plugin.  This NetBeans plugin no
34longer exists for recent versions of NetBeans but the protocol was developed
35in such a way that any IDE can use it to integrate Vim.
36
37The NetBeans protocol of Vim is a text based communication protocol, over a
38classical TCP socket. There is no dependency on Java or NetBeans. Any language
39or environment providing a socket interface can control Vim using this
40protocol. There are existing implementations in C, C++, Python and Java. The
41name NetBeans is kept today for historical reasons.
42
43Active project using the NetBeans protocol of Vim:
44- Eclim, http://eclim.org/
45
46VimIntegration, description of various projects doing Vim Integration:
47	http://www.freehackers.org/VimIntegration
48
49Projects using the NetBeans protocol of Vim are or were:
50- Agide, an IDE for the AAP project, written in Python (now replaced by
51  |:Termdebug|): http://www.a-a-p.org
52- Clewn, a gdb integration into Vim, written in C:
53	http://clewn.sourceforge.net/
54- Pyclewn, a gdb integration into Vim, written in Python:
55	http://pyclewn.sourceforge.net/
56- VimWrapper, library to easy Vim integration into IDE:
57	http://www.freehackers.org/VimWrapper
58Outdated projects (links don't work):
59- VimPlugin, integration of Vim inside Eclipse:
60	http://vimplugin.sourceforge.net/wiki/pmwiki.php
61- PIDA, IDE written in Python integrating Vim:
62	http://pida.co.uk/
63
64Check the specific project pages to see how to use Vim with these projects.
65
66An alternative is to use a channel, see |channel|.
67
68In the rest of this help page, we will use the term "Vim Controller" to
69describe the program controlling Vim through the NetBeans socket interface.
70
71
72About the NetBeans IDE ~
73
74NetBeans is an open source Integrated Development Environment developed
75jointly by Sun Microsystems, Inc. and the netbeans.org developer community.
76Initially just a Java IDE, NetBeans has had C, C++, and Fortran support added
77in recent releases.
78
79For more information visit the main NetBeans web site http://www.netbeans.org.
80The External Editor is now, unfortunately, declared obsolete.  See
81 http://externaleditor.netbeans.org.
82
83Sun Microsystems, Inc. also ships NetBeans under the name Sun ONE Studio.
84Visit http://www.sun.com for more information regarding the Sun ONE Studio
85product line.
86
87Current releases of NetBeans provide full support for Java and limited support
88for C, C++, and Fortran.  Current releases of Sun ONE Studio provide full
89support for Java, C, C++, and Fortran.
90
91==============================================================================
922. Integration features					*netbeans-integration*
93
94The NetBeans socket interface of Vim allows to get information from Vim or to
95ask Vim to perform specific actions:
96- get information about buffer: buffer name, cursor position, buffer content,
97  etc.
98- be notified when buffers are open or closed
99- be notified of how the buffer content is modified
100- load and save files
101- modify the buffer content
102- installing special key bindings
103- raise the window, control the window geometry
104
105For sending key strokes to Vim or for evaluating functions in Vim, you must
106use the |clientserver| interface.
107
108
109==============================================================================
1103. Configuring Vim for NetBeans			*netbeans-configure*
111
112For more help about installing Vim, please read |usr_90.txt| in the Vim User
113Manual.
114
115
116On Unix:
117--------
118
119When running configure without arguments the NetBeans interface should be
120included.  That is, if the configure check to find out if your system supports
121the required features succeeds.
122
123In case you do not want the NetBeans interface you can disable it by
124uncommenting a line with "--disable-netbeans" in the Makefile.
125
126Currently the NetBeans interface is supported by Vim running in a terminal and
127by gvim when it is run with one of the following GUIs: GTK, GNOME, Windows,
128Athena and Motif.
129
130							*netbeans-xpm*
131If Motif support is required the user must supply XPM libraries.
132The XPM library is required to show images within Vim with Motif or Athena.
133Without it the toolbar and signs will be disabled.
134
135The XPM library is provided by Arnaud Le Hors of the French National Institute
136for Research in Computer Science and Control.  It can be downloaded from
137http://cgit.freedesktop.org/xorg/lib/libXpm.  The current release, as of this
138writing, is xpm-3.4k-solaris.tgz, which is a gzip'ed tar file.  If you create
139the directory /usr/local/xpm and untar the file there you can use the
140uncommented lines in the Makefile without changing them.  If you use another
141xpm directory you will need to change the XPM_DIR in src/Makefile.
142
143
144On MS-Windows:
145--------------
146
147The Win32 support is now in beta stage.
148
149To use XPM signs on Win32 (e.g. when using with NetBeans) you can compile
150XPM by yourself or use precompiled libraries from http://iamphet.nm.ru/misc/
151(for MS Visual C++) or http://gnuwin32.sourceforge.net (for MinGW).
152
153Enable debugging:
154-----------------
155
156To enable debugging of Vim and of the NetBeans protocol, the "NBDEBUG" macro
157needs to be defined.  Search in the Makefile of the platform you are using for
158"NBDEBUG" to see what line needs to be uncommented.  This effectively adds
159"-DNBDEBUG" to the compile command.  Also see |netbeans-debugging|
160
161==============================================================================
1624. Error Messages					*netbeans-messages*
163
164These error messages are specific to NetBeans socket protocol:
165
166							*E463*
167Region is guarded, cannot modify
168		The Vim Controller has defined guarded areas in the text,
169		which you cannot change.  Also sets the current buffer, if
170		necessary.
171
172							*E532*
173The defineAnnoType highlighting color name is too long
174		The maximum length of the "fg" or "bg" color argument in the
175		defineAnnoType command is 32 characters.
176		New in version 2.5.
177
178							*E656*
179Writes of unmodified buffers forbidden
180		Writes of unmodified buffers that were opened from the
181		Vim Controller are not possible.
182
183							*E657*
184Partial writes disallowed
185		Partial writes for buffers that were opened from the
186		Vim Controller are not allowed.
187
188							*E658*
189Connection lost for this buffer
190		The Vim Controller has become confused about the state of
191		this file.  Rather than risk data corruption, it has severed
192		the connection for this file.  Vim will take over
193		responsibility for saving changes to this file and the
194		Vim Controller will no longer know of these changes.
195
196							*E744*
197Read-only file
198		Vim normally allows changes to a read-only file and only
199		enforces the read-only rule if you try to write the file.
200		However, NetBeans does not let you make changes to a file
201		which is read-only and becomes confused if Vim does this.
202		So Vim does not allow modifications to files when run
203		in NetBeans mode.
204
205==============================================================================
2065. Running Vim in NetBeans mode				*netbeans-run*
207
208There are two different ways to run Vim in NetBeans mode:
209
210	+ an IDE may start Vim with the |-nb| command line argument
211	+ NetBeans can be started from within Vim with the |:nbstart| command
212
213Vim uses a 3 second timeout on trying to make the connection.
214
215							*netbeans-parameters*
216Three forms can be used to setup the NetBeans connection parameters.
217When started from the command line, the |-nb| command line argument may be:
218
219	-nb={fname}				from a file
220	-nb:{hostname}:{addr}:{password}	directly
221	-nb					from a file or environment
222
223When started from within Vim, the |:nbstart| optional argument may be:
224
225	={fname}				from a file
226	:{hostname}:{addr}:{password}	        directly
227	<MISSING ARGUMENT>			from a file or environment
228
229							*E660* *E668*
230When NetBeans is started from the command line, for security reasons, the best
231method is to write the information in a file readable only by the user.  The
232name of the file can be passed with the "-nb={fname}" argument or, when "-nb"
233is used without a parameter, the environment variable "__NETBEANS_CONINFO".
234The file must contain these three lines, in any order:
235
236	host={hostname}
237	port={addr}
238	auth={password}
239
240Other lines are ignored.  The Vim Controller is responsible for deleting the
241file afterwards.
242
243{hostname} is the name of the machine where Vim Controller is running.  When
244omitted the environment variable "__NETBEANS_HOST" is used or the default
245"localhost".
246
247{addr} is the port number for the NetBeans interface.  When omitted the
248environment variable "__NETBEANS_SOCKET" is used or the default 3219.
249
250{password} is the password for connecting to NetBeans.  When omitted the
251environment variable "__NETBEANS_VIM_PASSWORD" is used or "changeme".
252
253Vim will initiate a socket connection (client side) to the specified host and
254port upon startup. The password will be sent with the AUTH event when the
255connection has been established.
256
257
258==============================================================================
2596. NetBeans protocol					*netbeans-protocol*
260
261The communication between the Vim Controller and Vim uses plain text
262messages.  This protocol was first designed to work with the external editor
263module of NetBeans.  Later it was extended to work with Agide (A-A-P GUI IDE,
264see http://www.a-a-p.org) and then with other IDE. The extensions are marked
265with "version 2.1".
266
267Version 2.2 of the protocol has several minor changes which should only affect
268NetBeans users (ie, not Agide users).  However, a bug was fixed which could
269cause confusion.  The netbeans_saved() function sent a "save" protocol
270command.  In protocol version 2.1 and earlier this was incorrectly interpreted
271as a notification that a write had taken place.  In reality, it told NetBeans
272to save the file so multiple writes were being done.  This caused various
273problems and has been fixed in 2.2.  To decrease the likelihood of this
274confusion happening again, netbeans_saved() has been renamed to
275netbeans_save_buffer().
276
277We are now at version 2.5.  For the differences between 2.4 and 2.5 search for
278"2.5" below.
279
280The messages are currently sent over a socket.  Since the messages are in
281plain UTF-8 text this protocol could also be used with any other communication
282mechanism.
283
284Netbeans messages are processed when Vim is idle, waiting for user input.
285When Vim is run in non-interactive mode, for example when running an automated
286test case that sources a Vim script, the idle loop may not be called often
287enough. In that case, insert |:sleep| commands in the Vim script. The |:sleep|
288command does invoke Netbeans messages processing.
289
2906.1 Kinds of messages		|nb-messages|
2916.2 Terms			|nb-terms|
2926.3 Commands			|nb-commands|
2936.4 Functions and Replies	|nb-functions|
2946.5 Events			|nb-events|
2956.6 Special messages		|nb-special|
2966.7 Protocol errors		|nb-protocol_errors|
297
298
2996.1 Kinds of messages					*nb-messages*
300
301There are four kinds of messages:
302
303kind		direction	comment ~
304Command		IDE -> editor	no reply necessary
305Function	IDE -> editor	editor must send back a reply
306Reply		editor -> IDE	only in response to a Function
307Event		editor -> IDE	no reply necessary
308
309The messages are sent as a single line with a terminating newline character.
310Arguments are separated by a single space.  The first item of the message
311depends on the kind of message:
312
313kind		first item		example ~
314Command		bufID:name!seqno	11:showBalloon!123 "text"
315Function	bufID:name/seqno	11:getLength/123
316Reply		seqno			123 5000
317Event		bufID:name=seqno	11:keyCommand=123 "S-F2"
318
319
320
3216.2 Terms						*nb-terms*
322
323bufID		Buffer number.  A message may be either for a specific buffer
324		or generic.  Generic messages use a bufID of zero.  NOTE: this
325		buffer ID is assigned by the IDE, it is not Vim's buffer
326		number.  The bufID must be a sequentially rising number,
327		starting at one.  When the 'switchbuf' option is set to
328		"usetab" and the "bufID" buffer is not found in the current
329		tab page, the netbeans commands and functions that set this
330		buffer as the current buffer will jump to the first open
331		window that contains this buffer in other tab pages instead of
332		replacing the buffer in the current window.
333
334seqno		The IDE uses a sequence number for Commands and Functions.  A
335		Reply must use the sequence number of the Function that it is
336		associated with.  A zero sequence number can be used for
337		Events (the seqno of the last received Command or Function can
338		also be used).
339
340string		Argument in double quotes.  Text is in UTF-8 encoding.  This
341		means ASCII is passed as-is.  Special characters are
342		represented with a backslash:
343			\"	double quote
344			\n	newline
345			\r	carriage-return
346			\t	tab (optional, also works literally)
347			\\	backslash
348		NUL bytes are not allowed!
349
350boolean		Argument with two possible values:
351			T	true
352			F	false
353
354number		Argument with a decimal number.
355
356color		Argument with either a decimal number, "none" (without the
357		quotes) or the name of a color (without the quotes) defined
358		both in the color list in |highlight-ctermfg| and in the color
359		list in |gui-colors|.
360		New in version 2.5.
361
362offset		A number argument that indicates a byte position in a buffer.
363		The first byte has offset zero.  Line breaks are counted for
364		how they appear in the file (CR/LF counts for two bytes).
365		Note that a multibyte character is counted for the number of
366		bytes it takes.
367
368lnum/col	Argument with a line number and column number position.  The
369		line number starts with one, the column is the byte position,
370		starting with zero.  Note that a multibyte character counts
371		for several columns.
372
373pathname	String argument: file name with full path.
374
375
3766.3 Commands						*nb-commands*
377
378actionMenuItem	Not implemented.
379
380actionSensitivity
381		Not implemented.
382
383addAnno serNum typeNum off len
384		Place an annotation in this buffer.
385		Arguments:
386		   serNum	number	serial number of this placed
387					annotation, used to be able to remove
388					it
389		   typeNum	number	sequence number of the annotation
390					defined with defineAnnoType for this
391					buffer
392		   off		number	offset where annotation is to be placed
393		   len		number	not used
394		In version 2.1 "lnum/col" can be used instead of "off".
395
396balloonResult text
397		Not implemented.
398
399close		Close the buffer.  This leaves us without current buffer, very
400		dangerous to use!
401
402create		Creates a buffer without a name.  Replaces the current buffer
403		(it's hidden when it was changed).
404		The Vim Controller should use this as the first command for a
405		file that is being opened.  The sequence of commands could be:
406			create
407			setCaretListener	(ignored)
408			setModified		(no effect)
409			setContentType		(ignored)
410			startDocumentListen
411			setTitle
412			setFullName
413
414defineAnnoType typeNum typeName tooltip glyphFile fg bg
415		Define a type of annotation for this buffer.
416		Arguments:
417		   typeNum	number	sequence number (not really used)
418		   typeName	string	name that identifies this annotation
419		   tooltip	string	not used
420		   glyphFile	string	name of icon file
421		   fg		color	foreground color for line highlighting
422		   bg		color	background color for line highlighting
423		Vim will define a sign for the annotation.
424		When color is a number, this is the "#rrggbb" Red, Green and
425		Blue values of the color (see |gui-colors|) and the
426		highlighting is only defined for gVim.
427		When color is a name, this color is defined both for Vim
428		running in a color terminal and for gVim.
429		When both "fg" and "bg" are "none" no line highlighting is
430		used (new in version 2.1).
431		When "glyphFile" is empty, no text sign is used (new in
432		version 2.1).
433		When "glyphFile" is one or two characters long, a text sign is
434		defined (new in version 2.1).
435		Note: the annotations will be defined in sequence, and the
436		sequence number is later used with addAnno.
437
438editFile pathname
439		Set the name for the buffer and edit the file "pathname", a
440		string argument.
441		Normal way for the IDE to tell the editor to edit a file.
442
443		You must set a bufId different of 0 with this command to
444		assign a bufId to the buffer. It will trigger an event
445		fileOpened with a bufId of 0 but the buffer has been assigned.
446
447		If the IDE is going to pass the file text to the editor use
448		these commands instead:
449			setFullName
450			insert
451			initDone
452		New in version 2.1.
453
454enableBalloonEval
455		Not implemented.
456
457endAtomic	End an atomic operation.  The changes between "startAtomic"
458		and "endAtomic" can be undone as one operation.  But it's not
459		implemented yet.  Redraw when necessary.
460
461guard off len
462		Mark an area in the buffer as guarded.  This means it cannot
463		be edited.  "off" and "len" are numbers and specify the text
464		to be guarded.
465
466initDone	Mark the buffer as ready for use.  Implicitly makes the buffer
467		the current buffer.  Fires the BufReadPost autocommand event.
468
469insertDone starteol readonly
470		Sent by Vim Controller to tell Vim an initial file insert is
471		done.  This triggers a read message being printed.  If
472		"starteol" is "F" then the last line doesn't have a EOL. If
473		"readonly" is "T" then the file is marked as readonly. Prior
474		to version 2.3, no read messages were displayed after opening
475		a file.  New in version 2.3.
476
477moveAnnoToFront serNum
478		Not implemented.
479
480netbeansBuffer isNetbeansBuffer
481		If "isNetbeansBuffer" is "T" then this buffer is "owned" by
482		NetBeans.
483		New in version 2.2.
484
485putBufferNumber pathname
486		Associate a buffer number with the Vim buffer by the name
487		"pathname", a string argument.  To be used when the editor
488		reported editing another file to the IDE and the IDE needs to
489		tell the editor what buffer number it will use for this file.
490		Also marks the buffer as initialized.
491		New in version 2.1.
492
493raise		Bring the editor to the foreground.
494		Only when Vim is run with a GUI.
495		New in version 2.1.
496
497removeAnno serNum
498		Remove a previously placed annotation for this buffer.
499		"serNum" is the same number used in addAnno.
500
501save		Save the buffer when it was modified.  The other side of the
502		interface is expected to write the buffer and invoke
503		"setModified" to reset the "changed" flag of the buffer.
504		The writing is skipped when one of these conditions is true:
505		- 'write' is not set
506		- the buffer is read-only
507		- the buffer does not have a file name
508		- 'buftype' disallows writing
509		New in version 2.2.
510
511saveDone
512		Sent by Vim Controller to tell Vim a save is done.  This
513		triggers a save message being printed.  Prior to version 2.3,
514		no save messages were displayed after a save.
515		New in version 2.3.
516
517setAsUser	Not implemented.
518
519setBufferNumber pathname
520		Associate a buffer number with Vim buffer by the name
521		"pathname".  To be used when the editor reported editing
522		another file to the IDE and the IDE needs to tell the editor
523		what buffer number it will use for this file.
524		Has the side effect of making the buffer the current buffer.
525		See "putBufferNumber" for a more useful command.
526
527setContentType
528		Not implemented.
529
530setDot off	Make the buffer the current buffer and set the cursor at the
531		specified position.  If the buffer is open in another window
532		than make that window the current window.
533		If there are folds they are opened to make the cursor line
534		visible.
535		In version 2.1 "lnum/col" can be used instead of "off".
536
537setExitDelay seconds
538		Set the delay for exiting to "seconds", a number.
539		This delay is used to give the IDE a chance to handle things
540		before really exiting.  The default delay is two seconds.
541		New in version 2.1.
542		Obsolete in version 2.3.
543
544setFullName pathname
545		Set the file name to be used for a buffer to "pathname", a
546		string argument.
547		Used when the IDE wants to edit a file under control of the
548		IDE.  This makes the buffer the current buffer, but does not
549		read the file.  "insert" commands will be used next to set the
550		contents.
551
552setLocAndSize	Not implemented.
553
554setMark		Not implemented.
555
556setModified modified
557		When the boolean argument "modified" is "T" mark the buffer as
558		modified, when it is "F" mark it as unmodified.
559
560setModtime time
561		Update a buffers modification time after the file has been
562		saved directly by the Vim Controller.
563		New in version 2.3.
564
565setReadOnly readonly
566		When the boolean argument "readonly" is "T" for True, mark the
567		buffer as readonly, when it is "F" for False, mark it as not
568		readonly.  Implemented in version 2.3.
569
570setStyle	Not implemented.
571
572setTitle name
573		Set the title for the buffer to "name", a string argument.
574		The title is only used for the Vim Controller functions, not
575		by Vim.
576
577setVisible visible
578		When the boolean argument "visible" is "T", goto the buffer.
579		The "F" argument does nothing.
580
581showBalloon text
582		Show a balloon (popup window) at the mouse pointer position,
583		containing "text", a string argument.  The balloon should
584		disappear when the mouse is moved more than a few pixels.
585		Only when Vim is run with a GUI.
586		New in version 2.1.
587
588specialKeys
589		Map a set of keys (mostly function keys) to be passed back
590		to the Vim Controller for processing.  This lets regular IDE
591		hotkeys be used from Vim.
592		Implemented in version 2.3.
593
594startAtomic	Begin an atomic operation.  The screen will not be updated
595		until "endAtomic" is given.
596
597startCaretListen
598		Not implemented.
599
600startDocumentListen
601		Mark the buffer to report changes to the IDE with the
602		"insert" and "remove" events.  The default is to report
603		changes.
604
605stopCaretListen
606		Not implemented.
607
608stopDocumentListen
609		Mark the buffer to stop reporting changes to the IDE.
610		Opposite of startDocumentListen.
611		NOTE: if "netbeansBuffer" was used to mark this buffer as a
612		NetBeans buffer, then the buffer is deleted in Vim.  This is
613		for compatibility with Sun Studio 10.
614
615unguard off len
616		Opposite of "guard", remove guarding for a text area.
617		Also sets the current buffer, if necessary.
618
619version		Not implemented.
620
621
6226.4 Functions and Replies				*nb-functions*
623
624getDot		Not implemented.
625
626getCursor	Return the current buffer and cursor position.
627		The reply is:
628			seqno bufID lnum col off
629		seqno = sequence number of the function
630		bufID = buffer ID of the current buffer (if this is unknown -1
631			is used)
632		lnum  = line number of the cursor (first line is one)
633		col   = column number of the cursor (in bytes, zero based)
634		off   = offset of the cursor in the buffer (in bytes)
635		New in version 2.1.
636
637getLength	Return the length of the buffer in bytes.
638		Reply example for a buffer with 5000 bytes:
639			123 5000
640		TODO: explain use of partial line.
641
642getMark		Not implemented.
643
644getAnno serNum
645		Return the line number of the annotation in the buffer.
646		Argument:
647			serNum		serial number of this placed annotation
648		The reply is:
649			123 lnum	line number of the annotation
650			123 0		invalid annotation serial number
651		New in version 2.4.
652
653getModified	When a buffer is specified: Return zero if the buffer does not
654		have changes, one if it does have changes.
655		When no buffer is specified (buffer number zero): Return the
656		number of buffers with changes.  When the result is zero it's
657		safe to tell Vim to exit.
658		New in version 2.1.
659
660getText		Return the contents of the buffer as a string.
661		Reply example for a buffer with two lines
662			123 "first line\nsecond line\n"
663		NOTE: docs indicate an offset and length argument, but this is
664		not implemented.
665
666insert off text
667		Insert "text" before position "off".  "text" is a string
668		argument, "off" a number.
669		"text" should have a "\n" (newline) at the end of each line.
670		Or "\r\n" when 'fileformat' is "dos".  When using "insert" in
671		an empty buffer Vim will set 'fileformat' accordingly.
672		When "off" points to the start of a line the text is inserted
673		above this line.  Thus when "off" is zero lines are inserted
674		before the first line.
675		When "off" points after the start of a line, possibly on the
676		NUL at the end of a line, the first line of text is appended
677		to this line.  Further lines come below it.
678		Possible replies:
679			123		no problem
680			123 !message	failed
681		Note that the message in the reply is not quoted.
682		Also sets the current buffer, if necessary.
683		Does not move the cursor to the changed text.
684		Resets undo information.
685
686remove off length
687		Delete "length" bytes of text at position "off".  Both
688		arguments are numbers.
689		Possible replies:
690			123		no problem
691			123 !message	failed
692		Note that the message in the reply is not quoted.
693		Also sets the current buffer, if necessary.
694
695saveAndExit	Perform the equivalent of closing Vim: ":confirm qall".
696		If there are no changed files or the user does not cancel the
697		operation Vim exits and no result is sent back.  The IDE can
698		consider closing the connection as a successful result.
699		If the user cancels the operation the number of modified
700		buffers that remains is returned and Vim does not exit.
701		New in version 2.1.
702
703
7046.5 Events						*nb-events*
705
706balloonEval off len type
707		The mouse pointer rests on text for a short while.  When "len"
708		is zero, there is no selection and the pointer is at position
709		"off".  When "len" is non-zero the text from position "off" to
710		"off" + "len" is selected.
711		Only sent after "enableBalloonEval" was used for this buffer.
712		"type" is not yet defined.
713		Not implemented yet.
714
715balloonText text
716		Used when 'ballooneval' is set and the mouse pointer rests on
717		some text for a moment.  "text" is a string, the text under
718		the mouse pointer.
719		Only when Vim is run with a GUI.
720		New in version 2.1.
721
722buttonRelease button lnum col
723		Report which button was pressed and the location of the cursor
724		at the time of the release.  Only for buffers that are owned
725		by the Vim Controller.  This event is not sent if the button
726		was released while the mouse was in the status line or in a
727		separator line.  If col is less than 1 the button release was
728		in the sign area.
729		New in version 2.2.
730
731disconnect
732		Tell the Vim Controller that Vim is exiting and not to try and
733		read or write more commands.
734		New in version 2.3.
735
736fileClosed	Not implemented.
737
738fileModified	Not implemented.
739
740fileOpened pathname open modified
741		A file was opened by the user.
742		Arguments:
743		   pathname	string	  name of the file
744		   open		boolean   always "T"
745		   modified	boolean   always "F"
746
747geometry cols rows x y
748		Report the size and position of the editor window.
749		Arguments:
750		   cols		number	  number of text columns
751		   rows		number	  number of text rows
752		   x		number	  pixel position on screen
753		   y		number	  pixel position on screen
754		Only works for Motif.
755
756insert off text
757		Text "text" has been inserted in Vim at position "off".
758		Only fired when enabled, see "startDocumentListen".
759
760invokeAction	Not implemented.
761
762keyCommand keyName
763		Reports a special key being pressed with name "keyName", which
764		is a string.
765		Supported key names:
766			F1		function key 1
767			F2		function key 2
768			...
769			F12		function key 12
770
771			' '		space (without the quotes)
772			!		exclamation mark
773			...		any other ASCII printable character
774			~		tilde
775
776			X		any unrecognized key
777
778		The key may be prepended by "C", "S" and/or "M" for Control,
779		Shift and Meta (Alt) modifiers.  If there is a modifier a dash
780		is used to separate it from the key name.  For example:
781		"C-F2".
782		ASCII characters are new in version 2.1.
783
784keyAtPos keyName lnum/col
785		Like "keyCommand" and also report the line number and column
786		of the cursor.
787		New in version 2.1.
788
789killed		A file was deleted or wiped out by the user and the buffer
790		annotations have been removed.  The bufID number for this
791		buffer has become invalid.  Only for files that have been
792		assigned a bufID number by the IDE.
793
794newDotAndMark off off
795		Reports the position of the cursor being at "off" bytes into
796		the buffer.  Only sent just before a "keyCommand" event.
797
798quit		Not implemented.
799
800remove off len
801		Text was deleted in Vim at position "off" with byte length
802		"len".
803		Only fired when enabled, see "startDocumentListen".
804
805revert		Not implemented.
806
807save		The buffer has been saved and is now unmodified.
808		Only fired when enabled, see "startDocumentListen".
809
810startupDone	The editor has finished its startup work and is ready for
811		editing files.
812		New in version 2.1.
813
814unmodified	The buffer is now unmodified.
815		Only fired when enabled, see "startDocumentListen".
816
817version vers	Report the version of the interface implementation.  Vim
818		reports "2.4" (including the quotes).
819
820
8216.6 Special messages					*nb-special*
822
823These messages do not follow the style of the messages above.  They are
824terminated by a newline character.
825
826ACCEPT		Not used.
827
828AUTH password	editor -> IDE: First message that the editor sends to the IDE.
829		Must contain the password for the socket server, as specified
830		with the |-nb| argument.  No quotes are used!
831
832DISCONNECT	IDE -> editor: break the connection.  The editor will exit.
833		The IDE must only send this message when there are no unsaved
834		changes!
835
836DETACH		IDE -> editor: break the connection without exiting the
837		editor.  Used when the IDE exits without bringing down the
838		editor as well.
839		New in version 2.1.
840
841REJECT		Not used.
842
843
8446.7 Protocol errors					*nb-protocol_errors*
845
846These errors occur when a message violates the protocol:
847*E627* *E628* *E629* *E632* *E633* *E634* *E635* *E636*
848*E637* *E638* *E639* *E640* *E641* *E642* *E643* *E644* *E645* *E646*
849*E647* *E648* *E649* *E650* *E651* *E652*
850
851
852==============================================================================
8537. NetBeans commands					*netbeans-commands*
854
855							*:nbstart* *E511* *E838*
856:nbs[tart] {connection}	Start a new Netbeans session with {connection} as the
857			socket connection parameters.  The format of
858			{connection} is described in |netbeans-parameters|.
859			At any time, one may check if the netbeans socket is
860			connected by running the command:
861			':echo has("netbeans_enabled")'
862
863							*:nbclose*
864:nbc[lose]		Close the current NetBeans session. Remove all placed
865			signs.
866
867							*:nbkey*
868:nb[key] {key}		Pass the {key} to the Vim Controller for processing.
869			When a hot-key has been installed with the specialKeys
870			command, this command can be used to generate a hotkey
871			message to the Vim Controller.
872			This command can also be used to pass any text to the
873			Vim  Controller. It is used by Pyclewn, for example,
874			to build the complete set of gdb commands as Vim user
875			commands.
876			The events newDotAndMark, keyCommand and keyAtPos are
877			generated (in this order).
878
879
880==============================================================================
8818. Known problems					*netbeans-problems*
882
883NUL bytes are not possible.  For editor -> IDE they will appear as NL
884characters.  For IDE -> editor they cannot be inserted.
885
886A NetBeans session may be initiated with Vim running in a terminal, and
887continued later in a GUI environment after running the |:gui| command. In this
888case, the highlighting defined for the NetBeans annotations may be cleared
889when the ":gui" command sources .gvimrc and this file loads a colorscheme
890that runs the command ":highlight clear".
891New in version 2.5.
892
893
894==============================================================================
8959. Debugging NetBeans protocol				*netbeans-debugging*
896
897To debug the Vim protocol, you must first compile Vim with debugging support
898and NetBeans debugging support.  See |netbeans-configure| for instructions
899about Vim compiling and how to enable debug support.
900
901When running Vim, set the following environment variables:
902
903    export SPRO_GVIM_DEBUG=netbeans.log
904    export SPRO_GVIM_DLEVEL=0xffffffff
905
906Vim will then log all the incoming and outgoing messages of the NetBeans
907protocol to the file netbeans.log .
908
909The content of netbeans.log after a session looks like this:
910Tue May 20 17:19:27 2008
911EVT: 0:startupDone=0
912CMD 1: (1) create
913CMD 2: (1) setTitle "testfile1.txt"
914CMD 3: (1) setFullName "testfile1.txt"
915EVT(suppressed): 1:remove=3 0 -1
916EVT: 1:fileOpened=0 "d:\\work\\vimWrapper\\vimWrapper2\\pyvimwrapper\\tests\\testfile1.txt" T F
917CMD 4: (1) initDone
918FUN 5: (0) getCursor
919REP 5: 1 1 0 0
920CMD 6: (2) create
921CMD 7: (2) setTitle "testfile2.txt"
922CMD 8: (2) setFullName "testfile2.txt"
923EVT(suppressed): 2:remove=8 0 -1
924EVT: 2:fileOpened=0 "d:\\work\\vimWrapper\\vimWrapper2\\pyvimwrapper\\tests\\testfile2.txt" T F
925CMD 9: (2) initDone
926
927
928==============================================================================
92910. NetBeans External Editor
930
931NOTE: This information is obsolete!  Only relevant if you are using an old
932version of NetBeans.
933
934
93510.1. Downloading NetBeans			*netbeans-download*
936
937The NetBeans IDE is available for download from netbeans.org.  You can download
938a released version, download sources, or use CVS to download the current
939source tree.  If you choose to download sources, follow directions from
940netbeans.org on building NetBeans.
941
942Depending on the version of NetBeans you download, you may need to do further
943work to get the required External Editor module.  This is the module which lets
944NetBeans work with gvim (or xemacs :-).  See http://externaleditor.netbeans.org
945for details on downloading this module if your NetBeans release does not have
946it.
947
948For C, C++, and Fortran support you will also need the cpp module.  See
949http://cpp.netbeans.org for information regarding this module.
950
951You can also download Sun ONE Studio from Sun Microsystems, Inc for a 30 day
952free trial.  See http://www.sun.com for further details.
953
954
95510.2. NetBeans Key Bindings			*netbeans-keybindings*
956
957Vim understands a number of key bindings that execute NetBeans commands.
958These are typically all the Function key combinations.  To execute a NetBeans
959command, the user must press the Pause key followed by a NetBeans key binding.
960For example, in order to compile a Java file, the NetBeans key binding is
961"F9".  So, while in vim, press "Pause F9" to compile a java file.  To toggle a
962breakpoint at the current line, press "Pause Shift F8".
963
964The Pause key is Function key 21.  If you don't have a working Pause key and
965want to use F8 instead, use: >
966
967	:map <F8> <F21>
968
969The External Editor module dynamically reads the NetBeans key bindings so vim
970should always have the latest key bindings, even when NetBeans changes them.
971
972
97310.3. Preparing NetBeans for Vim		*netbeans-preparation*
974
975In order for NetBeans to work with vim, the NetBeans External Editor module
976must be loaded and enabled.  If you have a Sun ONE Studio Enterprise Edition
977then this module should be loaded and enabled.  If you have a NetBeans release
978you may need to find another way of obtaining this open source module.
979
980You can check if you have this module by opening the Tools->Options dialog
981and drilling down to the "Modules" list (IDE Configuration->System->Modules).
982If your Modules list has an entry for "External Editor" you must make sure
983it is enabled (the "Enabled" property should have the value "True").  If your
984Modules list has no External Editor see the next section on |obtaining-exted|.
985
986
98710.4. Obtaining the External Editor Module	*obtaining-exted*
988
989There are 2 ways of obtaining the External Editor module.  The easiest way
990is to use the NetBeans Update Center to download and install the module.
991Unfortunately, some versions do not have this module in their update
992center.  If you cannot download via the update center you will need to
993download sources and build the module.  I will try and get the module
994available from the NetBeans Update Center so building will be unnecessary.
995Also check http://externaleditor.netbeans.org for other availability options.
996
997To download the External Editor sources via CVS and build your own module,
998see http://externaleditor.netbeans.org and http://www.netbeans.org.
999Unfortunately, this is not a trivial procedure.
1000
1001
100210.5. Setting up NetBeans to run with Vim	*netbeans-setup*
1003
1004Assuming you have loaded and enabled the NetBeans External Editor module
1005as described in |netbeans-preparation| all you need to do is verify that
1006the gvim command line is properly configured for your environment.
1007
1008Open the Tools->Options dialog and open the Editing category.  Select the
1009External Editor.  The right hand pane should contain a Properties tab and
1010an Expert tab.  In the Properties tab make sure the "Editor Type" is set
1011to "Vim".  In the Expert tab make sure the "Vim Command" is correct.
1012
1013You should be careful if you change the "Vim Command".  There are command
1014line options there which must be there for the connection to be properly
1015set up.  You can change the command name but that's about it.  If your gvim
1016can be found by your $PATH then the Vim Command can start with "gvim".  If
1017you don't want gvim searched from your $PATH then hard code in the full
1018Unix path name.  At this point you should get a gvim for any source file
1019you open in NetBeans.
1020
1021If some files come up in gvim and others (with different file suffixes) come
1022up in the default NetBeans editor you should verify the MIME type in the
1023Expert tab MIME Type property.  NetBeans is MIME oriented and the External
1024Editor will only open MIME types specified in this property.
1025
1026
1027 vim:tw=78:ts=8:noet:ft=help:norl:
1028