diff options
author | ThanosApollo <[email protected]> | 2022-11-23 18:29:23 +0200 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-11-23 18:29:23 +0200 |
commit | 7afb5197fe0b37c4876c0e1648d833a87c3b5fae (patch) | |
tree | 8b15531a82d8cf1e399e10419905791094eb2fbd /.emacs.d | |
parent | 91e7fb9db945a3b9ff62910ffcfed21f97457e47 (diff) |
Change copy-region-as-kill to C-k
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/lisp/init-keys.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-keys.el b/.emacs.d/lisp/init-keys.el index 4966f6b..051a93a 100644 --- a/.emacs.d/lisp/init-keys.el +++ b/.emacs.d/lisp/init-keys.el @@ -6,7 +6,7 @@ ;;Editing (global-set-key (kbd "C-d") 'kill-region) -(global-set-key (kbd "C-c C-c") 'copy-region-as-kill) +(global-set-key (kbd "C-k") 'copy-region-as-kill) ;;Counsel (global-set-key (kbd "M-;") 'counsel-M-x) |