boxer-project / boxer-sunrise

Sunrise on the Boxer Reconstruction Project
BSD 3-Clause "New" or "Revised" License
39 stars 2 forks source link

Remove cocoa specific hardware keys and use the gesture-spec symbols that are already passed in. #51

Closed sgithens closed 2 years ago

sgithens commented 2 years ago

Currently we have a section of keyboard bindings in keydef-lwm.lisp that reads:

#+cocoa
(progn
 (define-lwm-function-key BU::INSERT-KEY COCOA:NS-INSERT-FUNCTION-KEY)
 (define-lwm-function-key BU::DELETE-KEY COCOA:NS-DELETE-FUNCTION-KEY)
etc etc

This can likely be replaced almost entirely with the standard keyboard gesture symbols that come in from the lispworks gesture spec. http://www.lispworks.com/documentation/lw71/LW/html/lw-1399.htm#95339

sgithens commented 2 years ago

These have been fully archived now.