A small change to MS-EDIT that fixes ESC for use of menus over Telnet, specifically from an Apple II.
Modified the menu trigger to fire from just an ESC keypress. This enables menu usage when a machine doesn't have an alt key or if the conection doesn't handle alt well.
File changed: \crates\edit\src\tui.rs around line 3172
/* =====================================
** modified so ESC alone opens the menus
** ===================================== */
let keyboard_focus = accelerator != '\0'
&& !contains_focus
&& (
self.consume_shortcut(kbmod::ALT | InputKey::new(accelerator as u32))
|| (accelerator == 'F' && self.consume_shortcut(vk::ESCAPE))
);
//let keyboard_focus = accelerator != '\0'
// && !contains_focus
// && self.consume_shortcut(kbmod::ALT | InputKey::new(accelerator as u32));
/* ==========
** end modify
** ========== */

