LoginSignup
3
3

More than 5 years have passed since last update.

Sublime Text 2 スニペット

Posted at
sample.sublime-snippet
<snippet>
    <content><![CDATA[
Hello, ${1:this} is a ${2:snippet}.
]]></content>
    <!-- オプション: トリガーとなる単語を設定 -->
    <tabTrigger>hello</tabTrigger>
    <!-- オプション: トリガーとなる範囲を設定 -->
    <scope>source.python</scope>
</snippet>

↓カーソルをカーソルを持ってきてくれる

${1:this}

packageフォルダのUserフォルダに .sublime-snippet という拡張子で保存する

Sublime Text 2/Packages/User/sample.sublime-snippet
3
3
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
3
3