DEV Community

Cover image for Todo Tomorrow for VS Code ✅
Artem Sapegin
Artem Sapegin

Posted on

1

Todo Tomorrow for VS Code ✅

I've tried many similar extensions to highlight TODO and FIXME comments, but all were either doing too much or too little, and hard to configure. That's why I created my own.

Todo Tomorrow

Here are the main features of the extension:

  • Very minimal and fast
  • Useful defaults to cover most use cases
  • Supports Bash, CSS, Elixir, Erlang, HTML, JavaScript, Lua, Markdown, Perl, PHP, Python, R, Ruby, SQL, TypeScript, and any other language with C-style comments (// or /* */)
  • Doesn't add distracting highlights to the scrollbar
  • Supports light and dark modes out of the box, and doesn’t come with insanely bright colors by default

Try it now in VS Code!

You can also look at the source code on GitHub.

Reinvent your career. Join DEV.

It takes one minute and is worth it for your career.

Get started

Top comments (0)

typescript

11 Tips That Make You a Better Typescript Programmer

1 Think in {Set}

Type is an everyday concept to programmers, but it’s surprisingly difficult to define it succinctly. I find it helpful to use Set as a conceptual model instead.

#2 Understand declared type and narrowed type

One extremely powerful typescript feature is automatic type narrowing based on control flow. This means a variable has two types associated with it at any specific point of code location: a declaration type and a narrowed type.

#3 Use discriminated union instead of optional fields

...

Read the whole post now!

👋 Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay