リビジョン | a9c81b93a7eea86d72004f150227077e80c25750 (tree) |
---|---|
日時 | 2023-05-08 05:21:18 |
作者 | Markus <markus.prepens@gmai...> |
コミッター | GitHub |
W32 specific key assignments
@@ -110,6 +110,14 @@ forward-slashes." | ||
110 | 110 | (menu-bar-mode -1) |
111 | 111 | (blink-cursor-mode -1))) |
112 | 112 | |
113 | +(when (eq system-type 'windows-nt) | |
114 | + (setq w32-pass-lwindow-to-system nil) | |
115 | + (setq w32-lwindow-modifier 'super) ; Left Windows key | |
116 | + (w32-register-hot-key [s-]) ; disable all Windows shortcuts while Emacs has focus | |
117 | + (setq w32-pass-rwindow-to-system nil) | |
118 | + (setq w32-rwindow-modifier 'super) ; Right Windows key | |
119 | + (setq w32-apps-modifier 'hyper)) ; Menu/App key | |
120 | + | |
113 | 121 | ;;;;;;;;;; |
114 | 122 | ;; The history mode |
115 | 123 | (setq savehist-additional-variables ;; also save ... |