This very simple :atom: package allows you open any of your file instantly from Atom editor within any application you want.
.tree-view
panel as well.You can open any of your file from context menu:
Open File in App
menuOr you can use keyboard shortcuts:
defaultApplication
:
String
of a path to the default application (default ""
)"code"
would open every non-bound file in VS Code. (But you know, we, :atom: lovers, should NOT do this at any cost 😜 !)applicationBindings
:
Object
that maps String
of a file extension to String
of a path to an application (default {}
){ ".html": "C:/\"Program Files (x86)\"/Google/Chrome/Application/chrome.exe", ".txt": "notepad.exe" }
will open every .html
files in chrome and .txt
files in notepad, in Windows OS~/.atom/config.cson
"*": ... "open-in-app": applicationBindings: { ".py": "code" } # edit Python in VSCode defaultApplication: "chrome" # open files in Chrome by default ...
This package is under MIT License.
While development, I cited considerable amount of code from Open in Browser Atom.io Package created by @magbicaleman.