signalHandlers property
Whether to install signal handlers (SIGINT, SIGWINCH).
When true (default), signal handlers are installed for graceful shutdown and window resize detection.
When false, no signal handlers are installed. This is useful when:
- Running in an environment that doesn't support signals
- The parent application handles signals itself
- You want complete control over signal handling
Implementation
final bool signalHandlers;