From f52346c118b0d6914832730ae60893d11da179b3 Mon Sep 17 00:00:00 2001 From: John Kitchin Date: Mon, 4 May 2020 17:24:55 -0400 Subject: [PATCH] add note from issue #362. --- scimax.org | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scimax.org b/scimax.org index 3aaad518..6d081bb6 100644 --- a/scimax.org +++ b/scimax.org @@ -50,6 +50,14 @@ For Windows you can use: (setq w32-apps-modifier 'hyper) ; Menu/App key #+END_SRC +It was suggested [[https://github.com/jkitchin/scimax/issues/362][here]] that you can also make some seldom used keys like == and == act like these extra modifiers. Here is a snippet that will do that. + +#+BEGIN_SRC emacs-lisp + (define-key function-key-map (kbd "") 'event-apply-super-modifier) + (define-key function-key-map (kbd "") 'event-apply-hyper-modifier) +#+END_SRC + + This does not work for all key combination with the Windows key because Windows intercepts some keys. The intercepted keys depend on the Windows version: | Key | Windows 7 | Windows 10 |