fix: change thinking level cycling from Ctrl+T to Shift+Tab

This commit is contained in:
Tino Ehrich 2025-11-19 18:07:53 +01:00
parent 5336843de8
commit ac34a810dd
2 changed files with 6 additions and 6 deletions

View file

@ -169,7 +169,7 @@ export class TuiRenderer {
chalk.dim("ctrl+k") +
chalk.gray(" to delete line") +
"\n" +
chalk.dim("ctrl+t") +
chalk.dim("shift+tab") +
chalk.gray(" to cycle thinking") +
"\n" +
chalk.dim("/") +
@ -213,7 +213,7 @@ export class TuiRenderer {
this.handleCtrlC();
};
this.editor.onCtrlT = () => {
this.editor.onShiftTab = () => {
this.cycleThinkingLevel();
};