From 651057a78faba07af98bcd7e19bbc7f3536f023b Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Tue, 20 Jan 2009 17:50:56 +0000 Subject: [PATCH] added alt:space for mac os x svn: r13239 --- collects/framework/private/keymap.ss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/collects/framework/private/keymap.ss b/collects/framework/private/keymap.ss index c130a59f38..efe7b5d8e4 100644 --- a/collects/framework/private/keymap.ss +++ b/collects/framework/private/keymap.ss @@ -1234,6 +1234,8 @@ (map "s:insert" "paste-clipboard") (map-meta "space" "collapse-space") + (when (eq? (system-type) 'macosx) + (map "a:space" "collapse-space")) ;(map-meta "\\" "remove-space") ; Conflicts with european keyboards. (map "c:x;c:o" "collapse-newline") (map "c:o" "open-line")