From 0bf887476665a36d86f54c3076653c2db029a809 Mon Sep 17 00:00:00 2001 From: rearman Date: Thu, 8 Dec 2022 15:41:38 -0500 Subject: [PATCH] Added binding for kill-whole-line and b/s on C-h (help on F1) --- init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 3a27019..991e30b 100644 --- a/init.el +++ b/init.el @@ -108,7 +108,7 @@ fill-column 80 read-file-name-completion-ignore-case t read-buffer-completion-ignore-case t - cursor-type 'bar + cursor-type 'box cursor-in-non-selected-windows nil) ;; DEFUNS @@ -257,8 +257,10 @@ Stolen from BrettWitty's dotemacs github repo." (global-set-key (kbd "C-c w") 'edit-work-eqs) ;; OVERRIDES (global-set-key [remap move-beginning-of-line] 'smart-beginning-of-line) +(global-set-key (kbd "C-h") 'backward-delete-char-untabify) (global-set-key (kbd "M-j") 'backward-join-line) (global-set-key (kbd "M-J") 'join-line) +(global-set-key (kbd "C-S-k") 'kill-whole-line) (global-set-key (kbd "C-o") 'open-line-below) (global-set-key (kbd "M-o") 'open-line-above) (global-set-key (kbd "M-s .") 'isearch-forward-thing-at-point) -- 2.39.5