DEV Community

Tobias Timm
Tobias Timm

Posted on

4

Convert any Visual Studio Code Theme to Sublime Text 3 or IntelliJ IDEA

Today I wanted to share my work in progress open-source project code-theme-converter.

Working with Visual Studio Code is a daily routine. Still, there are moments where I prefer to use other editors like Sublime Text 3 or WebStorm.

Opening these editors without using my themes was a huge bummer for me.
To solve this problem, I've created this package to "easily" convert themes to Sublime Text 3 or IDEA IDE's.

Currently supported is only converting a theme to a Sublime color scheme, with more to come soon.

Top comments (0)

11 Tips That Make You a Better Typescript Programmer

typescript

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

Please leave a ❀️ or a friendly comment on this post if you found it helpful!

Okay