From: rearman Date: Mon, 17 Oct 2022 18:37:11 +0000 (-0400) Subject: Add binding for eval-region X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=b7dafbf4722a6db84cf6f0a3732e7216f5774166;p=emacsinit.git Add binding for eval-region --- diff --git a/common-init.el b/common-init.el index ce5281c..32e2b43 100644 --- a/common-init.el +++ b/common-init.el @@ -177,6 +177,7 @@ Assumes common-init is defined as a variable in the separate init." (global-set-key (kbd "C-u") 'backward-kill-line) (global-set-key (kbd "C-w") 'kill-bword-or-region) (global-set-key (kbd "C-z") 'zap-up-to-char) +(global-set-key (kbd "C-M-z") 'eval-region) (global-set-key (kbd "C-'") 'universal-argument) (global-set-key (kbd "M-%") 'replace-regexp) (global-set-key (kbd "C-M-%") 'query-replace-regexp)