IntelliSense in MATLAB Programming - intellisense

Does Matlab support IntelliSense feature?

IntelliSense is Microsoft's name for auto-complete. Matlab has auto-complete. It doesn't have IntelliSense.

Yes, it does, it's more of an auto-complete feature, check the following links,
link1 , link2

Related

Maxscript in any jetbrais IDE?

there is currently maxscript programming support inside sublime text.
I was wondering bacause now the syntax highlighting and everything alreay exists for maxscript, how to go about it to make maxscript a supported programming language inside other ide's or editors?
The jetbrains applications comes to mind first (webstorm etc.)
or even inside open online IDE's like Ace of Codemirror.
Because that would be great.
Does anyone knows if that is at all possible, and how to do that?
None of JetBrains IDEs provide support for maxscript:(, and I'm not aware of any custom plugins for this language.
If all you need is a basic syntax highlighting, you can either try searching for MaxSript textmate bundles (see Is it possible to get Ruby syntax highlighting in PHPStorm?) or register your own file type, defining a syntax highlighting for it (http://www.jetbrains.com/webstorm/webhelp/new-file-type.html).
If none of these options look suitable for you, try developing your own language plugins - see http://confluence.jetbrains.com/display/IDEADEV/Developing+Custom+Language+Plugins+for+IntelliJ+IDEA
I would recommend Microsoft Visual Studio Code with MaxScript syntax plugin. The syntax highlighting and overall coding experience is close to perfect.
Example of MaxScript syntax highlighting you may see here:

Is there a tool like Resharper for Visual Basic 6 IDE

I sadly have to work in the vb6 ide more than i prefer.
I am totally spoiled by the use of Resharper when working with C# in VS2010.
So my question is: Are there any tools out there extending the VB6 ide?
What i miss most are the navigation features like
Find usages
Goto Type
Goto File
and so on.
I don't know if they support those features, but the two tools I've heard recommended are CodeSMART and MZ-Tools.
You could try MZ Tools. That has a very satisfactory "find" function. Not sure about Goto Type or Goto File, though. (I use MZ Tools myself.)
The Zeus IDE can import VB6 projects and it can do class browsing, file and type navigation.

Editing vb.net in netbeans

My work dropped a vb.net program in my lap that I need to modify. Die vb. Die.
Anyway, I work in Netbeans and can't find a module that will allow for syntax highlighting of vb. Is there a creative solution out there for this that doesn't involve using a different IDE?
Thanks guys.
As mentioned in the accepted answer to this question, there is a tutorial for setting up custom syntax highlighting in Netbeans here (direct link to tutorial instead of link to FAQ provided in linked question).
I think you might well find that it's less hassle to just install Visual Studio than to set up Netbeans to highlight VB.Net syntax, but that's up to you. Good luck.

Monodevelop's text editor

There are several articles that instruct how to use avalonedit of sharpdevelop (avalonedit is the editor of sharpdevelop). Is there any article out there that explains how to use monodevelop's text editor? Also, what's the name of that editor; does it have a name? Thanks.
A while ago the previous text editor was replaced by Mono.TextEditor. There's not much documentation on it, or articles about it, but you could look at how it is integrated into MonoDevelop.
Monodevelop was originally a port of Sharpdevelop. You can find a lot of tips on monodevelop here.

IDE for MSIL

There's any number of questions about MSIL on SO but none that directly answer this.
I've been using Textpad which does have a syntax definition file for MSIL and then using ILASM in a command prompt window.
I did find a reference to ILIDE but the link is broken.
Is there an IDE or add-on / plugin to Visual Studio / Eclipse for MSIL that allows syntax highlighting, intellisense, code completion, debugging etc.?
Use MonoDevelop
You can build specially MSIL projects. It's very useful for these issues, also you can use it in both Windows and Linux. What is better than this? :)
I made an extension for Visual Studio 2010 that supports syntax highlighting for IL files (.il) and includes projects with full debugging support for C#, F# and Visual Basic that support embedding and calling IL code directly.
IL Support extension
Enjoy!
I believe you can do it in #develop IDE.
No intellisense though.
I have exactly the same question!
I have found ilide eventually :
http://nida.se/ilide/
(note : strangely, some links to ilide are broken, some of them even mentioning earlier links that are broken , but then supply a link that's broken too. I was able to dowload it and Installed it succesfully from the link above though).
further :
http://sourceforge.net/project/showfiles.php?group_id=112895
seems a very good debugger.
cheers, ph
xacc.ide has syntax highlighting for MSIL, and another odd 20 .NET languages.
See some screenshots here.
IIRC, Visual Studio will give you debugging, if you assemble with /debug.
I think MS had a demo or sample of some VS plugin that helped a bit with IL. I'm not sure what it was named or if it was released.