6
6

More than 5 years have passed since last update.

[SublimeText2] JavaScriptのクラス定義snippet

Posted at

(Sublime Text 2のインストールフォルダ)/Packages/JavaScriptに以下のファイルを置く

ファイル名: class.sublime-snippet

class.sublime-snippet
<snippet>
    <content><![CDATA[var ${1:className} = function() {
    ${2:superClass}.call(this);
};
${1:className}.prototype = Object.create(${2:superClass}.prototype);
]]></content>
    <tabTrigger>class</tabTrigger>
    <scope>source.js</scope>
    <description>class</description>
</snippet>

ss.png

ss1.png

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6