From: rearman Date: Thu, 8 Dec 2022 20:41:38 +0000 (-0500) Subject: Added binding for kill-whole-line and b/s on C-h (help on F1) X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=0bf887476665a36d86f54c3076653c2db029a809;p=emacsinit.git Added binding for kill-whole-line and b/s on C-h (help on F1) --- 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)