Skip to content

Instantly share code, notes, and snippets.

@notduncansmith
Forked from JoelBesada/README.md
Last active January 1, 2016 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save notduncansmith/8156718 to your computer and use it in GitHub Desktop.
Save notduncansmith/8156718 to your computer and use it in GitHub Desktop.
/* NOTE: Comments need to be in multiline format like this, instead of "// Comment" */
window.location = "web+sublime://~/working/"
{
"name": "Duncan Test",
"description": "A Backtick Hello World example command.",
"icon": "https://backtickio.s3.amazonaws.com/icons/backtick.png",
"link": "http://backtick.io"
}

This is an example command for Backtick. A Backtick command consists of some executable JavaScript and a bit of metadata in JSON.

Here are the required steps to create a command:

  1. Create a new Gist with a command.js and command.json file, or simply fork this one.

  2. Write your JavaScript in command.js. This will be injected into and executed on the page the user is currently on when they run it.

  3. Add some metadata to the command.json file:

  • name: The name of the command.
  • description: A short description about what the command does.
  • icon (optional): A link to a 60x60 PNG icon.
  • link (optional): A link to a related home page.
  1. Copy the ID of your Gist from the URL. (The ID of this example command is 6859173)

  2. Paste the ID into the custom commands field in the Backtick settings. You can easily access the settings by clicking the Backtick icon on the command execution console.

You can suggest to add one of your own commands to the list of predefined commands that are included with Backtick, just contact me on Twitter (@JoelBesada) with a link to your command Gist.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment