Dmitry Ryadnenko
Dmitry Ryadnenko

Reputation: 22512

Quick insert TODO line

Is it possible to setup IDEA to be able to quick insert // TODO lines? For example keybinding or code completion pattern? I didn't find anything.

Upvotes: 5

Views: 7607

Answers (3)

Alex
Alex

Reputation: 7926

Check out the Live Templates feature of IntelliJ. I hope it'll satisfy your needs.

Here's a tutorial video on how to create one.

Upvotes: 9

Sidz
Sidz

Reputation: 31

Live Template fixed my problem. I wanted to add a custom todo comment in intellij with my initials and date so i did this:

// TODO: $date$ [name] $todo$

click here to see image

click here to see image

Upvotes: 3

Ben Weiss
Ben Weiss

Reputation: 17940

Since 1.3 Android Studio ships with a set of live templates. One of which does exactly what you want.

In order to activate it, simply type todo followed by a tab. Also works with fixme and stopship.

Upvotes: 10

Related Questions