Customizability of the IDEs - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T02:22:50Z http://stackoverflow.com/feeds/question/655006 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/655006/customizability-of-the-ides 2 Customizability of the IDEs Chathuranga Chandrasekara 2009-03-17T16:31:58Z 2009-03-19T10:22:35Z <p>I am thinking of modifying an existing IDE (Ex : By developing a plugin) to provide support for a proprietary scripting language. I just need to implement few features like syntax highlighting, Autocompleting etc. (i.e the requirements are really simple). What would be the best IDE or Text editor to integrate the feature. As an example if I think to develop an eclipse plugin for that it would be a pain. </p> <p>What do you think about Notepad ++?</p> http://stackoverflow.com/questions/655006/customizability-of-the-ides/655030#655030 1 Answer by ldigas for Customizability of the IDEs ldigas 2009-03-17T16:37:02Z 2009-03-17T18:11:05Z <p>In vim you can easily add your custom syntax highlighting rules by adding another file in the syntax folder; for the details it is best to look at the help.</p> <p>If I remember correctly notepad++ also allows defining custom syntax files.</p> http://stackoverflow.com/questions/655006/customizability-of-the-ides/655054#655054 2 Answer by mmyers for Customizability of the IDEs mmyers 2009-03-17T16:42:33Z 2009-03-17T16:42:33Z <p>You might want to give the NetBeans <a href="http://wiki.netbeans.org/GLFTutorial" rel="nofollow">Generic Language Framework</a> a try.</p> <blockquote> <p>NetBeans project called Generic Languages Framework allows you to define a programming language and integrate it to NetBeans IDE. In the first step you should describe the language - lexical part (define tokens using regular expressions) and syntax (grammar rules). In the second step you can define how to visualize this language in NetBeans. You can define colors for tokens (syntax coloring) or folding (based on grammar rules). You can define what parts of this language should be displayed in the navigator, and how to indent this language plus many other features. </p> <p>This tutorial should guide you through the process of creating new NetBeans module, adding languages support into it, describing lexical and syntax structure of your language and adding support for all standard editor # features for your language. </p> </blockquote> http://stackoverflow.com/questions/655006/customizability-of-the-ides/655077#655077 1 Answer by Paulo Guedes for Customizability of the IDEs Paulo Guedes 2009-03-17T16:46:34Z 2009-03-17T17:22:11Z <p>Notepad++ allows you to define custom syntax highlight files in a very easy way, but it's not a very good solution for auto-completion (look at <a href="http://stackoverflow.com/questions/484742/notepad-and-code-completion">this</a> SO question).</p> <p>If you want a real IDE to extend, I suggest you to use <a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a>.</p> <p><strong>Update</strong>: <a href="http://www.ibm.com/developerworks/opensource/library/os-eclipse-plugindev1/" rel="nofollow">Tutorial</a> on how to develop an Eclipse plugin.</p>