@phoenix-plugin-registry/ekm.snippets

Provides ability to use EKM tag snippets in Brackets.

Usage no npm install needed!

<script type="module">
  import phoenixPluginRegistryEkmSnippets from 'https://cdn.skypack.dev/@phoenix-plugin-registry/ekm.snippets';
</script>

README

brackets-snippets

Brackets Snippets extension.

Extension is available in the Brackets extension registry.

To install, go to the Brackets Extension Manager and search for brackets snippets.

Usage

Ctrl-Shift-S shows you what snippets are available. Click any snippet to begin inserting.
Ctrl-Alt-V to insert the snippet. (Cmd-Alt-V on Mac).

type a trigger followed by parameters (optional), then hit Ctrl-Alt-V

f myFunc becomes

function myFunc () {
}

for x myArray becomes:

var x;
for (x = 0; x < myArray.length; x++) {

}

If you omit parameters, an inline form will appear. Use ESC to close the inline form or ENTER to complete the insertion.

Adding Snippets

You can create new JSON files in the data directory or you can edit the existing javascript.json file. Your JSON files can reference template files if they have a .snippet extension and are in the data\snippets directory. See html5.snippet for an example.