dsocolobsky
dsocolobsky

Reputation: 273

Is there any C++ IDE that supports TextMate-Like Snippets?

I'm currently using Code::Blocks for develop C++ programs.

But I miss the nice bundles from SublimeText or Gedit with Plugins. Is there any C++ IDE that allows using Bundles ? Or any Code::Block plugin for that ?

Thanks.

edit: A snippet is when you type "class", and press tab for example: that will create for you the code for the class, so you don't need to type the full code.

Upvotes: 0

Views: 244

Answers (2)

Alex
Alex

Reputation: 15343

Though not an IDE, Vim has snipMate which I use constantly for my code. There's also snippetsemu which I have not tried but have heard good things about.

Upvotes: 1

Nim
Nim

Reputation: 33645

I'm a big fan of Netbeans (the number of times I say this... :) ) anyways, it has a nice feature called "Code Templates" - you can populate this with a list of whatever you want, type the characters and hit tab, and it will fill it in, is that what you are looking for?

Upvotes: 1

Related Questions