Packages
Multi-surface application runtime for Elixir. One TEA module renders to terminal, browser (LiveView), SSH, and MCP (agents). 30+ widgets, flexbox + CSS grid, AI agent runtime, distributed swarm with CRDTs, time-travel debugging, session recording, sandboxed REPL, and agentic commerce.
Current section
Files
Jump to
Current section
Files
lib/raxol/terminal/event_handlers.ex
defmodule EventHandlers do
@moduledoc """
Terminal event handlers for focus, locale, and preference changes.
Provides stub implementations for terminal-level event handling.
"""
def handle_focus_change(_a, _b), do: :ok
def handle_locale_changed(_a), do: :ok
def handle_preference_changed(_a, _b), do: :ok
end