-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
854 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
snippets/scaffold.Basic Script (2 Sections).sublime-snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
; Scaffolding by https://github.com/idleberg/nsL-Assembler-Sublime-Text | ||
; Settings --------------------------------- | ||
Name("${1:installer_name}"); | ||
OutFile("${2:${1}}.exe"); | ||
RequestExecutionLevel(${3:user}); | ||
InstallDir("\$PROGRAMFILES\\${4:${1}}"); | ||
; Includes --------------------------------- | ||
${5} | ||
; Pages ------------------------------------ | ||
page Components(); | ||
page Directory(); | ||
page InstFiles(); | ||
; Sections --------------------------------- | ||
section ${6:section1_index}("${7:section1_name}") { | ||
${8:// your code here} | ||
} | ||
section ${9:section2_index}("${10:section2_name}") { | ||
${11:// your code here} | ||
} | ||
; Functions -------------------------------- | ||
${12} | ||
]]></content> | ||
<tabTrigger>scaffold:Basic Script (2 Sections)</tabTrigger> | ||
<scope>source.nsl</scope> | ||
</snippet> |
39 changes: 39 additions & 0 deletions
39
snippets/scaffold.Basic Script (2 Sections, onInit).sublime-snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
; Scaffolding by https://github.com/idleberg/nsL-Assembler-Sublime-Text | ||
; Settings --------------------------------- | ||
Name("${1:installer_name}"); | ||
OutFile("${2:${1}}.exe"); | ||
RequestExecutionLevel(${3:user}); | ||
InstallDir("\$PROGRAMFILES\\${4:${1}}"); | ||
; Includes --------------------------------- | ||
${5} | ||
; Pages ------------------------------------ | ||
page Components(); | ||
page Directory(); | ||
page InstFiles(); | ||
; Sections --------------------------------- | ||
section ${6:section1_index}("${7:section1_name}") { | ||
${8:// your code here} | ||
} | ||
section ${9:section2_index}("${10:section2_name}") { | ||
${11:// your code here} | ||
} | ||
; Functions -------------------------------- | ||
function .onInit() { | ||
${12:// your code here} | ||
} | ||
]]></content> | ||
<tabTrigger>scaffold:Basic Script (2 Sections, onInit)</tabTrigger> | ||
<scope>source.nsl</scope> | ||
</snippet> |
43 changes: 43 additions & 0 deletions
43
snippets/scaffold.Basic Script (3 Sections).sublime-snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
; Scaffolding by https://github.com/idleberg/nsL-Assembler-Sublime-Text | ||
; Settings --------------------------------- | ||
Name("${1:installer_name}"); | ||
OutFile("${2:${1}}.exe"); | ||
RequestExecutionLevel(${3:user}); | ||
InstallDir("\$PROGRAMFILES\\${4:${1}}"); | ||
; Includes --------------------------------- | ||
${5} | ||
; Pages ------------------------------------ | ||
page Components(); | ||
page Directory(); | ||
page InstFiles(); | ||
; Sections --------------------------------- | ||
section ${6:section1_index}("${7:section1_name}") { | ||
${8:// your code here} | ||
} | ||
section ${9:section2_index}("${10:section2_name}") { | ||
${11:// your code here} | ||
} | ||
section ${12:section3_index}("${13:section3_name}") { | ||
${14:// your code here} | ||
} | ||
; Functions -------------------------------- | ||
${15} | ||
]]></content> | ||
<tabTrigger>scaffold:Basic Script (3 Sections)</tabTrigger> | ||
<scope>source.nsl</scope> | ||
</snippet> |
45 changes: 45 additions & 0 deletions
45
snippets/scaffold.Basic Script (3 Sections, onInit).sublime-snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
; Scaffolding by https://github.com/idleberg/nsL-Assembler-Sublime-Text | ||
; Settings --------------------------------- | ||
Name("${1:installer_name}"); | ||
OutFile("${2:${1}}.exe"); | ||
RequestExecutionLevel(${3:user}); | ||
InstallDir("\$PROGRAMFILES\\${4:${1}}"); | ||
; Includes --------------------------------- | ||
${5} | ||
; Pages ------------------------------------ | ||
page Components(); | ||
page Directory(); | ||
page InstFiles(); | ||
; Sections --------------------------------- | ||
section ${6:section1_index}("${7:section1_name}") { | ||
${8:// your code here} | ||
} | ||
section ${9:section2_index}("${10:section2_name}") { | ||
${11:// your code here} | ||
} | ||
section ${12:section3_index}("${13:section3_name}") { | ||
${14:// your code here} | ||
} | ||
; Functions -------------------------------- | ||
function .onInit() { | ||
${15:// your code here} | ||
} | ||
]]></content> | ||
<tabTrigger>scaffold:Basic Script (3 Sections, onInit)</tabTrigger> | ||
<scope>source.nsl</scope> | ||
</snippet> |
49 changes: 49 additions & 0 deletions
49
snippets/scaffold.Basic Script (4 Sections).sublime-snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
; Scaffolding by https://github.com/idleberg/nsL-Assembler-Sublime-Text | ||
; Settings --------------------------------- | ||
Name("${1:installer_name}"); | ||
OutFile("${2:${1}}.exe"); | ||
RequestExecutionLevel(${3:user}); | ||
InstallDir("\$PROGRAMFILES\\${4:${1}}"); | ||
; Includes --------------------------------- | ||
${5} | ||
; Pages ------------------------------------ | ||
page Components(); | ||
page Directory(); | ||
page InstFiles(); | ||
; Sections --------------------------------- | ||
section ${6:section1_index}("${7:section1_name}") { | ||
${8:// your code here} | ||
} | ||
section ${9:section2_index}("${10:section2_name}") { | ||
${11:// your code here} | ||
} | ||
section ${12:section3_index}("${13:section3_name}") { | ||
${14:// your code here} | ||
} | ||
section ${15:section4_index}("${16:section4_name}") { | ||
${17:// your code here} | ||
} | ||
; Functions -------------------------------- | ||
${18} | ||
]]></content> | ||
<tabTrigger>scaffold:Basic Script (4 Sections)</tabTrigger> | ||
<scope>source.nsl</scope> | ||
</snippet> |
51 changes: 51 additions & 0 deletions
51
snippets/scaffold.Basic Script (4 Sections, onInit).sublime-snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
; Scaffolding by https://github.com/idleberg/nsL-Assembler-Sublime-Text | ||
; Settings --------------------------------- | ||
Name("${1:installer_name}"); | ||
OutFile("${2:${1}}.exe"); | ||
RequestExecutionLevel(${3:user}); | ||
InstallDir("\$PROGRAMFILES\\${4:${1}}"); | ||
; Includes --------------------------------- | ||
${5} | ||
; Pages ------------------------------------ | ||
page Components(); | ||
page Directory(); | ||
page InstFiles(); | ||
; Sections --------------------------------- | ||
section ${6:section1_index}("${7:section1_name}") { | ||
${8:// your code here} | ||
} | ||
section ${9:section2_index}("${10:section2_name}") { | ||
${11:// your code here} | ||
} | ||
section ${12:section3_index}("${13:section3_name}") { | ||
${14:// your code here} | ||
} | ||
section ${15:section4_index}("${16:section4_name}") { | ||
${17:// your code here} | ||
} | ||
; Functions -------------------------------- | ||
function .onInit() { | ||
${18:// your code here} | ||
} | ||
]]></content> | ||
<tabTrigger>scaffold:Basic Script (4 Sections, onInit)</tabTrigger> | ||
<scope>source.nsl</scope> | ||
</snippet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
; Scaffolding by https://github.com/idleberg/nsL-Assembler-Sublime-Text | ||
; Settings --------------------------------- | ||
Name("${1:installer_name}"); | ||
OutFile("${2:${1}}.exe"); | ||
RequestExecutionLevel(${3:user}); | ||
InstallDir("\$PROGRAMFILES\\${4:${1}}"); | ||
; Includes --------------------------------- | ||
${5} | ||
; Pages ------------------------------------ | ||
page Components(); | ||
page Directory(); | ||
page InstFiles(); | ||
; Sections --------------------------------- | ||
section ${6:section_index}("${7:section_name}") { | ||
${8:// your code here} | ||
} | ||
; Functions -------------------------------- | ||
function .onInit() { | ||
${9:// your code here} | ||
} | ||
]]></content> | ||
<tabTrigger>scaffold:Basic Script (onInit)</tabTrigger> | ||
<scope>source.nsl</scope> | ||
</snippet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
; Scaffolding by https://github.com/idleberg/nsL-Assembler-Sublime-Text | ||
; Settings --------------------------------- | ||
Name("${1:installer_name}"); | ||
OutFile("${2:${1}}.exe"); | ||
RequestExecutionLevel(${3:user}); | ||
InstallDir("\$PROGRAMFILES\\${4:${1}}"); | ||
; Includes --------------------------------- | ||
${5} | ||
; Pages ------------------------------------ | ||
page Components(); | ||
page Directory(); | ||
page InstFiles(); | ||
; Sections --------------------------------- | ||
section ${6:section_index}("${7:section_name}") { | ||
${8:// your code here} | ||
} | ||
; Functions -------------------------------- | ||
${9} | ||
]]></content> | ||
<tabTrigger>scaffold:Basic Script</tabTrigger> | ||
<scope>source.nsl</scope> | ||
</snippet> |
Oops, something went wrong.