Files
oh-my-opencode/src/features/tmux-subagent/tmux-grid-constants.ts
T

11 lines
340 B
TypeScript
Raw Normal View History

import { MIN_PANE_HEIGHT, MIN_PANE_WIDTH } from "./types"
export const MAIN_PANE_RATIO = 0.5
export const MAX_COLS = 2
export const MAX_ROWS = 3
export const MAX_GRID_SIZE = 4
export const DIVIDER_SIZE = 1
export const MIN_SPLIT_WIDTH = 2 * MIN_PANE_WIDTH + DIVIDER_SIZE
export const MIN_SPLIT_HEIGHT = 2 * MIN_PANE_HEIGHT + DIVIDER_SIZE