Skip to content

Instantly share code, notes, and snippets.

@spdegabrielle
Created August 15, 2020 16:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spdegabrielle/89de48580126592264f3741c4240e917 to your computer and use it in GitHub Desktop.
Save spdegabrielle/89de48580126592264f3741c4240e917 to your computer and use it in GitHub Desktop.
DrRacket Keyboard shortcuts

C-‹key› means press the Control key

M-‹key› (MacOS: [Esc] followed by but can also be set to [⌘]command or ALT ([⌥]option))

But these are not in the 'Show Keybindings' dialog;

The modifier identifiers are:

s: — All platforms: Shift

c: — All platforms: Control

a: — Mac OS: Option

m: — Windows: Alt; Unix: Meta; Mac OS: Command, when map-command-as-meta-key produces #t

d: — Mac OS: Command

l: — All platforms: Caps Lock

g: — Windows: Control plus Alt as AltGr; see get-control+meta-is-altgr in key-event%

?: — All platforms: allow match to character produced by opposite use of Shift, AltGr/Option, and/or Caps Lock, when available; see get-other-shift-key-code in key-event%

sequences ;

@0017031
Copy link

0017031 commented Mar 4, 2022

What dose the "~" (tilde) mean?
for example :
backward-word (~c:m:b)

@spdegabrielle
Copy link
Author

spdegabrielle commented Mar 4, 2022

@0017031
The "~" (tilde) means 'not' - in this case not the ctrl key
m:b is backward word
c:m:b is backward s-exp

@0017031
Copy link

0017031 commented Mar 9, 2022

thank you! This is another "a-ha" moment for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment