Windows – Launch Sublime Text 2 from Command Line

command linesublime-text-2windows

How could one invoke Sublime Text from the command line, so that it starts in the current folder? (I'm using the MINGW32 that comes with Git on Windows)

Best Answer

One solution might be to make an alias to fire up sublime to edit a file:

alias edit='c:/Program\ Files/sublime\ text\ 2/sublime_text.exe -w'

So one can do something like:

cd c:/repos/test/
edit test.html

Sublime should open up, and after save+close it should go back to the command prompt.

Related Question