I'm reading the beginning of the Emacs manual on inserting text. It says you can run C-x 8 [
to insert a left single curly quote. That works.
In my init.el
I have this:
(define-key global-map [(control t)] ctl-x-map)
I like that because I use a Dvorak keyboard layout, so C-t
is easy to type. Usually that line takes commands that start with C-x
and makes them available starting with C-t
too. But it's failing with this C-x 8
. If I do: C-t 8 [
, it get a beep and nothing.
In contrast I can do both C-x b
and C-t b
to switch to a buffer.
Why does my define-key
attempt work for most C-x
commands but not C-x 8
.
I'm running GNU Emacs 27.2 on macOS 12.