Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created March 26, 2020 11:52
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 bjoerntx/f2195269f796f987f6e2d6cda0435a82 to your computer and use it in GitHub Desktop.
Save bjoerntx/f2195269f796f987f6e2d6cda0435a82 to your computer and use it in GitHub Desktop.
function getSelectionRange() {
return new Promise(resolve => {
TXTextControl.selection.getStart(function (curSelStart) {
TXTextControl.selection.getLength(function (curSelLength) {
var range = {
start: curSelStart,
end: curSelStart + curSelLength,
};
resolve(range);
});
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment