sublime

快捷键(windows的):

安装包

CTRL+SHIFT+P

 

全选某一个字符串:

alt+F3

一个一个选:

ctrl+d

 sublime text3 安装包管理:

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)

sublime text2安装包管理:

import urllib2,os,hashlib; h = 'df21e130d211cfc94d9b0905775a7c0f' + '1e3d39e33b79698005270310898eea76'; 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')

地址: 

https://packagecontrol.io/installation#st2

2.preference->package control ->install package->input you package name->click it->ok

其他插件参照地址:

http://9iphp.com/web/html/1260.html

3 常用的插件

http://www.th7.cn/web/html-css/201512/140518.shtml

https://github.com/MiroHibler/sublime-keymaps

该插件支持全部驼峰命名

钟声敲响了日落
原文地址:https://www.cnblogs.com/SATinnovation/p/5966102.html