Skip to content

Instantly share code, notes, and snippets.

@tksugimoto
Created May 30, 2020 15:06
Show Gist options
  • Save tksugimoto/4321a2d7d60c729937f7495a0eea78d2 to your computer and use it in GitHub Desktop.
Save tksugimoto/4321a2d7d60c729937f7495a0eea78d2 to your computer and use it in GitHub Desktop.
<textarea> にフォーカスがある状態で Tab キー押下で インデントする
document.body.addEventListener('keydown', event => {
if (event.key === 'Tab' && event.target.tagName === 'TEXTAREA') {
document.execCommand('insertText', /* ShowDefaultUI = */ false, ' ');
event.preventDefault();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment