Reputation: 6584
i have to build an ide for my programming language , and i need to implement features like :
syntax highlighting , auto complete , line numbering , ...
so i need to know how to implement these features or if there is an existing components for code editing please refer to it .
thanks
Upvotes: 1
Views: 845
Reputation: 16122
The correct answer is there is no easy way to build an ide.
Some ideas: Eclipse has a good framework as mentioned, you could make a plugin for notepad++, you could custom build SciTE.
Upvotes: 3