unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* Remapping Windows key combinations to ctrl keybindings
@ 2023-11-14 12:47 Jon Eskin
  0 siblings, 0 replies; only message in thread
From: Jon Eskin @ 2023-11-14 12:47 UTC (permalink / raw)
  To: help-gnu-emacs

On windows 10, I used to prevent the lwindow key from triggering its
default behavior and remap it to ctrl with the following:

(setq w32-pass-lwindow-to-system nil)
(setq l-window-modifier 'ctrl)

In windows 11, this approach is problematic as noted in the variable
documentation for w32-pass-lwindow-to-system, which notes that
combinations such as <lwindow>-r trigger the run dialog, even when the
variable is set.

I've found that if I set the following:

(setq w32-lwindow-modifier 'super)
(w32-register-hot-key [s-r])
(w32-register-hot-key [s-a])

It will prevent the key combinations assigned to <lwindow>-r and
<lwindow>-a from occuring, and instead assign them to whatever is bound
to the s-r and s-a keybindings.

However, I'm trying to assign them to the control keybindings, but the
following doesn't work like I hoped:

(setq w32-lwindow-modifier 'ctrl)
(w32-register-hot-key [C-r])
(w32-register-hot-key [C-a])

Is there any way to disable these key combinations and use the control
keybindings?



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-11-14 12:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-14 12:47 Remapping Windows key combinations to ctrl keybindings Jon Eskin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).