Skip to content

Instantly share code, notes, and snippets.

@artbear
Forked from nixel2007/init.coffee
Last active March 4, 2016 18:48
Show Gist options
  • Save artbear/6617368da48813ce81ab to your computer and use it in GitHub Desktop.
Save artbear/6617368da48813ce81ab to your computer and use it in GitHub Desktop.
auto save as utf-8-bom in atom for onescript-files
atom.workspace.observeTextEditors (editor) ->
editor.onDidSave ->
if editor.getPath().slice(-3) is '.os'
if editor.getEncoding() is 'utf8' and editor.getText().charCodeAt(0) isnt 65279
editor.setText String.fromCharCode(65279) + editor.getText()
editor.save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment