First, Preface
Use sublime Text also has several years, version also upgraded from 2 to 3, but like cold days drink ice water, warm and cool to know. Initially also do not know where to start, the whole of the whole land to find information, but can access to the information, suffering from their fragmented, one-sided, not enough system and comprehensive, so all the way, consuming a lot of my time and energy. So Sublime wrote this "text 3 full details Guide", one of their own experience is a summary, and second can be for beginners to do a system, comprehensive guidelines, so that they walk away from me at that time detours, so can quickly master Sublime Text this excellent editor.
The version I am currently using is the beta version of sublime Text 3 Build 3083, which is already fairly stable. So all the explanations in this article are based on this version and are examples of the Windows 7 x64 platform. There is no big difference between the other versions.
Second, Sublime Text features
1, Sublime text is a cross-platform code Editor.
2, Sublime text is extensible, and contains a lot of practical plug-ins, we can install their own domain plug-in to multiply productivity.
3. Sublime text is the best choice under the command line environment and graphical interface environment, while using both will greatly improve work efficiency.
4, Sublime text for the fee software, it is recommended to have the ability to pay for use to support developers. But you can always use it without buying it.
Third, download and install
1, Download: The official version is v2.0.2, we open the official website download link http://www.sublimetext.com/3, download sublime Text 3 Build 3083.
where "Windows Sublime" is downloaded to the installer for "thetext Build 3065 x64 Setup.exe"; "Portable version" is downloaded to "Sublime text Build 3065 x64.zip"editor package that can be run without installation after decompression.
If your computer platform is Windows x86, which is a 32-bit system, click "Windows" to download the 32-bit installer, and if you do not want to install it, click on "Portable Version" to download its 32-bit editor package.
2. Install: Double-click on the previous step to download the "Sublime Text Build 3083 x64 Setup.exe", remember to select "Add
To Explorer context menu, add it to the right-click shortcut. Others are installed with the default settings.
3, installation finished, double-click the desktop "Sublime Text 3" shortcut icon, open the program, you can see "Sublime Tex of the Truth."
4, if you do not put "Sublime Text 3" installed in the default path, such as you install it on the D drive, please add environment variables.
Four, Installing plugins
1. Install the package Control
The package control is a plug-in Management Pack, so we'll install it first. With it, we can easily browse, install and uninstall plugins in sublime text.
Open the page https://packagecontrol.io/of the package control and click on the "Install Now" button on the right.
Go to the Https://packagecontrol.io/installation#st3 page, select the "SUBLIME TEXT 3" tab and copy the code snippet inside:
Import Urllib.request,os,hashlib; h = ' eb2297e1a458f27d836c04bb0cbaf282 ' + ' d0e7a3098092775ccb37ca9d6b2e4b7d '; PF = ' package control.sublime-package '; IPP = Sublime.installed_packages_path (); Urllib.request.install_opener (Urllib.request.build_opener (Urllib.request.ProxyHandler ())); by = Urllib.request.urlopen (' http://packagecontrol.io/' + pf.replace (', '%20 ')). read (); DH = hashlib.sha256 (by). Hexdigest (); Print (' Error validating download (got%s instead of%s), please try manual install '% (DH, h)) if DH! = H Else Open (Os.pat H.join (IPP, PF), ' WB '). Write (by)
Double-click the desktop "Sublime text 3" open program, Ctrl + ` shortcut key " ” Open the Sublime text console, paste the previously copied code into the console, press the"eenter"key.
Wait for its installation to close the program, restart the "Sublime Text 3", click the Menu "Preferences" visible "package Control" item, indicating that the plug-in Management Pack has been installed successfully.
Sublime Text 3 Full details Guide (continuous update ... )