sublime 插件

  1. 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())
  2. emmt
  3. sublime codeintel    代码提示
  4. laravle5 snippets
  5. laravel blade snippets
  6. blade highlight
  7. material theme      皮肤
  8. TAG
  9. ctags                   追踪函数      主机安装sudo apt-get install ctags     进入目录执行 ctags -R -f .tags --exclude=node_modules --language-force=php  生成.tags文件

Sublime Text Refresh Folder Hotkey

  1. Open Sublime Text.
  2. Select Preferences from the top menu and click Key Bindings – User.
  3. 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.

原文地址:https://www.cnblogs.com/fenle/p/4805774.html