summaryrefslogtreecommitdiffstats
path: root/runtime/doc/netbeans.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-04-19 14:02:26 +0200
committerBram Moolenaar <Bram@vim.org>2020-04-19 14:02:26 +0200
commit173d841e86cf205d8e398091b1da7bb4951714f9 (patch)
treec810c1e38699317265d103e5a85ad444d3ca4133 /runtime/doc/netbeans.txt
parent61fbb3371ee1f6a02706f52fbe064608e159be7c (diff)
patch 8.2.0599: Netbeans interface insufficiently testedv8.2.0599
Problem: Netbeans interface insufficiently tested. Solution: Add more tests. (Yegappan Lakshmanan, closes #5921)
Diffstat (limited to 'runtime/doc/netbeans.txt')
-rw-r--r--runtime/doc/netbeans.txt27
1 files changed, 17 insertions, 10 deletions
diff --git a/runtime/doc/netbeans.txt b/runtime/doc/netbeans.txt
index 743409347c..ac85623670 100644
--- a/runtime/doc/netbeans.txt
+++ b/runtime/doc/netbeans.txt
@@ -40,21 +40,26 @@ or environment providing a socket interface can control Vim using this
protocol. There are existing implementations in C, C++, Python and Java. The
name NetBeans is kept today for historical reasons.
-Current projects using the NetBeans protocol of Vim are:
-- VimIntegration, description of various projects doing Vim Integration:
+Active project using the NetBeans protocol of Vim:
+- Eclim, http://eclim.org/
+
+VimIntegration, description of various projects doing Vim Integration:
http://www.freehackers.org/VimIntegration
-- Agide, an IDE for the AAP project, written in Python:
- http://www.a-a-p.org
+
+Projects using the NetBeans protocol of Vim are or were:
+- Agide, an IDE for the AAP project, written in Python (now replaced by
+ |:Termdebug|): http://www.a-a-p.org
- Clewn, a gdb integration into Vim, written in C:
http://clewn.sourceforge.net/
- Pyclewn, a gdb integration into Vim, written in Python:
http://pyclewn.sourceforge.net/
+- VimWrapper, library to easy Vim integration into IDE:
+ http://www.freehackers.org/VimWrapper
+Outdated projects (links don't work):
- VimPlugin, integration of Vim inside Eclipse:
http://vimplugin.sourceforge.net/wiki/pmwiki.php
- PIDA, IDE written in Python integrating Vim:
http://pida.co.uk/
-- VimWrapper, library to easy Vim integration into IDE:
- http://www.freehackers.org/VimWrapper
Check the specific project pages to see how to use Vim with these projects.
@@ -461,11 +466,13 @@ guard off len
initDone Mark the buffer as ready for use. Implicitly makes the buffer
the current buffer. Fires the BufReadPost autocommand event.
-insertDone
+insertDone starteol readonly
Sent by Vim Controller to tell Vim an initial file insert is
- done. This triggers a read message being printed. Prior to
- version 2.3, no read messages were displayed after opening a
- file. New in version 2.3.
+ done. This triggers a read message being printed. If
+ "starteol" is "F" then the last line doesn't have a EOL. If
+ "readonly" is "T" then the file is marked as readonly. Prior
+ to version 2.3, no read messages were displayed after opening
+ a file. New in version 2.3.
moveAnnoToFront serNum
Not implemented.