Files
TeslaRel410/sda4/BRIEF/MACROS/OLD.M
T
CydandClaude Fable 5 db7745fcd0 sda4: commit the Glaze developer hard-drive dump
Un-ignored: the dev drive is the ground truth the restoration and
emulator work constantly reference (DPL3/LIBDPL + VRENDER i860 renderer
source, BT/RP live+dev game trees, VGL_LABS pod boot, scene/audio
content). Kept in-repo for the pod-owner community.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 19:41:15 -05:00

29 lines
821 B
Objective-C

;**
;** BRIEF -- Basic Reconfigurable Interactive Editing Facility
;**
;** Written by Dave Nanian and Michael Strickman.
;**
;**
;** old.m:
;**
;** This macro creates key assignments compatible with BRIEF v1.33.
;**
(macro old
(
(assign_to_key "<Home>" "top_of_window")
(assign_to_key "<End>" "end_of_window")
(assign_to_key "<Ctrl-Home>" "top_of_buffer")
(assign_to_key "<Ctrl-End>" "end_of_buffer")
(assign_to_key "<Ctrl-PgUp>" "beginning_of_line")
(assign_to_key "<Ctrl-PgDn>" "end_of_line")
(assign_to_key "<Alt-c>" "search_case")
(assign_to_key "<Shift-F6>" "search_again")
(assign_to_key "<Alt-minus>" "delete_curr_buffer")
(assign_to_key "<Ctrl-minus>" "edit_prev_buffer")
(assign_to_key "<Shift-F5>" "search_back")
(assign_to_key "<Alt-a>" "mark")
)
)