aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-06-07 00:51:36 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-06-07 00:51:36 -0400
commitda5fb21c5ca7c773815bca81285aaadd09b9d453 (patch)
tree62572147f1605aa2a03182c2b6a856af2ee20ed5 /init.el
parentAdd keybinds for rectangular selection (diff)
downloadmmosmacs-da5fb21c5ca7c773815bca81285aaadd09b9d453.tar.gz
mmosmacs-da5fb21c5ca7c773815bca81285aaadd09b9d453.tar.bz2
mmosmacs-da5fb21c5ca7c773815bca81285aaadd09b9d453.zip
Fix CUA rectangle selection keybind
Diffstat (limited to 'init.el')
-rw-r--r--init.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/init.el b/init.el
index a64453e..4ce9b68 100644
--- a/init.el
+++ b/init.el
@@ -530,7 +530,10 @@
530;; Enable `cua-selection-mode' for 530;; Enable `cua-selection-mode' for
531;; rectangular selection. 531;; rectangular selection.
532(add-hook 'after-init-hook 'cua-selection-mode) 532(add-hook 'after-init-hook 'cua-selection-mode)
533(global-set-key (kbd "s-c") 'rectangle-mark-mode) 533(global-set-key (kbd "s-c") 'cua-rectangle-mark-mode)
534(set-face-attribute 'cua-rectangle nil
535 :background "#110"
536 :foreground nil)
534 537
535 538
536;; --------------------------------- 539;; ---------------------------------