カーソルが行頭になくてもTabでインデントするUserScript
script.js(() => {
$('#text-input').on('keydown', e => {
if (e.keyCode != 0x09) return true;
if ($('.cursor-line .code-block').length != 0) return true;
if ($('.cursor-line .table-block').length != 0) return true;
if ($('.popup-menu').length != 0) return true;
let keydown = document.createEvent('Events');
keydown.initEvent('keydown', true, true);
keydown.keyCode = e.which = (e.shiftKey ? 37 : 39);
keydown.ctrlKey = true;
$('#text-input')[0].dispatchEvent(keydown);
return false;
});
})();
> カーソルが行頭にない状態でも、tabで現在行をインデントする。
> Edit profile
-> Prioritize Outline-edit key bindings
が有効であること。
> 以下の場合はタブキーはScrapbox標準の動作となる。
コードいじっちゃってて、このままだと動きません
実装方法は参考になるかも