use s-%c instead of H-c to jump to register

This commit is contained in:
2017-12-02 00:17:51 +01:00
parent 3d4181e9c8
commit 7804a734af
+1 -1
View File
@@ -677,7 +677,7 @@ inserted between the braces between the braces."
(let ((character ?a))
(while (<= character ?z)
(let ((func-name-symbol (make-symbol (format "my-switch-to-register-%c" character))))
(global-set-key (kbd (format "H-%c" character))
(global-set-key (kbd (format "s-%c" character))
(eval (list 'defun func-name-symbol '()
(format "switch to buffer of register %c" character)
'(interactive)