Post #2766064
2026-02-23 19:13 UTC
Opinionated PSA: The correct typesetting of values with units according to most standards requires separating the value and unit with a _thin_ unbreakable space. Executing the below on macOS will globally rebind Option-Space from Non-Break Space (U+00A0) to Thin Non-Breaking Space (U+202F)
```
mkdir -p ~/Library/KeyBindings
cat > ~/Library/KeyBindings/DefaultKeyBinding.dict <<EOF
/* Option-Space to Thin Non-Breaking Space (U+202F) */
"~ " = ("insertText:", "\U202F");
EOF
```
Replies (0)
No replies.