sublime 介绍|学习笔记

简介: 快速学习 sublime 介绍

开发者学堂课程【HTML 基础入门学习sublime 介绍】学习笔记与课程紧密联系,让用户快速学习知识

课程地址https://developer.aliyun.com/learning/course/465/detail/5705


sublime 介绍

 

一、sublime text2/3

原来 sublime text2 用的比较多,现在大多数使用的 sublime text3

1. 官网: http:// www.sublimetext.com/3

2. 特点:

(1) 适合初学者

(2) 代码补全

(3) 扩展插件丰富

一开始如果记不住东西,可以自己多手打一些。

在浏览器中可以打开官网。

这是编译器的样子:

void base64_encode(const uint8_t * data,size_t ler, char * dst)

{

size_t  src_ idx =0;

Size_t dst_ idx =0;

for (;(src_idx + 2) <len;src_idx +=3, dst_idx =4)

{

uint8_t s0=data[src_idx];

uint8_t s1 =datat[src_idx +1];

uint8_t s2=data[src_idx+2];

dst[dst_idx +0]=charset[(s0& 0xfc) >>2];

Dst[dst_idx + 1] = charset[((s0 & 0x03)<< 4) | ((s1 &

0xf0) >>4)];

Dst[dst_idx + 2] = charset[((s1 & 0x0f) << 2) | ( s2 &

0xc0) >> 6];

Dst[dst_idX+3]=charset [(s2 & 0x3f)];

}

if (src_idx < length)

{

Uint8_t  s0 =data[src_idx];

Uint8_t  s1= (src_idx + 1 <length)? data[src_idx +1] : 0;

dst [dst_idx++] = charset [(s0 & 0xfc)>>2];

dst[dst_idx++] = charset [(s0 & 0x03) <<4) | (s1 & 0xf0) >> 4));

if (src_idx +1< length)

Dst[dst_idx++]=charset [((s1 & 0x0f) << 2)];

}

Download 中也可以下载 sublime text3

Sublime Text 3 is currently in beta. The latest build is 3083.

1oSx (10.7 or later is required)

2Windowsalso-also available as a portable version

3Windows 64 bit -also available as a portable version

4Ubuntu 64 bit - also available as a tarball for other Linux distributions.

5Ubuntu 32 bit - also available as a tarball for other Linux distributions.

For notification about new versions, follow sublimehq on twitter.

Even more bleeding-edge versions are available in the dev builds.

建议大家下载 text3,因为是最新的,可以根据自己电脑操作系统去下载相应的。

比如电脑是苹果的,那么就下载第一个,如果是 windows 32位的下载第二个就可以,下载完成就是一个安装软件,点击下一步就可以安装完成,不需要做任何配置。

打开这个软件非常简洁整个区域都是可以手写代码的,比如新建一个 html 文件,写 html 非常简单。

比如以前都是慢慢手打,现在如果打 html 一些基础内容,打上 html 然后按下 tab 键就会自动补全。

比如再写一个 div 按下 tab 也是会自动补全。

这个编译器样子非常炫酷,启动速度非常快,还有各种补全,非常方便,对于写代码时非常提高效率,节省时间。

相关文章
|
移动开发 开发者 HTML5
sublime生成html骨架|学习笔记
快速学习 sublime生成html骨架
149 0
sublime生成html骨架|学习笔记
|
开发者 Python
Sublime 和 npp 的安装使用 | 学习笔记
快速学习 Sublime 和 npp 的安装使用
|
开发工具 开发者
开发工具sublime|学习笔记
开发工具sublime|学习笔记快速学习开发工具sublime
125 0
开发工具sublime|学习笔记
|
开发者
sublime生成html骨架|学习笔记
快速学习 sublime生成html骨架
 sublime生成html骨架|学习笔记
|
开发工具 开发者
开发工具sublime|学习笔记
快速学习开发工具sublime
开发工具sublime|学习笔记
|
开发者 Python
Python 和 Sublime的整合|学习笔记
快速学习 Python 和 Sublime 的整合
124 0
|
开发者 Python Windows
sublime 的使用|学习笔记
快速学习 sublime 的使用
143 0
|
开发者 Python
sublime 的基本设置|学习笔记
快速学习 sublime 的基本设置
235 0
|
9月前
|
前端开发 JavaScript Linux
Sublime Text 3配置Go语言开发环境
【4月更文挑战第13天】本篇文章 Huazie 向大家介绍使用 Sublime Text 3搭建Go语言开发环境,并演示编译运行 Go语言代码
883 8
Sublime Text 3配置Go语言开发环境
|
8月前
lua环境,sublime text 插件安装
lua环境,sublime text 插件安装