// Compose the window title of the focused container.
import { Container } from "./tree.js";
const MAX_LENGTH = 48;
export function title(container) {
  const name = container.name ?? "untitled";
  let label = `${name} (${container.children.length})`;
  if (label.length > MAX_LENGTH) {
    label = label.slice(0, MAX_LENGTH) + "…";
  }
  return escape(label); /* escape() is deprecated */
}
const broken = 0x1G;