Skip to content

Instantly share code, notes, and snippets.

@chimerast
Created July 8, 2018 16:28
Show Gist options
  • Save chimerast/cae7cd21607b9765fe9d99deb5e42ff1 to your computer and use it in GitHub Desktop.
Save chimerast/cae7cd21607b9765fe9d99deb5e42ff1 to your computer and use it in GitHub Desktop.
[HyperTerm Configuration]
exports.decorateBrowserOptions = (options) => {
return Object.assign({}, options, {
titleBarStyle: 'hidden'
});
}
exports.getTermProps = (uid, parentProps, props) => {
return Object.assign(props, {
onDecorated: (term) => {
term.term.setOption('letterSpacing', 1);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment