Skip to content

Instantly share code, notes, and snippets.

@madflanderz
Last active February 28, 2019 12:31
Show Gist options
  • Save madflanderz/d04c6d411c4c127d790264d2ccb5e428 to your computer and use it in GitHub Desktop.
Save madflanderz/d04c6d411c4c127d790264d2ccb5e428 to your computer and use it in GitHub Desktop.
Crome Snippet to create a VSCode Snippet
window.makeSnippet = (code, prefix="ccc", componentName="MyComnponent") => {
console.log('makeSnippet()', code)
code = code.replace(new RegExp(componentName, 'g'), '$TM_FILENAME_BASE')
console.log('componentName: ', componentName)
const lines = code.split('\n')
console.log(lines)
if(lines[0] === "") {
lines.shift()
}
return JSON.stringify({
prefix,
body: lines
}, null, 2)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment