Featured Shortcuts

Packages

Snippets

Quickly type large amounts of code by typing shortcut then pressing tab

Go to Atom in top bar, snippets, and follow instructions

'.source.js':
  'console.log':
    'prefix': 'log'
    'body': 'console.log(${1:"crash"});$2'

So typing log[tab] would expand it to console.log("crash");

first tab press selects crash

second tab press places cursor at end

Use """ for multiple line

Last updated