Add directory to existing Sublime Text window

I created couple of very simple command line aliases today, and I like them both very much.

This one introduce s command that opens current directory in a new Sublime Text window:

alias s="subl ."

And this one does the same thing, but it will add current directory to an existing Sublime Text window if it is already open:

alias ss="subl --add ."


Somewhat related: