David Wallin wrote:
> The subject pretty much says it all. I want to make the hyper modifier
> mean C-c, e.g., pressing 'H-d' should be equivalent of/translated into
> 'C-c d'.

I think you need to explicitly bind each character:

;; Define each Hyper-modified printable ASCII character (space through tilde)
;; as a keyboard macro: Control-c followed by the character itself
(let ((char ? ))
  (while (<= char ?~)
(global-set-key (vector (car (read-from-string (format "?\\H-%c" char))))
                    (format "\C-c%c" char))
    (setq char (1+ char))))

--
Kevin Rodgers



_______________________________________________
Help-gnu-emacs mailing list
Help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

Reply via email to