Skip to content

Commit

Permalink
Updating snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
leoheck committed Jan 12, 2017
1 parent 464bd55 commit f52a54f
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
9 changes: 9 additions & 0 deletions snippets/input.sublime-snippet
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

<snippet>
<tabTrigger>in</tabTrigger>
<scope>source.3dt</scope>
<content>
input ${1:port-name} ${2:initial-state}
</content>
<description>port declaration</description>
</snippet>
9 changes: 9 additions & 0 deletions snippets/output.sublime-snippet
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

<snippet>
<tabTrigger>out</tabTrigger>
<scope>source.3dt</scope>
<content>
output ${1:port-name} ${2:initial-state}
</content>
<description>port declaration</description>
</snippet>
9 changes: 9 additions & 0 deletions snippets/state.sublime-snippet
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

<snippet>
<tabTrigger>state</tabTrigger>
<scope>source.3dt</scope>
<content>
${1:from-state} ${2:to-state} ${3:starting-transitions} | ${4:end-transitions}
</content>
<description>state creation</description>
</snippet>

0 comments on commit f52a54f

Please sign in to comment.