However, setting `EDITOR` to `path/to/subl -w` doesn't work for some commands like `crontab` that expect the editor to be just a path to an executable.
TextMate solved this by allowing you to create an alias to `mate` with the suffix `_wait`, e.g. `mate_wait` which would be executed as if the `-w` option had been used.
It would be great if Sublime Text 2 could also add this valuable feature.
subl_wait
--
#!/bin/sh
subl -w $*
Make sure you have chmod 755 to the new `subl_wait` script and it is inside your path.