码迷,mamicode.com
首页 > 其他好文 > 详细

熟悉sublime text3

时间:2016-03-19 14:17:02      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

  以下为小白首次摸索前端的记录学习

  在安装了几个广为人知的前端编辑器后,果然,sublime text 打开迅速,功能强大,一见钟情。

  遇到的首个问题是无法快速预览代码效果到浏览器。经过搜索,大部分人使用插件或者更改命令行使用快捷键。

  本次选择安装view in Browser 插件 预览到默认浏览器Firefox。

使用Package Control组件安装

The simplest method of installation is through the Sublime Text console. The console is accessed via the ctrl+` shortcut or the View > Show Console menu. Once open, paste the appropriate Python code for your version of Sublime Text into the console.

Sublime Text 3Sublime Text 2

import urllib.request,os,hashlib; h = ‘2915d1851351e5ee549c20394736b442‘ + ‘8bc59f460fa1548d1514676163dafc88‘; 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)

粘贴此代码到命令行然后回车。

详细内容见网站https://packagecontrol.io/installation#st3

安装好后,在Preferences会看到package control。此时重启sublime text3。

package control 安装好以后,就可以安装许多想要使用的插件了,在学习过程中可以慢慢探索自己喜爱的方便使用的插件。

安装插件的方法是

  1. 按下Ctrl+Shift+P调出命令面板
  2. 输入install 调出 Install Package 选项并回车(单击亦可),然后在列表中选中要安装的插件(搜索View in Browser,点击即可,在左下方会显示安装成功)

 

 

熟悉sublime text3

标签:

原文地址:http://www.cnblogs.com/baimeishengburusi/p/5294821.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!