APICloudSnippets
APICloud提供的标准Sublime扩展插件,在Sublime中集成APICloud扩展模块的代码提示
Details
Installs
- Total 17K
- Win 14K
- Mac 3K
- Linux 288
Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | Aug 27 | Aug 26 | Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | Aug 18 | Aug 17 | Aug 16 | Aug 15 | Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 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 | 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 | 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 | 0 |
Readme
- Source
- raw.githubusercontent.com
APICloud Snippets
APICloud提供的标准Sublime扩展插件,在Sublime中集成APICloud扩展模块的代码提示,封装了包含api对象的所有方法、Attribute、Event.
同时包含 db、fs、bMap、FNScanner、UIScrollPicture 等二十多个常用模块的语法补全。
触发代码片段的指令格式为: 模块名-方法名
,之后点击Tab键即可进行补全
所以使用的时候只要记得当前模块名和方法名,即可补全对应的代码
更多信息请查看Sublime APICloud 插件的安装和使用说明
使用示例
api-alert Tab
api.alert({
title: '${1:this}',
msg: ${2:this}
});
uiscrollpicture-open Tab “js uiscrollpicture.open({ rect: { x: ${1:0}, y: ${2:0}, w: ${3:320}, h: ${4:480} }, data: { paths: ['${5:image_path1}', '${6:image_path2}', '${7:image_path3}'], captions: ['${8:title1}', '${9:title2}', '${10:title3}'] }, styles: { caption: { height: ${11:35}, color: '${12:color}', size: ${13:13}, bgColor: '${14:bg_color}', position: '${15:position}' }, indicator: { align: '${16:align_mode}', color: '${17:color}', activeColor: '${18:active_color}' } }, placeholderImg: '${19:placeholder_image_path}', contentMode: '${20:content_mode}', interval: ${21:3}, loop: ${22:true}, fixedOn: '', fixed: ${23:false} }, function(ret, err){ if(ret.status){ if(ret.eventType == 'click'){ //点击图片的操作 alert(ret.index); } } });