Touch your hands to play with the sublime text 3 installation configuration

1, introduction

Sublime Text is a popular code editor software. It is also an advanced text editor for HTML and prose. It can run on Linux, Windows and Mac OS X. It is also a text editor software that many programmers like to use. This paper introduces the installation, cracking, common plug-ins and the use of shortcut keys of sublime text 3. Now let's go into study together.~


Introduction

2, installation

Open the official website address Select the appropriate version to download.

Download instructions

3, crack

As a powerful, compact, sexy and fast Sublime Text, how can you allow a pop-up box to remind you to buy from time to time, and there is an unregistered presence on the top that destroys the aesthetic feeling? OK, click Help - > Enter License and copy the registration code below to eliminate this problem. (Sublime Text3 registration code (pre-3143 version available)

—– BEGIN LICENSE —–
Michael Barnes
Single User License
EA7E-821385
8A353C41 872A0D5C DF9B2950 AFF6F667
C458EA6D 8EA3C286 98D1D650 131A97AB
AA919AEC EF20E143 B361B1E7 4C8B7F04
B085E65E 2F5F5360 8489D422 FB8FC1AA
93F6323C FD7F7544 3F39C318 D95E6480
FCCC7561 8A4A1741 68FA4223 ADCEDE07
200C25BE DBBC4855 C4CFB774 C5EC138C
0FEC1CEF D9DCECEC D3A5DAD1 01316C36
- END LICENSE -

The following is the obsolete part
Sublime Text Build 3065 License key can be copied with the following genuine registration code

—– BEGIN LICENSE —–
Andrew Weber
Single User License
EA7E-855605
813A03DD 5E4AD9E6 6C0EEB94 BC99798F
942194A6 02396E98 E62C9979 4BB979FE
91424C9D A45400BF F6747D88 2FB88078
90F5CC94 1CDC92DC 8457107A F151657B
1D22E383 A997F016 42397640 33F41CFC
E1D0AE85 A0BBD039 0E9C8D55 E1B89D5D
5CDB7036 E56DE1C0 EFCC0840 650CD3A6
B98FC99C 8FAC73EE D2B95564 DF450523
- END LICENSE -

4, plug-in

Using sublime text 3 is of course inseparable from a powerful plug-in library. Following is a summary of some commonly used plug-ins.

  • Package Control

Package Control is very important because it concerns the use of various installation packages that follow. Installation method:
Get into Official website Copy the corresponding code, open the sublime text 3 software to find and enter the View > Show Console directory, and paste the copied code into the input box to return.

Installation code

Version SUBLIME TEXT 3

import urllib.request,os,hashlib; h = '6f4c264a24d933ce70df5dedcf1dcaee' + 'ebe013ee18cced0ef93d5f746d80ef60'; 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.path.join( ipp, pf), 'wb' ).write(by)

Version SUBLIME TEXT 2

import urllib2,os,hashlib; h = '6f4c264a24d933ce70df5dedcf1dcaee' + 'ebe013ee18cced0ef93d5f746d80ef60'; 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()) ); by = urllib2.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); open( os.path.join( ipp, pf), 'wb' ).write(by) if dh == h else None; print('Error validating download (got %s instead of %s), please try manual install' % (dh, h) if dh != h else 'Please restart Sublime Text to finish installation')

Note:

After the Package Control console is installed, open the console with the shortcut key ctrl+shift+p, enter the abbreviation pic or install, and the cursor chooses enter key at the Install Package location. Waiting for a few seconds for the pop-up window to enter the name of the plug-in you want to install, you can open the world gate of installing the plug-in.

Select Install Package

Check the installed plug-in, open the console with the shortcut key ctrl+shift+p, enter the abbreviation list, enter the key to query.

sublime text 3 single plug-in deletion address

  • Emmet
    Function: Quickly write HTML, CSS code
    Example: html: 5 + tab, div_ box + Tab


    Example
  • SublimeCodeIntel
    Function: Code prompt plug-in can help you complete the code, fast and easy to write! Greatly improve efficiency!
    Example:
Example
  • jQuery
    Function: When using jQuery, give the corresponding method and API tips!
    Example:


    Example
  • DocBlocker
    Function: Write notes quickly!
    Example:


    Example
  • AutoFileName
    Function: You can give a hint when you enter the path of the reference file, the most typical is the reference of the picture.
    Example:


    Example
  • View in Browser
    Function: In the browser, you can browse in the browser when you press F12 like dreamweaver.

  • sublimeLinter
    Function: Provide js and css grammar detection! The detection criteria can be implemented in a user-defined way!

  • Bracket Highlighter
    Function: When you select a tag or a piece of code with the mouse, the corresponding opening and closing tags will be highlighted!
    Example:


    Example
  • Jsformat
    Function: js compressed file restore, shortcut key: default is: ctrl+alt+f
    Example:


    Example
  • ChineseLocalizations
    Function: A plug-in to make sublime Chinese


    Example
  • HTML-CSS-JS Prettify
    Instructions: Fast formatting html css js
    Shortcut key: ctrl+shift+h

  • Colorpicker
    Function: Use a color picker to change color
    Shortcut key: ctrl+shift+c
    Example:


    Example
  • SyncedSidebarBg
    Function: Automatically synchronize sidebar background color to edit window background color
    Example:


    Example

Conclusion:

Well, let's write so much first. That's what I summarized. I hope it will be helpful to all the officials.

Little egg:

Luo fat said:
The Three Most Effective Aspects of Talent Growth
1. Go to big cities
2. Going to the place where the cowmen are piling up
3. Companies with the strongest business atmosphere
All the growth is due to standing in the right place.

Statement: Some content is obtained from the Internet. If there is any infringement, please contact the author. The author will delete it within 2 days.

Keywords: sublime JQuery Linux Windows

Added by dropfaith on Thu, 16 May 2019 00:38:21 +0300