mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Remove netbeans and sun workshop
This commit is contained in:
parent
23dc43919e
commit
2fe018ab88
@ -2974,8 +2974,7 @@ static void ml_flush_line(buf_T *buf)
|
||||
return; /* nothing to do */
|
||||
|
||||
if (buf->b_ml.ml_flags & ML_LINE_DIRTY) {
|
||||
/* This code doesn't work recursively, but Netbeans may call back here
|
||||
* when obtaining the cursor position. */
|
||||
/* This code doesn't work recursively. */
|
||||
if (entered)
|
||||
return;
|
||||
entered = TRUE;
|
||||
|
@ -1710,10 +1710,7 @@ del_bytes (
|
||||
|
||||
/*
|
||||
* If the old line has been allocated the deletion can be done in the
|
||||
* existing line. Otherwise a new line has to be allocated
|
||||
* Can't do this when using Netbeans, because we would need to invoke
|
||||
* netbeans_removed(), which deallocates the line. Let ml_replace() take
|
||||
* care of notifying Netbeans.
|
||||
* existing line. Otherwise a new line has to be allocated.
|
||||
*/
|
||||
was_alloced = ml_line_alloced(); /* check if oldp was allocated */
|
||||
if (was_alloced)
|
||||
|
@ -1293,7 +1293,6 @@ int get_real_state(void)
|
||||
#if defined(FEAT_SESSION) || defined(MSWIN) || defined(FEAT_GUI_MAC) \
|
||||
|| ((defined(FEAT_GUI_GTK)) \
|
||||
&& ( defined(FEAT_WINDOWS) || defined(FEAT_DND)) ) \
|
||||
|| defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
|
||||
|| defined(PROTO)
|
||||
/*
|
||||
* Change to a file's directory.
|
||||
|
10
src/ui.c
10
src/ui.c
@ -292,17 +292,7 @@ void ui_breakcheck(void)
|
||||
* descriptions which would otherwise overflow. The buffer is considered full
|
||||
* when only this extra space (or part of it) remains.
|
||||
*/
|
||||
#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) \
|
||||
|| defined(FEAT_CLIENTSERVER)
|
||||
/*
|
||||
* Sun WorkShop and NetBeans stuff debugger commands into the input buffer.
|
||||
* This requires a larger buffer...
|
||||
* (Madsen) Go with this for remote input as well ...
|
||||
*/
|
||||
# define INBUFLEN 4096
|
||||
#else
|
||||
# define INBUFLEN 250
|
||||
#endif
|
||||
|
||||
static char_u inbuf[INBUFLEN + MAX_KEY_CODE_LEN];
|
||||
static int inbufcount = 0; /* number of chars in inbuf[] */
|
||||
|
@ -138,7 +138,6 @@ static char *(features[]) = {
|
||||
"+multi_byte",
|
||||
"+multi_lang",
|
||||
"-mzscheme",
|
||||
"-netbeans_intg",
|
||||
"+path_extra",
|
||||
"-perl",
|
||||
"+persistent_undo",
|
||||
@ -161,7 +160,6 @@ static char *(features[]) = {
|
||||
"-startuptime",
|
||||
#endif // ifdef STARTUPTIME
|
||||
"+statusline",
|
||||
"-sun_workshop",
|
||||
"+syntax",
|
||||
"+tag_binary",
|
||||
"+tag_old_static",
|
||||
|
Loading…
Reference in New Issue
Block a user