- package controller
import urllib.request,os; pf = 'PackageControl.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())
- emmt
- sublime codeintel 代码提示
- laravle5 snippets
- laravel blade snippets
- blade highlight
- material theme 皮肤
- TAG
- ctags 追踪函数 主机安装sudo apt-get install ctags 进入目录执行 ctags -R -f .tags --exclude=node_modules --language-force=php 生成.tags文件
Sublime Text Refresh Folder Hotkey
- Open Sublime Text.
- Select Preferences from the top menu and click Key Bindings – User.
- Add the following entry between the brackets.
// Refresh folder list with F5 { "keys" : [ "f5" ], "command" : "refresh_folder_list" } |
You should be able to refresh the folders with F5.