()
| 194 | |
| 195 | // Reads TUI config once for direct mode keymap setup and display preferences. |
| 196 | export async function resolveRunTuiConfig(): Promise<RunTuiConfig> { |
| 197 | return runtime.runPromise((svc) => svc.resolveRunTuiConfig()).catch(() => defaultRunTuiConfig()) |
| 198 | } |
| 199 | |
| 200 | export async function resolveDiffStyle(): Promise<RunDiffStyle> { |
| 201 | return runtime.runPromise((svc) => svc.resolveDiffStyle()).catch(() => "auto") |
no test coverage detected