#!/usr/bin/php = 2) { $editor->open($argv[1]); } $editor->setStatusMessage("HELP: Ctrl-Q = quit"); // Input Loop while (true) { $editor->refreshScreen(); $char = $editor->processKeypress(); while ($char === '') { $char = $editor->processKeypress(); } if ($char === NULL) { break; } } return 0; } //! Init main($argc, $argv);