rolandwalker / simpleclip

Simplified access to the system clipboard in Emacs.
174 stars 16 forks source link

Can I remap the default keybind #19

Closed z3roco01 closed 2 years ago

z3roco01 commented 2 years ago

Is there anyway I can remap the default keybinds to C-S-c for copy, C-S-x for cut and C-S-p for paste

rolandwalker commented 2 years ago

Hi! You could use customize, or directly, in your Emacs config:

(define-key simpleclip-mode-map (kbd "C-S-c") 'simpleclip-copy)
(define-key simpleclip-mode-map (kbd "C-S-x") 'simpleclip-cut)
(define-key simpleclip-mode-map (kbd "C-S-p") 'simpleclip-paste)
z3roco01 commented 2 years ago

Thanks that works great