From d2e18ead381d1d18a9a0d8dad570bc034d481bbf Mon Sep 17 00:00:00 2001 From: Karim Jerbi Date: Sun, 9 Aug 2026 22:14:11 +0100 Subject: [PATCH] feat(aliases): R/RA/RE/REA for REDRAW/REGEN; register verbs --- assets/ocad.pgp | 4 ++++ src/app/commands/mod.rs | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/assets/ocad.pgp b/assets/ocad.pgp index c2be1de9..7c1598cd 100644 --- a/assets/ocad.pgp +++ b/assets/ocad.pgp @@ -130,6 +130,10 @@ UN, *UNITS TP, *TOOLPALETTES SSM, *SHEETSET HI, *HIDE +R, *REDRAW +RA, *REDRAWALL +RE, *REGEN +REA, *REGENALL 3O, *3DORBIT ORBIT, *3DORBIT MV, *MVIEW diff --git a/src/app/commands/mod.rs b/src/app/commands/mod.rs index 6843a5cd..1966d070 100644 --- a/src/app/commands/mod.rs +++ b/src/app/commands/mod.rs @@ -423,6 +423,11 @@ inventory::submit!(crate::command::CommandRegistration { "XOPEN", "REGION", "REG", + // Redraw / regenerate the display caches. + "REDRAW", + "REDRAWALL", + "REGEN", + "REGENALL", "ARCHIVE", "ETRANSMIT", "FLATSHOT",