// 見積もり時間を選択する export function selectEstimatedTime() { const task = parse({lineNo: l(cursor().line).index}); if (!task) return; // タスクでなければ何もしない goHead(); moveRight(18);// `YYYY-MM-DD hh:mm なので18文字 // 4文字選択する for (let i = 0; i < 4; i++) { press('ArrowRight', {shiftKey: true}); } }