feat: support shift enter for ghostty etc

This commit is contained in:
Brooklyn Nicholson 2026-04-09 23:35:25 -05:00
parent 4fe78d5b88
commit 17a9c47178

View file

@ -12,4 +12,8 @@ if (!process.stdin.isTTY) {
const gw = new GatewayClient()
gw.start()
render(<App gw={gw} />, { exitOnCtrlC: false, maxFps: 60 })
render(<App gw={gw} />, {
exitOnCtrlC: false,
maxFps: 60,
kittyKeyboard: { mode: 'enabled', flags: ['disambiguateEscapeCodes'] },
})