ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

OOJS

avenauche ALL

Sublime Text 插件,用于生成获取/设置方法

标签 语言语法

详细信息

  • 2013.11.27.17.28.06
  • github.com
  • github.com
  • 11年前
  • 1小时前
  • 11年前

安装次数

  • 总计 301
  • Win 203
  • Mac 52
  • Linux 46
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 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 1 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 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.md

源代码
raw.githubusercontent.com

OOJS - Sublime Text 插件

Sublime Text 插件,用于生成获取/设置方法

OOJS 帮助开发者以面向对象的 JavaScript 语法生成 Getters 和 Setters。此插件是现有的 proto 段落的增强版本。

安装

使用 Package Control 安装 OOJS 并重新启动 Sublime。

入门

示例

# example.js

var exampleNode = function(){
    this.prop1;
    this.prop2;
    this.prop3;
};

/*In this case, the generated code will look like the following*/

exampleNode.prototype.getProp1 = function(){
    return this.prop1;
};

exampleNode.prototype.setProp1(prop1){
    this.prop1 = prop1;    
};

技巧

快捷键

ctrl+alt+z 将为所有选定的属性生成获取器和设置器。

ctrl+alt+g 将为所有选定的属性生成获取器。

ctrl+alt+s 将为所有选定的属性生成设置器。

使用菜单栏访问

选择所需属性,然后选择

  1. 编辑 -> OOJS -> OOGS (获取器 + 设置器)
  2. 编辑 -> OOJS -> OOG (获取器)
  3. 编辑 -> OOJS -> OOS (设置器)

使用上下文菜单访问

选择所需属性,然后右击并选择

  1. OO 获取器 设置器
  2. OO 获取器
  3. OO 设置器

使用侧边栏菜单访问

选择所需属性,然后在侧边栏中的文件名上右击并选择

  1. OO 获取器 设置器
  2. OO 获取器
  3. OO 设置器

许可

MIT 许可证 • © Avinash Jayakumar