From 76a464c7cfe396f460619afeaa500013a9b3228c Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Tue, 20 Apr 2021 17:59:09 -0500 Subject: Fix some dumbness --- init.el | 1 - lisp/acdw-org.el | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/init.el b/init.el index 6627a82..3a00478 100644 --- a/init.el +++ b/init.el @@ -545,7 +545,6 @@ (:global "C-=" er/expand-region)) (setup (:straight crux) - (advice-add 'kill-line :override #'crux-kill-and-join-forward) (:global "M-`" crux-other-window-or-switch-buffer "C-o" crux-smart-open-line "M-o" crux-smart-open-line-above diff --git a/lisp/acdw-org.el b/lisp/acdw-org.el index dfabcc7..13a1b88 100644 --- a/lisp/acdw-org.el +++ b/lisp/acdw-org.el @@ -170,7 +170,7 @@ appropriate. In tables, insert a new row or end the table." nil 'tree))) -(defun acdw-org/fix-blanks-in-buffer () +(defun acdw-org/fix-blank-lines-in-buffer () (when (eq major-mode 'org-mode) (let ((current-prefix-arg 4)) (call-interactively #'acdw-org/fix-blank-lines)))) -- cgit 1.4.1-21-gabe81 From 82c75698ec8cfbebc104937af870885515fc46ba Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Tue, 20 Apr 2021 17:59:24 -0500 Subject: Add `electric-cursor' Mine own package! --- init.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/init.el b/init.el index 3a00478..dd7fc2a 100644 --- a/init.el +++ b/init.el @@ -767,6 +767,11 @@ if ripgrep is installed, otherwise `consult-grep'." (setup (:straight flyspell-correct) (define-key flyspell-mode-map (kbd "C-;") #'flyspell-correct-wrapper))) +(setup (:straight (electric-cursor + :host github + :repo "duckwork/electric-cursor")) + (electric-cursor-mode +1)) + ;;; Programming -- cgit 1.4.1-21-gabe81