Home  >  Article  >  Development Tools  >  How to install plug-ins in sublime

How to install plug-ins in sublime

藏色散人
藏色散人forward
2019-10-25 13:45:494359browse

sublime is a lightweight editor with powerful functions and easy to install plug-ins. However, as a newbie, I don’t know how to install plug-ins at first. The following is a tutorial on using sublime The column summarizes two methods for you:

How to install plug-ins in sublime

1. Install through package control.

Newly installed sublime does not have this option. Follow the steps below to install the package control tool.

1. Take sublime text3 as an example. Open the editor, Ctrl ` (the key to the left of 1) to bring up the command line, and paste the following code:

import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ','%20')).read())

sublime text2

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')

Press Enter and restart the editor.

2. Open package control (shortcut key Ctrl shift p)

How to install plug-ins in sublime

Input install Package and select install Package

How to install plug-ins in sublime

Then enter the plug-in to be installed and you can install it.

2. Directly download the plug-in package

Download the package package and copy it directly to the package.

How to install plug-ins in sublime

The above is the detailed content of How to install plug-ins in sublime. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:segmentfault.com. If there is any infringement, please contact admin@php.cn delete