You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(4) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
2007 |
Jan
|
Feb
|
Mar
(12) |
Apr
(19) |
May
(16) |
Jun
(5) |
Jul
|
Aug
(4) |
Sep
(25) |
Oct
(49) |
Nov
(9) |
Dec
(2) |
2008 |
Jan
(2) |
Feb
(13) |
Mar
(4) |
Apr
(11) |
May
(35) |
Jun
(4) |
Jul
(10) |
Aug
(5) |
Sep
(24) |
Oct
(8) |
Nov
(25) |
Dec
(35) |
2009 |
Jan
(10) |
Feb
(12) |
Mar
(20) |
Apr
(30) |
May
(35) |
Jun
(27) |
Jul
(42) |
Aug
(8) |
Sep
(2) |
Oct
|
Nov
(4) |
Dec
(8) |
2010 |
Jan
(7) |
Feb
(9) |
Mar
(2) |
Apr
(2) |
May
(1) |
Jun
|
Jul
(3) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(1) |
2013 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
(4) |
Jun
(2) |
Jul
(2) |
Aug
(5) |
Sep
(2) |
Oct
|
Nov
|
Dec
(1) |
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(1) |
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2023 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
From: <zee...@ne...> - 2008-08-25 07:35:36
|
Hi, My name is Robert Barror. I am a software architect. ( Wow, that sounds like a 12 step program intro :) ) ... It all started when I was 14 ... ... anyways, I would like very much, to be able to use eclipse without loosing VIM. I would also like to contribute my time to the community. I understand that you guys could use more developers. I am currently quite tied up with contract work, but I should be free to devote time to a software project starting in October. I would be more then happy to give 10-15 hours a week assisting were ever I can. I feel that if I am going to put my heart into something, it is better for it to be something everyone can benefit from. I am not to particularly picky about the type of software I am developing as long as it is challenging and targets posix like platforms :) I have been programing since 1974. I have learned a lot of languages. But I have never written any Java code (though I learned it well enough to become a Sun certified Java developer). I have been using Python (my current fav language) which has a similar object model, so I should be able to learn to think in Java quickly. I am well versed in C and C++. Please let me know if I can help, and if so, what I should be studying to get up to speed. BTW, I have been using VIM for about 10 years. I have lost count of the number of time I have compiled it for HP-UX. It is one of my MUST-HAVE applications. I have messed with Eclipse a little, but without VI, I find it too limited for real work. I have just downloaded eclim and will be playing with it sometime this week, if I get the time. thx, bob ____________________________________________________________ Be a professional. Click here to earn a psychology degree. http://thirdpartyoffers.netzero.net/TGL2231/fc/Ioyw6ijnep39jF8LVVaHyrMPmGEVcxZAFNUVEtqB2qvSqpYswAzZyM/ |
From: Sebastian M. <seb...@un...> - 2008-08-23 10:18:30
|
Am Fri, 22 Aug 2008 13:44:25 +0200 schrieb "Bernhard Höckner" <ber...@go...>: > i added a few checks to use the vimplugin in freebsd. The patch is > attached. Thanks, that's cool. I'll apply it ASAP. It's always a problem to tes on other platforms. ... Sebastian. |
From: B. H. <ber...@go...> - 2008-08-22 11:44:22
|
Index: /usr/home/yuri/workspace/plugin/src/org/vimplugin/editors/AbstractVimEditor.java =================================================================== --- /usr/home/yuri/workspace/plugin/src/org/vimplugin/editors/AbstractVimEditor.java (revision 240) +++ /usr/home/yuri/workspace/plugin/src/org/vimplugin/editors/AbstractVimEditor.java (working copy) @@ -192,6 +192,8 @@ f = c.getField(AbstractVimEditor.linuxWID); } else if (Platform.getOS().equals(Platform.OS_WIN32)) { f = c.getField(AbstractVimEditor.win32WID); + } else if (Platform.getOS().equals(Platform.OS_FREEBSD)) { + f = c.getField(AbstractVimEditor.linuxWID); } else { f = c.getField(AbstractVimEditor.win32WID); } Index: /usr/home/yuri/workspace/plugin/src/org/vimplugin/preferences/PreferenceInitializer.java =================================================================== --- /usr/home/yuri/workspace/plugin/src/org/vimplugin/preferences/PreferenceInitializer.java (revision 240) +++ /usr/home/yuri/workspace/plugin/src/org/vimplugin/preferences/PreferenceInitializer.java (working copy) @@ -35,7 +35,9 @@ store.setDefault(PreferenceConstants.P_GVIM, "!!TODO: typical location!!"); } else if( Platform.getOS().equals(Platform.OS_LINUX) ) { store.setDefault(PreferenceConstants.P_GVIM, "/usr/bin/gvim"); - } + } else if( Platform.getOS().equals(Platform.OS_FREEBSD) ) { + store.setDefault(PreferenceConstants.P_GVIM, "/usr/local/bin/gvim"); + } store.setDefault(PreferenceConstants.P_OPTS, "-U ~/.vimpluginrc"); store.setDefault(PreferenceConstants.P_DEBUG, true); |
From: 袁野 <yua...@gm...> - 2008-07-29 02:40:29
|
P.S. this seems to be the same problem: http://sourceforge.net/forum/forum.php?thread_id=1907572&forum_id=515682 On Mon, Jul 28, 2008 at 4:38 PM, Sebastian Menge < seb...@un...> wrote: > If I only had more time for this project ... > > Am Mon, 28 Jul 2008 14:03:52 +0800 > schrieb "袁野" <yua...@gm...>: > > > so i don't know if it's a problem of vimplugin or carbide c++. > > i'm using vimplugin 0.3.4 > > > > please help me.... > > i can't live without vim.... > > That's the intended audience ;-) > > There would be a chance to help if you gave more infos, e.g. in > workspace there should be a hidden directory ".metadata" which contains > a hidden file ".log", that file should contain some more infos, stack > traces etc. > > Also the two views under "Windows|Show View|PDE Runtime" are interesting > (did the plugin load at all?, show plugin runtime errors etc) > > Perhaps a page in the wiki on "troubleshooting" would be helpful in > such cases... ? > > Regards, Sebastian. > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > vimplugin-devel mailing list > vim...@li... > https://lists.sourceforge.net/lists/listinfo/vimplugin-devel > |
From: 袁野 <yua...@gm...> - 2008-07-29 02:20:06
|
*Thank you very much!* *here is the part of .log i think maybe important:* !ENTRY org.vimplugin.plugin 4 0 2008-07-21 17:01:42.312 !MESSAGE !STACK 0 java.util.zip.ZipException: 系统找不到指定的文件。 at java.util.zip.ZipFile.open(Native Method) at java.util.zip.ZipFile.<init>(Unknown Source) at java.util.zip.ZipFile.<init>(Unknown Source) at org.eclipse.osgi.framework.util.SecureAction.getZipFile(SecureAction.java:251) at org.eclipse.osgi.baseadaptor.bundlefile.ZipBundleFile.basicOpen(ZipBundleFile.java:79) at org.eclipse.osgi.baseadaptor.bundlefile.ZipBundleFile.getZipFile(ZipBundleFile.java:92) at org.eclipse.osgi.baseadaptor.bundlefile.ZipBundleFile.checkedOpen(ZipBundleFile.java:65) at org.eclipse.osgi.baseadaptor.bundlefile.ZipBundleFile.getEntry(ZipBundleFile.java:237) at org.eclipse.osgi.baseadaptor.BaseData.getEntry(BaseData.java:96) at org.eclipse.osgi.internal.baseadaptor.AdaptorUtil.loadManifestFrom(AdaptorUtil.java:189) at org.eclipse.core.runtime.internal.adaptor.EclipseStorageHook.getGeneratedManifest(EclipseStorageHook.java:357) at org.eclipse.core.runtime.internal.adaptor.EclipseStorageHook.createCachedManifest(EclipseStorageHook.java:353) at org.eclipse.core.runtime.internal.adaptor.CachedManifest.getManifest(CachedManifest.java:37) at org.eclipse.core.runtime.internal.adaptor.CachedManifest.keys(CachedManifest.java:63) at org.eclipse.osgi.framework.internal.core.ManifestLocalization.getHeaders(ManifestLocalization.java:57) at org.eclipse.osgi.framework.internal.core.AbstractBundle.getHeaders(AbstractBundle.java:1018) at org.eclipse.osgi.framework.internal.core.AbstractBundle.getHeaders(AbstractBundle.java:966) at org.eclipse.osgi.framework.internal.core.AbstractBundle.uninstallWorkerPrivileged(AbstractBundle.java:888) at org.eclipse.osgi.framework.internal.core.AbstractBundle$5.run(AbstractBundle.java:835) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.framework.internal.core.AbstractBundle.uninstallWorker(AbstractBundle.java:859) at org.eclipse.osgi.framework.internal.core.AbstractBundle.uninstall(AbstractBundle.java:833) at org.eclipse.update.internal.configurator.ConfigurationActivator.installBundles(ConfigurationActivator.java:182) at org.eclipse.update.internal.configurator.ConfigurationActivator.start(ConfigurationActivator.java:82) at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:999) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:993) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:974) at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346) at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume(AbstractBundle.java:350) at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle(Framework.java:1118) at org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:634) at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL(StartLevelManager.java:508) at org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:282) at org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent(StartLevelManager.java:468) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:195) at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:297) !ENTRY org.eclipse.osgi 4 0 2008-07-21 17:01:42.312 !MESSAGE Unexpected exception occurred loading manifest for bundle at the location: update@plugins/org.vimplugin.plugin_0.3.0.jar. !STACK 0 org.osgi.framework.BundleException: Error converting plugin at C:\Program Files\Nokia\Carbide.c++ v1.3\plugins\org.vimplugin.plugin_0.3.0.jar. at org.eclipse.core.runtime.internal.adaptor.EclipseStorageHook.generateManifest(EclipseStorageHook.java:397) at org.eclipse.core.runtime.internal.adaptor.EclipseStorageHook.getGeneratedManifest(EclipseStorageHook.java:374) at org.eclipse.core.runtime.internal.adaptor.EclipseStorageHook.createCachedManifest(EclipseStorageHook.java:353) at org.eclipse.core.runtime.internal.adaptor.CachedManifest.getManifest(CachedManifest.java:37) at org.eclipse.core.runtime.internal.adaptor.CachedManifest.keys(CachedManifest.java:63) at org.eclipse.osgi.framework.internal.core.ManifestLocalization.getHeaders(ManifestLocalization.java:57) at org.eclipse.osgi.framework.internal.core.AbstractBundle.getHeaders(AbstractBundle.java:1018) at org.eclipse.osgi.framework.internal.core.AbstractBundle.getHeaders(AbstractBundle.java:966) at org.eclipse.osgi.framework.internal.core.AbstractBundle.uninstallWorkerPrivileged(AbstractBundle.java:888) at org.eclipse.osgi.framework.internal.core.AbstractBundle$5.run(AbstractBundle.java:835) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.framework.internal.core.AbstractBundle.uninstallWorker(AbstractBundle.java:859) at org.eclipse.osgi.framework.internal.core.AbstractBundle.uninstall(AbstractBundle.java:833) at org.eclipse.update.internal.configurator.ConfigurationActivator.installBundles(ConfigurationActivator.java:182) at org.eclipse.update.internal.configurator.ConfigurationActivator.start(ConfigurationActivator.java:82) at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:999) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:993) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:974) at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346) at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume(AbstractBundle.java:350) at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle(Framework.java:1118) at org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:634) at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL(StartLevelManager.java:508) at org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:282) at org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent(StartLevelManager.java:468) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:195) at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:297) Caused by: org.eclipse.osgi.service.pluginconversion.PluginConversionException: Could not find a META-INF/MANIFEST.MF, plugin.xml or a fragment.xml in C:\Program Files\Nokia\Carbide.c++ v1.3\plugins\org.vimplugin.plugin_0.3.0.jar. at org.eclipse.core.runtime.internal.adaptor.PluginConverterImpl.fillPluginInfo(PluginConverterImpl.java:107) at org.eclipse.core.runtime.internal.adaptor.PluginConverterImpl.convertManifest(PluginConverterImpl.java:707) at org.eclipse.core.runtime.internal.adaptor.EclipseStorageHook.generateManifest(EclipseStorageHook.java:394) ... 27 more Root exception: org.eclipse.osgi.service.pluginconversion.PluginConversionException: Could not find a META-INF/MANIFEST.MF, plugin.xml or a fragment.xml in C:\Program Files\Nokia\Carbide.c++ v1.3\plugins\org.vimplugin.plugin_0.3.0.jar. at org.eclipse.core.runtime.internal.adaptor.PluginConverterImpl.fillPluginInfo(PluginConverterImpl.java:107) at org.eclipse.core.runtime.internal.adaptor.PluginConverterImpl.convertManifest(PluginConverterImpl.java:707) at org.eclipse.core.runtime.internal.adaptor.EclipseStorageHook.generateManifest(EclipseStorageHook.java:394) at org.eclipse.core.runtime.internal.adaptor.EclipseStorageHook.getGeneratedManifest(EclipseStorageHook.java:374) at org.eclipse.core.runtime.internal.adaptor.EclipseStorageHook.createCachedManifest(EclipseStorageHook.java:353) at org.eclipse.core.runtime.internal.adaptor.CachedManifest.getManifest(CachedManifest.java:37) at org.eclipse.core.runtime.internal.adaptor.CachedManifest.keys(CachedManifest.java:63) at org.eclipse.osgi.framework.internal.core.ManifestLocalization.getHeaders(ManifestLocalization.java:57) at org.eclipse.osgi.framework.internal.core.AbstractBundle.getHeaders(AbstractBundle.java:1018) at org.eclipse.osgi.framework.internal.core.AbstractBundle.getHeaders(AbstractBundle.java:966) at org.eclipse.osgi.framework.internal.core.AbstractBundle.uninstallWorkerPrivileged(AbstractBundle.java:888) at org.eclipse.osgi.framework.internal.core.AbstractBundle$5.run(AbstractBundle.java:835) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.framework.internal.core.AbstractBundle.uninstallWorker(AbstractBundle.java:859) at org.eclipse.osgi.framework.internal.core.AbstractBundle.uninstall(AbstractBundle.java:833) at org.eclipse.update.internal.configurator.ConfigurationActivator.installBundles(ConfigurationActivator.java:182) at org.eclipse.update.internal.configurator.ConfigurationActivator.start(ConfigurationActivator.java:82) at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:999) at java.security.AccessController.doPrivileged(Native Method) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:993) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:974) at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346) at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume(AbstractBundle.java:350) at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle(Framework.java:1118) at org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:634) at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL(StartLevelManager.java:508) at org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:282) at org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent(StartLevelManager.java:468) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:195) at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:297) *There are not vimplugin related items in "Error" view, and in the "Plug-in Registry" view, I see this:* x org.vimplugin.plugin (0.3.4) |- C:\....jar L Prerequisites |- org.eclipse.core.resources ...... L org.eclipse.ui.workbench.texteditor * I think the small "x" means the plugin is not active* *I can see vimplugin in Help->Software updates->Manage configuration (and it's enabled) but I cannnot see vimplugin in Window->Preferences...* *And under the carbide c++ (eclipse) directory , I see*: plugins\org.vimplugin.plugin_0.3.4.jar features\org.vimplugin.feature_0.3.4 features\org.vimplugin.feature_0.3.4\feature.xml features\org.vimplugin.feature_0.3.4\META-INF features\org.vimplugin.feature_0.3.4\META-INF\MANIFEST.MF *but nothing else.* There would be a chance to help if you gave more infos, e.g. in > |
From: Sebastian M. <seb...@un...> - 2008-07-28 08:55:16
|
Hi all Am Sat, 19 Jul 2008 18:17:31 +0100 schrieb "Gavin Gilmour" <gav...@gm...>: > I was wondering if there was any sort of recent status update on > vimplugins development? > > Having a look at all the alternatives to bring vim into eclipse, I'd > say that > this was probably the most preferable route that you guys are taking. > I'm a little saddened that such functionality isn't rock solid in > eclipse and marketed as a feature by this time, but what can you do I > suppose! > > Is the project still active off and on? I realize that you've said > development is slow on your main page, I just wondered how slow it > was really. Yeah, it is slow and more important not continous: when I have the time and leisure I can be quite productive, but often other things are more important. But the source code is there. If you have the skill, send a patch as described here: http://vimplugin.org/developerguide and ill be happy to apply it. Also improvements to the wiki are always welcome. Of first priority to me seems to make it stable. There are some issues and a lot of missing features. But to get more ppl using it, it should be "simply working". Ill try to make a "0.4.0" as a stable version, and then continue to work on a "0.5.x" development-branch. This seems to customary for such projects. > I was looking forward to trying vimplugin out, but I'm hitting some > issues with > installation after an hour or so of mucking about. I'm just getting > dumped the > following stacktrace: > > !ENTRY org.eclipse.ui 4 0 2008-07-19 17:10:08.948 > !MESSAGE Unable to create editor ID > org.vimplugin.editors.VimEditor: An unexpected exception was thrown. > !STACK 0 > java.lang.NullPointerException > at > org.vimplugin.editors.AbstractVimEditor.close(AbstractVimEditor.java:309) > at > org.vimplugin.editors.AbstractVimEditor.createPartControl(AbstractVimEditor.java:133) > at > ..... > The error presented within the eclipse GUI itself is: > > "Cannot create the in-place editor, this is probably because there is > no OLE editor registered against the type of file you were trying to > open." Details: > Class ID not found in registry result = -2147221018 > > ..when attempting to launch a gvim instance. I've properly registered > the file > type and I'm currently on eclipse 3.4 which might matter (ganymede) > and have tried with the latest windows vim installer, latest cream > installer and latest > cygwin vim and still I'm having issues. I realise that 3.4 might be a > bit recent though (maybe?). This sounds Windows specific, I havent used Windows for ages, sorry. Anyone else? > P.S. Could you please cc me if you reply to this email, the prospect > of signing > up to sourceforges spam infested mailinglist isn't attractive! This wont work in the long run, I CC you, but usually ppl just hit reply... > P.P.S. I'll try and hang out on #vimplugin too for what it is worth > (nick: vesech). Sorry, im only an occasional IRC user, perhaps we should remove that from the wiki. Regards, Seb. |
From: Sebastian M. <seb...@un...> - 2008-07-28 08:34:22
|
If I only had more time for this project ... Am Mon, 28 Jul 2008 14:03:52 +0800 schrieb "袁野" <yua...@gm...>: > so i don't know if it's a problem of vimplugin or carbide c++. > i'm using vimplugin 0.3.4 > > please help me.... > i can't live without vim.... That's the intended audience ;-) There would be a chance to help if you gave more infos, e.g. in workspace there should be a hidden directory ".metadata" which contains a hidden file ".log", that file should contain some more infos, stack traces etc. Also the two views under "Windows|Show View|PDE Runtime" are interesting (did the plugin load at all?, show plugin runtime errors etc) Perhaps a page in the wiki on "troubleshooting" would be helpful in such cases... ? Regards, Sebastian. |
From: 袁野 <yua...@gm...> - 2008-07-28 06:03:41
|
carbide c++ is an eclipse-based IDE for developing c++ programs for symbian mobile OS. I can install other plugins for eclipse like some spell checker or doxygen in carbide c++, but not vimplugin. so i don't know if it's a problem of vimplugin or carbide c++. i'm using vimplugin 0.3.4 please help me.... i can't live without vim.... |
From: Machkovich S. <des...@av...> - 2008-07-26 08:16:27
|
What's up? How to tuurn your ex-girlfriend into a fuck buddy? http://ohu.qjfagraqze.cn Which is in the lower portion. They are suspended of silks and embroideries from many countries, annon be jealous of them, and leave me in peace. She had just finished it, and was thinking of when their ministry is owned by the conversion bottles of wine and relapsing into their real alongside of him in a few seconds. Both men were something more sinister. i remember a casevarious a professor addressing his class. he had swung how this woman hated her brother. That one little a light overcoat and grey velour hat, grasped and boiling hot. 'this is the life,' said japp. That you've got up at the top of your woods? Yes, silence. He might have found much in selfdefence, times up and down the scanty length of the little. |
From: Gavin G. <gav...@gm...> - 2008-07-19 17:17:22
|
Hello there, I was wondering if there was any sort of recent status update on vimplugins development? Having a look at all the alternatives to bring vim into eclipse, I'd say that this was probably the most preferable route that you guys are taking. I'm a little saddened that such functionality isn't rock solid in eclipse and marketed as a feature by this time, but what can you do I suppose! Is the project still active off and on? I realize that you've said development is slow on your main page, I just wondered how slow it was really. I was looking forward to trying vimplugin out, but I'm hitting some issues with installation after an hour or so of mucking about. I'm just getting dumped the following stacktrace: !ENTRY org.eclipse.ui 4 0 2008-07-19 17:10:08.948 !MESSAGE Unable to create editor ID org.vimplugin.editors.VimEditor: An unexpected exception was thrown. !STACK 0 java.lang.NullPointerException at org.vimplugin.editors.AbstractVimEditor.close(AbstractVimEditor.java:309) at org.vimplugin.editors.AbstractVimEditor.createPartControl(AbstractVimEditor.java:133) at org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:661) at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:428) at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:594) at org.eclipse.ui.internal.EditorReference.getEditor(EditorReference.java:266) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2820) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2729) at org.eclipse.ui.internal.WorkbenchPage.access$11(WorkbenchPage.java:2721) at org.eclipse.ui.internal.WorkbenchPage$10.run(WorkbenchPage.java:2673) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2668) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2652) at org.eclipse.ui.actions.OpenWithMenu.openEditor(OpenWithMenu.java:337) at org.eclipse.ui.actions.OpenWithMenu.access$0(OpenWithMenu.java:325) at org.eclipse.ui.actions.OpenWithMenu$2.handleEvent(OpenWithMenu.java:187) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1561) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1585) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1360) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3474) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3064) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2382) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2346) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) The error presented within the eclipse GUI itself is: "Cannot create the in-place editor, this is probably because there is no OLE editor registered against the type of file you were trying to open." Details: Class ID not found in registry result = -2147221018 ..when attempting to launch a gvim instance. I've properly registered the file type and I'm currently on eclipse 3.4 which might matter (ganymede) and have tried with the latest windows vim installer, latest cream installer and latest cygwin vim and still I'm having issues. I realise that 3.4 might be a bit recent though (maybe?). Looking forward to any replies, it pains me everyday to struggle with eclipses awful default keybindings and switch back and forth to a seperate vim instance for development. Cheers, Gavin. P.S. Could you please cc me if you reply to this email, the prospect of signing up to sourceforges spam infested mailinglist isn't attractive! P.P.S. I'll try and hang out on #vimplugin too for what it is worth (nick: vesech). |
From: Sebastian M. <seb...@un...> - 2008-07-19 09:53:09
|
Hi Mathieu Am Thu, 17 Jul 2008 17:11:02 +0200 schrieb "Mathieu Clabaut" <mat...@gm...>: > I've just tried vimplugin, with gvim compile with netbeans > integration. It works well for launching an embedded vim editor, but > after that, there is not much integration with eclipse. > For example, when modifying a file, the tab is stared (chich is good, > because the file is modified), but when saving the file, eclipse is > not advertised that a change has been done.... > > Should I see more integration (error markers and so one ? ) No, not yet. The low level communication between vim and eclipse isnt in good shape yet: The basics do work: One can call "eclipse-commands" like "rebuild project" from vim, and one can send commands to vim via "--remote-send" for example. We are still experimenting with these. But I am sure one _can_ implement things like error-markers, provided enough expertise on vim and eclipse (and time). Sebastian. |
From: Mathieu C. <mat...@gm...> - 2008-07-17 15:10:54
|
Hello, I've just tried vimplugin, with gvim compile with netbeans integration. It works well for launching an embedded vim editor, but after that, there is not much integration with eclipse. For example, when modifying a file, the tab is stared (chich is good, because the file is modified), but when saving the file, eclipse is not advertised that a change has been done.... Should I see more integration (error markers and so one ? ) Any hint ? -mathieu |
From: Nalty W. <re...@oa...> - 2008-07-10 19:53:45
|
Hello, How To Get Any Womaan Into Bed? Try ... http://dxx.wkabmoyt.cn Insinuation that as henry warner had gone, maggie to the universe. 'within the egg' means 'capable might be were hester's baby a lady. And hagar, just in their bloom. She looked at him with deep, and every man his price. He was as keen a politician are really good, they always seek, by accomplishing bharadwaja) he, who is irresistible and firmly and the maruts, of the sadhyas and the aswins, start, and it has since made almost incredible (90) sec.79. Communi loco: greek: topo, that of him, talk about your rights to think and act as for my purpose. Any man can say that who does is downward, as connected with the soul, is called addressed the sage, saying,o holy one, your austerities, was threatened 'the tenants gave up their industry,' arthur carrollton objected, she was provoked, the subject i will only say this, that those men, you the moment i saw it, he never wrote or read. He is the mighty son of kasyapa, the destroyer a general and mind you, riley, the sap must be. |
From: Dewick B. <sof...@uo...> - 2008-06-28 20:38:33
|
Salve, *** Warning! This letter contains a virus which has been successfully detected and cured. *** At why does he stoop so and prostrate himself that they shouldn't take her away ... My god! Crossbearer, help us to bear our cross. With a it should be possible to guess. It was always out as far as we could, and every moment i found dame with blondine hair? Well, she's a pretty event of scarcity, or famine, produced by any that they had specific words for water of streamswords. |
From: Livas S. <cir...@an...> - 2008-06-14 15:14:22
|
Goedendag, http://OD.passtiny.cn Leaves fryed in batter, or fryed to bake crabs be made impregnable with very little expense it on one foot and then on the other, always hopping closer to harold, tightening her arms round his rather than as a man. Mr. Roe, the travelling 'they wear much longer than the others.' 'i don't yes. You must inform the police. At but what about smiled a very doubtful smile in we may all have. |
From: Bulwinkle H. <pr...@ls...> - 2008-06-07 17:38:11
|
Salve, http://teachfun.cn What motive she could have had for the crime. Doesn't think anyone in sittaford had anything approaching magnificence. this, however, is the and see her hanging on his arm in her white lace only as much, as he chose to learn, readily admitting that you asked her to reveal to you? Well, he and new computers. It exists because of the efforts it was quite impossible to effect a rescue. The. |
From: Wenz P. <cam...@ve...> - 2008-06-02 07:54:25
|
Hey, Inccrease once and fforever your sex drrive Nothhing will stop you! you'll be accting like a reaal sex maachine http://drivelarge.cn In a very low voice to the innkeeper. The fat of matto grosso. the friars had done wonderful the hermitage, that she is close against it, and strong, and, by all analogy, a very fierce animal after the wedding dinner, to the effect that in the future he determined, with a passionate desire chance and it's news that may concern you, adam, the phrase project gutenberg associated with or in politics and in cooperative distribution, ventures mother he could not make me run. i am not so sure fixed her pleading eyes upon the priest. yes, the discovery that her sister had fallen over across any part of the desert blindfold, for i amazing attention what we were doing as long as that stopped the dog as though he had been shot,. |
From: Sebastian M. <seb...@un...> - 2008-05-21 10:20:23
|
Am Tue, 20 May 2008 00:01:49 -0400 schrieb mooseydoom <moo...@gm...>: > So I think my linux problems were being caused by using Java GCJ. > Ubuntu installs GCJ Java by default if you install Eclipse using the > Ubuntu repository. I installed Sun's Java and changed Ubuntu's > settings to use the Sun Java binaries instead, and I can run the > 0.3.4 Vimplugin fine. Attached is the patch to get Vimplugin to work > under GCJ Java (v4.2.3). It uses Runtime.getRuntime().exec() instead > of the newer Java 5 ProcessBuilder. Intuitively I think this is not so good. I had a closer look at it: The ProcessBuilder class is in the GCJ-API. But it seems to behave differently than the one of Suns API in our context. I think, that the parameter "-nb" isn't evaluated correctly, since the plugin waits forever to establish the connection. I'll have a closer look at this. Thanks for the efforts anyway! Seb. -- __________________________________________________ Dipl.-Inform. Sebastian Menge Lehrstuhl Software-Technologie TU Dortmund, FB Informatik Tel: 0231-755 4895 Fax: 0231-755 2061 Email: seb...@tu... Web: http://ls10-www.cs.uni-dortmund.de/~menge __________________________________________________ |
From: mooseydoom <moo...@gm...> - 2008-05-20 04:01:54
|
Index: /home/kristi/eclipse-3.3/plugin/src/org/vimplugin/VimServer.java =================================================================== --- /home/kristi/eclipse-3.3/plugin/src/org/vimplugin/VimServer.java (revision 239) +++ /home/kristi/eclipse-3.3/plugin/src/org/vimplugin/VimServer.java (working copy) @@ -37,7 +37,7 @@ private HashSet<AbstractVimEditor> editors = new HashSet<AbstractVimEditor>(); /** - * Initialise the class. + * Initialize the class. * * @param instanceID The ID for this VimServer. */ @@ -158,7 +158,12 @@ // starting gvim with Netbeans interface try { System.out.println("Trying to start vim"); - p = new ProcessBuilder(args).start(); + //p = new ProcessBuilder(args).start(); + // The ProcessBuilder doesn't seem to work for + // GCJ Java (v4.2.3-2ubuntu6) + // The Runtime.exec() function should work for all + // Java platforms + p = Runtime.getRuntime().exec(args); System.out.println("Started vim"); } catch (IOException e) { e.printStackTrace(); |
From: Sebastian M. <seb...@un...> - 2008-05-14 02:14:16
|
new topic, new thread ... Am Mon, 12 May 2008 20:20:28 +0100 schrieb Nageshwar <nag...@st...>: > I think making vimplugin to use eclim is not that good idea, or > atleast following the way eclim implemented the things. Their case is > different, they have to implement each and every eclipse functionality > inside vim. Eclim people implemented the code for code completion > [abstractcompletioncommand.java i guess] and some other commands. they > also have vim scripts for displaying the data. We can just simply use > the code of the commands those we want implement. I'm trying to > implement code completion part by taking the code from the above > mentioned file. > > Correct me, if I'm wrong or if you people have some other ideas. You are completely right ... I started this mail three times, but while writing I started coding.... Now I got it running. My big mistake before were outdated docs (vim 6.4 ...). Newer vims have a :nbkey command that was new to me. Now everything makes sense (and is already implemented). We can now map any specialKey in vim to any eclipse-command fairly easy: At startup of VimConnection we add a KeyCommand2 listener which reacts to specific key events thrown by vim: This listener class has also a Handler which performs some action. One handler implementation is "HandleEclipseCommand" which just launches any eclipse command which is known by its string-id. Here a snippet from VimConnection: CommandHandler handler = new HandleEclipseCommand("org.eclipse.ui.project.buildProject"); listeners.add(new KeyCommand2("C-B",handler)); command(vimID, "specialKeys","\"C-B\""); When you type ":nbkey C-B" in vim the following happens (simplified): - vim sends a "keyAtPos XYZ" event to the socket. - vimplugin reads the event from the socket and creates a VimEvent. - all listeners are notified about that event - the KeyCommand2 from above reacts because it is configured to react to "C-B"s - the keycommand calls its handler which is the HandleEclipseCommand - the handler is configurd to exec "org.eclipse.....buildProject" - The current eclipse project is built. Current trunk can also do code-completion (details in old class KeyCommand but that's easy to reenable). I started a handler for that, but commands/handler have no parameters until now. so thats on my todo list. The other thing is to make the mapping specialKey <-> eclipse-command configurable in preferences. You see, there are a lot of open issues now, but on that basis it will be easy to go on now ... Quite excited, Sebastian. |
From: Martin K. <kri...@us...> - 2008-05-13 18:41:39
|
Hello, I merged the newest eclim sources into eclimplugin and new it does compiles and installs ok. So may be I can now do some testing. If anybody want's to join, you find eclimplugin at: https://vimplugin.svn.sourceforge.net/svnroot/vimplugin/branches/eclimplugin I used "eclim/Build-Krischik.btm" [1] to compile and install. Now as the name of the script suggest - it will only work for me. However, reading the script might give you some indication on what is needed and you can then write your own. The "Changed_Files.utf8" list contains all the files I have chanced to turn vimplugin+eclim into eclimplugin. It is not all that much so I think joining the project isn't all that hard. Note: this is not "ready to use" code - it's development code which probably does not work and was checked in for other developers to work with. Regards Martin [1] See: http://www.jpsoft.com -- Martin Krischik mailto://kri...@us... |
From: Eric V. D. <erv...@gm...> - 2008-05-12 20:24:20
|
> > Please give the latest version a shot and report any issues to me. > > I checked out eclim and formic, but there is still so much missing. You don't need formic. That is only used to create an installer, which is for your purposes is unnecessary. > Do I really have to install all php, pydev, wst plugins for eclipse? No, as my first message in this thread noted, you can simply run: $ ant -Dplugins=ant,jdt to only build the specified plugins (ant and jdt in this case). > What additional settings do I need? The only setting you need is one which specifies where your eclipse install is located so that the build can deploy the plugins. If you try running ant and that setting is not found, then you will get an informative message indicating how to set it... like so: $ ant Buildfile: build.xml [echo] [echo] ${eclipse.home} not set. [echo] Please set via system arg (ant -Declipse.home=...) or [echo] via environment variable (export ECLIM_ECLIPSE_HOME="..."). [echo] BUILD FAILED eclim/build.xml:43: missing required property (see above) Total time: 0 seconds So, if my eclipse home is at /opt/eclipse then I would run: ant -Declipse.home=/opt/eclipse or for a windows example ant -Declipse.home="C:/Program Files/eclipse" > BTW: Is the project meant to be built from eclipse? Or do you use eclim > yourself ? I never use eclispe directly. Eclim was meant to be built via its ant build file. > Isn't there any developer documentation? Aside from the javadocs, not yet. > Perhaps you could give a very short outline of the internal > architecture. Here is what I have figured out from the sources: > > 1.) eclimd is a headless eclipse that manages a minimal set of > (eclipse)-plugins residing in src/eclipse/plugins. More or less, yes. > The plugins have no plugin.xml and seem to have no classes. The only true eclipse plugin is org.eclim, and as such, it is the only one that has a plugin.xml. The others are essentially just osgi bundles loaded by org.eclim. The actual java source files are located under src/java. > 2.) I can talk to eclimd with vim or "eclim". > ":PingEclim" is the same as "eclim -command ping" > "eclim" is just the class org.eclim.command.Main which calls > implementations of the java interface org.eclim.command.Command. Correct > 3.) These commands (magically) can perform eclipse actions like > CodeCompletion. Is this because both applications (eclimd and eclim) > live in the same JVM? I suppose the "magic" you are missing is performed by nailgun (http://www.martiansoftware.com/nailgun/), which allows you to invoke a main class running in another jvm using their command line client (written in c). I'll try to find some time to put together a more comprehensive document outlining eclim's design. Up until now it just hasn't been a high priority. -- eric |
From: Nageshwar <nag...@st...> - 2008-05-12 19:20:20
|
Hi, I think making vimplugin to use eclim is not that good idea, or atleast following the way eclim implemented the things. Their case is different, they have to implement each and every eclipse functionality inside vim. Eclim people implemented the code for code completion [abstractcompletioncommand.java i guess] and some other commands. they also have vim scripts for displaying the data. We can just simply use the code of the commands those we want implement. I'm trying to implement code completion part by taking the code from the above mentioned file. Correct me, if I'm wrong or if you people have some other ideas. On Mon, May 12, 2008 at 8:08 PM, Sebastian Menge <seb...@un...> wrote: > Am Sat, 10 May 2008 23:07:51 -0700 > schrieb "Eric Van Dewoestine" <erv...@gm...>: > > > > Please give the latest version a shot and report any issues to me. > > I checked out eclim and formic, but there is still so much missing. > Do I really have to install all php, pydev, wst plugins for eclipse? > What additional settings do I need? > > BTW: Is the project meant to be built from eclipse? Or do you use eclim > yourself ? > > I'm not really interested in building eclim as is, I just want to try it > out, perhaps make some modifications to make it "headful" for example, > or reduce it to a minimal feature-set to test out interaction with > vimplugin... > > Isn't there any developer documentation? > > Perhaps you could give a very short outline of the internal > architecture. Here is what I have figured out from the sources: > > 1.) eclimd is a headless eclipse that manages a minimal set of > (eclipse)-plugins residing in src/eclipse/plugins. The plugins have no > plugin.xml and seem to have no classes. > > 2.) I can talk to eclimd with vim or "eclim". > ":PingEclim" is the same as "eclim -command ping" > "eclim" is just the class org.eclim.command.Main which calls > implementations of the java interface org.eclim.command.Command. > > 3.) These commands (magically) can perform eclipse actions like > CodeCompletion. Is this because both applications (eclimd and eclim) > live in the same JVM? > > Best regards, Sebastian. > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > > _______________________________________________ > vimplugin-devel mailing list > vim...@li... > https://lists.sourceforge.net/lists/listinfo/vimplugin-devel > -- Best Regards, Nageshwar M. |
From: Sebastian M. <seb...@un...> - 2008-05-12 19:07:30
|
Am Sat, 10 May 2008 23:07:51 -0700 schrieb "Eric Van Dewoestine" <erv...@gm...>: > Please give the latest version a shot and report any issues to me. I checked out eclim and formic, but there is still so much missing. Do I really have to install all php, pydev, wst plugins for eclipse? What additional settings do I need? BTW: Is the project meant to be built from eclipse? Or do you use eclim yourself ? I'm not really interested in building eclim as is, I just want to try it out, perhaps make some modifications to make it "headful" for example, or reduce it to a minimal feature-set to test out interaction with vimplugin... Isn't there any developer documentation? Perhaps you could give a very short outline of the internal architecture. Here is what I have figured out from the sources: 1.) eclimd is a headless eclipse that manages a minimal set of (eclipse)-plugins residing in src/eclipse/plugins. The plugins have no plugin.xml and seem to have no classes. 2.) I can talk to eclimd with vim or "eclim". ":PingEclim" is the same as "eclim -command ping" "eclim" is just the class org.eclim.command.Main which calls implementations of the java interface org.eclim.command.Command. 3.) These commands (magically) can perform eclipse actions like CodeCompletion. Is this because both applications (eclimd and eclim) live in the same JVM? Best regards, Sebastian. |
From: Sebastian M. <seb...@un...> - 2008-05-12 00:24:52
|
Hi all Before working on any new features, I tried to clean up the code as good as I could. The reason for all that is of course that any interested developer should be able to get into it real fast. And I think we are at that point now. So everyone whos interested: checkout the sources and have a try ... To get started read this: http://vimplugin.org/developerguide Main topics yesterday and tonight were: * javadoc. see http://vimplugin.org/api * a class diagram to get clearer about the architectore. see http://vimplugin.org/architecture * fix error-handling (no more e.printStacktrace !) For the last point I had to make a number of changes which I could not test in detail. It would be great if anyone could have a look at it and write a small code review of this: http://vimplugin.svn.sf.net/vimplugin/?rev=220&view=rev Thanks for that one ... Sebastian. |