Created
May 25, 2012 17:11
-
-
Save andreydjason/2789256 to your computer and use it in GitHub Desktop.
Sublime Text 2 - Codes, Tips, Tricks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install packgage control (http://wbond.net/sublime_packages/package_control/installation) - execute in Sublime Text 2 Console: | |
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' | |
# Use Regex (Regular Expressions) to find text patterns on files | |
# Search in Google for Regexp then use in Sublime Text - you will need to understood then to use and gain productivity, that can be helpful in many situations :) | |
# => Examples: https://github.com/andreydjason/SublimeText-Regexp-Utils |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment