summaryrefslogtreecommitdiff
path: root/src/netbeans.c
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.401v7.3.401Bram Moolenaar2012-01-101-12/+14
| | | | | Problem: A couple more shadowed variables. Solution: Rename the variables.
* updated for version 7.3.400v7.3.400Bram Moolenaar2012-01-101-15/+15
| | | | | Problem: Compiler warnings for shadowed variables. Solution: Remove or rename the variables.
* updated for version 7.3.346v7.3.346Bram Moolenaar2011-10-201-0/+7
| | | | | Problem: It's hard to test netbeans commands. Solution: Process netbeans commands after :sleep. (Xavier de Gaye)
* updated for version 7.3.161v7.3.161Bram Moolenaar2011-04-111-8/+13
| | | | | Problem: Items on the stack may be too big. Solution: Make items static or allocate them.
* updated for version 7.3.160v7.3.160Bram Moolenaar2011-04-111-8/+6
| | | | | | Problem: Unsafe string copying. Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead of strcat().
* updated for version 7.3.149v7.3.149Bram Moolenaar2011-04-011-0/+4
| | | | | | Problem: The cursor disappears after the processing of the 'setDot' netbeans command when vim runs in a terminal. Solution: Show the cursor after a screen update. (Xavier de Gaye, 2011
* updated for version 7.3.096v7.3.096Bram Moolenaar2011-01-041-8/+8
| | | | | | Problem: "gvim -nb" is not interruptable. Leaking file descriptor on netbeans connection error. Solution: Check for CTRL-C typed. Free file descriptor. (Xavier de Gaye)
* updated for version 7.3.089v7.3.089Bram Moolenaar2010-12-241-1/+1
| | | | | Problem: Compiler warning on 64 bit MS-Windows. Solution: Add type cast. (Mike Williams)
* updated for version 7.3.085v7.3.085Bram Moolenaar2010-12-171-4/+0
| | | | | Problem: Inconsistency with preproc symbols. void * computation. Solution: Include vimio.h from vim.h. Add type cast.
* updated for version 7.3.082v7.3.082Bram Moolenaar2010-12-171-6/+0
| | | | | Problem: Leaking file descriptor when hostname doesn't exist. Solution: Remove old debugging lines.
* updated for version 7.3.076v7.3.076Bram Moolenaar2010-12-081-2/+1
| | | | | Problem: Clang warnings for dead code. Solution: Remove it. (Carlo Teubner)
* updated for version 7.3.073v7.3.073Bram Moolenaar2010-12-021-2/+8
| | | | | Problem: Double free memory when netbeans command follows DETACH. Solution: Only free the node when owned. (Xavier de Gaye)
* updated for version 7.3.060v7.3.060Bram Moolenaar2010-11-161-20/+45
| | | | | | Problem: Netbeans: crash when socket is disconnected unexpectedly. Solution: Don't cleanup when a read fails, put a message in the queue and disconnect later. (Xavier de Gaye)
* updated for version 7.3.059v7.3.059Bram Moolenaar2010-11-161-25/+3
| | | | | | | Problem: Netbeans: Problem with recursively handling messages for Athena and Motif. Solution: Call netbeans_parse_messages() in the main loop, like it's done for GTK. (Xavier de Gaye)
* updated for version 7.3.019v7.3.019Bram Moolenaar2010-09-301-0/+10
| | | | | | Problem: ":nbstart" can fail silently. Solution: Give an error when netbeans is not supported by the GUI. (Xavier de Gaye)
* updated for version 7.3.016v7.3.016Bram Moolenaar2010-09-291-8/+8
| | | | | Problem: Netbeans doesn't work under Athena. Solution: Support Athena, just like Motif. (Xavier de Gaye)
* Fix crash when using netbeans in a terminal when compiled with GUI support.Bram Moolenaar2010-08-091-17/+35
| | | | (partly by Xavier de Gaye)
* Remove unused code.Bram Moolenaar2010-08-081-24/+1
|
* Fixes for coverity warnings.Bram Moolenaar2010-07-311-3/+4
|
* Various small fixes from Dominique Pelle.Bram Moolenaar2010-06-261-1/+1
|
* Fix compiler warnings for shadowed variables. Make 'conceal' a long insteadBram Moolenaar2010-06-221-6/+6
| | | | of int.
* Correct use of long instead of off_t for file size. (James Vega)Bram Moolenaar2010-05-311-4/+4
|
* Fix uninit memory read in undo code. Fix uint32_t in proto file.Bram Moolenaar2010-05-241-4/+5
| | | | A few minor changes.
* Fix for Netbeans on MS-Windows not compiling.Bram Moolenaar2010-05-231-9/+14
|
* Add :nbstart and :nbclose.Bram Moolenaar2010-05-221-110/+260
|
* Included the patch to support netbeans in a terminal.Bram Moolenaar2010-05-221-167/+190
|
* Use UINT32_T in the code, define it to uint32_t or unsigned int.Bram Moolenaar2010-05-191-6/+0
| | | | Better autoconf check for uint32_t.
* One more fix for defining uint32_t.Bram Moolenaar2010-05-181-0/+1
|
* Fixed encryption big/little endian test.Bram Moolenaar2010-05-171-0/+5
| | | | | | Use uint32_t to avoid crash on 64 bit machines. Added error numbers for Blowfish errors. Fixed the tiny version not building.
* Add 'relativenumber' patch from Markus Heidelberg.Bram Moolenaar2010-05-161-1/+2
|
* Small fix for compiler warning in Netbeans.Bram Moolenaar2010-05-151-1/+1
|
* updated for version 7.2.392v7.2.392Bram Moolenaar2010-03-101-1/+26
| | | | | Problem: Netbeans hangs reading from a socket at the maximum block size. Solution: Use select() or poll(). (Xavier de Gaye)
* updated for version 7.2.334v7.2.334Bram Moolenaar2010-01-191-19/+33
| | | | | | Problem: Postponing keys in Netbeans interface does not work properly. Solution: Store the key string instead of the number. Avoid an infinite loop. (Mostly by Xavier de Gaye)
* updated for version 7.2.333v7.2.333Bram Moolenaar2010-01-191-4/+4
| | | | | Problem: Warnings from static code analysis. Solution: Small changes to various lines. (Dominique Pelle)
* updated for version 7.2-253v7.2.253Bram Moolenaar2009-09-111-6/+12
|
* updated for version 7.2-213v7.2.213Bram Moolenaar2009-06-241-1/+1
|
* updated for version 7.2-206v7.2.206Bram Moolenaar2009-06-161-0/+1
|
* updated for version 7.2-182v7.2.182Bram Moolenaar2009-05-171-1/+1
|
* updated for version 7.2-181v7.2.181Bram Moolenaar2009-05-171-10/+13
|
* updated for version 7.2-114v7.2.114Bram Moolenaar2009-02-211-3/+3
|
* updated for version 7.2-079v7.2.079Bram Moolenaar2009-01-061-24/+6
|
* updated for version 7.2-071v7.2.071Bram Moolenaar2008-12-241-2/+5
|
* updated for version 7.2-055v7.2.055Bram Moolenaar2008-11-281-9/+3
|
* updated for version 7.2-041v7.2.041Bram Moolenaar2008-11-151-3/+3
|
* updated for version 7.2b-000v7.2b.000Bram Moolenaar2008-07-131-2/+1
|
* updated for version 7.2aBram Moolenaar2008-06-241-48/+119
|
* updated for version 7.1-313v7.1.313Bram Moolenaar2008-06-091-2/+20
|
* updated for version 7.1-283v7.1.283Bram Moolenaar2008-03-161-3/+3
|
* updated for version 7.1-232v7.1.232Bram Moolenaar2008-01-181-1/+1
|
* updated for version 7.1-207v7.1.207Bram Moolenaar2008-01-051-15/+119
|