基本代码片段
Sublime Text 2 & 3的基本代码片段。
详细信息
安装次数
- 总数 1K
- Win 880
- Mac 186
- Linux 134
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
说明
基本代码片段
Sublime Text的Base代码片段。
开始使用
注意! 在将其注册到包控制之前,您需要手动安装。
1. 安装
包控制
如果您的Sublime Text中已安装包控制
- 从命令面板选择“安装包”:在Windows和Linux上 Ctrl+Shift+P,在OS X上 ⇧⌘P
- 搜索“基本代码片段”然后按下 enter。
手动安装
转到 首选项 -> 浏览包
,然后下载并解压缩此插件到该目录,或者
git clone https://github.com/node-base/sublime-text-base-snippets.git
片段
生成
生成器。
'use strict';
module.exports = function(app, base) {
app.task('default', function(cb) {
console.log('generator', app.name, '> task', this.name);
cb();
});
};
生成空的
'use strict';
module.exports = function(app, base) {
};
应用
导出实例。
'use strict';
var App = require('base');
var app = new App();
app.task('default', function(cb) {
console.log('appfile.js', '> task', this.name);
cb();
});
module.exports = app;
子
子生成器。
module.exports = function(app, base) {
};
插件
'use strict';
module.exports = function(options) {
return function(app, base) {
this.define('name', function() {
});
};
};
注册
app.register('name', function(app, base) {
});
任务
app.task('default', function(cb) {
cb();
});
源
app.src('*.js')
.pipe(app.renderFile('*'))
目标
.pipe(app.dest('dest'))
输出
app.emit('name', 'value');
在...
app.on('name', function(value) {
});
通过...
through.obj(function(file, enc, next) {
next(null, file);
})
作者
Jon Schlinkert
许可证
版权所有 © 2016,Jon Schlinkert。在MIT许可证下发布。