Skip to content

Instantly share code, notes, and snippets.

@cympfh
Last active May 25, 2025 07:29
Show Gist options
  • Save cympfh/f8b2a7909954ccfeec02882c849f880a to your computer and use it in GitHub Desktop.
Save cympfh/f8b2a7909954ccfeec02882c849f880a to your computer and use it in GitHub Desktop.
api.unmap('<Ctrl-a>');
api.mapkey('<Ctrl-a>', 'Select all in textarea', function() {
if (document.activeElement instanceof HTMLTextAreaElement ||
(document.activeElement instanceof HTMLInputElement && document.activeElement.type === "text")) {
document.execCommand("selectAll");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment