Skip to content

Commit

Permalink
add note from issue #362.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnrkitchin committed May 4, 2020
1 parent 6092c44 commit f52346c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scimax.org
Original file line number Diff line number Diff line change
Expand Up @@ -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 =<pause>= and =<scroll>= act like these extra modifiers. Here is a snippet that will do that.

#+BEGIN_SRC emacs-lisp
(define-key function-key-map (kbd "<pause>") 'event-apply-super-modifier)
(define-key function-key-map (kbd "<scroll>") '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 |
Expand Down

0 comments on commit f52346c

Please sign in to comment.