A plugin that makes eclipse usable documentation editor - eclipse

I'm looking for a plugin that will make Eclipse a decent documentation editor with outlining, images etc... Does anyone know about anything? I've tried NQDoc, which is quite good but doesn't support vim plugin.
Any leads?

I have no direct experience with this tools, but the Eclipse MarketPlace is a good place to list all available solutions.
For instance: all Documentations tools.

Related

CSS autocomplete in Eclipse

I have already gone through several similar questions on SO and elsewhere; none of them provides an answer, not a working one anyway.
When I type <div class="..., why doesn't Eclipse provide me the autocomplete list of available CSS classes in the project? AutoComplete works in PHP code without a problem.
Solutions I have tried:
Trying CTRL + SPACE shortcut.
Checking Code Assist options in Preferences.
Installing Aptana plug-in.
I'm using Eclipse Luna (PDT).
I do not believe that what you are looking for, is supported. I see where you are coming from, however the official documentation does not seem to offer what you want to achieve.
http://www.eclipse.org/pdt/help/html/code_assist_concept.htm

Source map plugin for Eclipse

I was wondering if there is a source map plugin available for Eclipse like the one included in VS' Productivity Power Tools:
Tried to Google it but I've not got any relevant hit.
Isn't it https://github.com/apauzies/eclipse-minimap-view something you are looking for?
How about this group of plugins:
https://marketplace.eclipse.org/content/pde-tools#.UXcQ4ILZpP0
It includes a "Crazy outline view". I have not used the plugin, so I can't vouch for its quality, but I do know the plugin author and he has a record of releasing good plugins. It's worth a shot.

Is there a beginner introduction to writing Eclipse plugins?

I have tried and failed to create to find any good tutorials on writting plugins for Eclipse and the closest I have assumed a large degree of knowledge about the internals of Eclipse.
For what it is worth I have the programming skills to write the plugin. I need help with getting it plugged into Eclipse correctly.
The best tutorial I've found is Lars Vogels Plugin tutorial. Have a look at his other other Eclipse tutorials aswell. Alot of good content there.
Maybe this could be an interesting site for you:
http://www.eclipsepluginsite.com/
It covers setting up your plugin to advanced plugin tutorials.
I personally use it all the time.

How to write plugins for Aptana Studio 3

I would like to know how to write a plugin for Aptana Studio 3. To be more precise i would like to know what language should be used and where should i find an SDK or API. Of course I would also like to know how to integrate my plugin with the actual application since there is no plugin manager ( from what i have read ).
If this is not possible I would like to know if there is already a real-time collaborative code editor plugin, because this is what i intend to implement.
Ok, I have found an answer.
To be able to write plugins for Aptana Studio 3 is actually writing plugins for Eclipse just like #Thomas Clayson said.
If you are searching for real-time collaborative plugin for Aptana, than Saros plugin is your tool. You can find the installation guide here: http://www.saros-project.org/installation.
Hope this helps.

Writing custom IDE on top of Eclipse

I wish to write my own Python IDE (just for the heck of it). I was wondering if I could use Eclipse as a foundation. This will save me from coding a whole lotta things (code editor, intellisense and so on).
To understand what I mean, please take a look at Visual Studio Isolated Shell. I'm essentially looking for something equivalent. Searching on Google hasn't helped. Is there anything like this available in Eclipse's case?
Yes. Eclipse is designed to have additional languages added and there is extensive support for this kind of plugin development. I'm surprised Googling didn't help - there's an entire site dedicated to a tutorial on the basics and a toolkit for developing such things