Atom: Adding Reveal in TreeView with the ReSharper Locate File Shortcut

There’s one feature I just love about ReSharper is the Locate File in Solution Explorer in Visual Studio.

For me, Visual Studio is too heavy for JavaScript development. So I use Atom and I seriously missed this feature.

Until I added it myself. With 2 lines of code declaration.

1
2
'atom-text-editor':
'alt-shift-l': 'tree-view:reveal-active-file'

To add this to your shortcuts, just go in File > Keymap... and paste the above in the opened file.

What other shortcuts are you guys using?