Hi,
by my opinion its github page would be the most suitable place to link, I
did not create an extra homepage for it. I am really glad that you find it
useful :)
---
Also some tips to speed development up drastically with ST2:
- try using ST2 as an IDE, open the whole project as a folder
- vital shortcuts:
⌘T select file
⌘⇧F Find in Files...
^ space auto complete
selection -> ⌘^ up/dn move selection
⌘⇧L make selection multi line, (press right
after it)
^⇧ up/dn add lines to selection (⌘U to step back)
⌘D select more of the same
^⌘G select all occurences
middle mouse button column selection
⌘L select line
⌘X delete line
⌘⇧P command palette
also see Package Control here if already
installed
- installing Package Control:
^` open console
paste:
import urllib2,os; pf='Package Control.sublime-package';
ipp=sublime.installed_packages_path(); os.makedirs(ipp) if not
os.path.exists(ipp) else None;
urllib2.install_opener(urllib2.build_opener(urllib2.ProxyHandler()));
open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('
http://sublime.wbond.net/'+pf.replace(' ','%20')).read()); print 'Please
restart Sublime Text to finish installation'
Have fun!
Balazs