diff options
author | Case Duckworth | 2021-04-20 17:59:09 -0500 |
---|---|---|
committer | Case Duckworth | 2021-04-20 17:59:09 -0500 |
commit | 76a464c7cfe396f460619afeaa500013a9b3228c (patch) | |
tree | 18808446dc614c540c88170bf1458166b54d984c | |
parent | Use company for completion-in-region instead of corfu (diff) | |
download | emacs-76a464c7cfe396f460619afeaa500013a9b3228c.tar.gz emacs-76a464c7cfe396f460619afeaa500013a9b3228c.zip |
Fix some dumbness
-rw-r--r-- | init.el | 1 | ||||
-rw-r--r-- | lisp/acdw-org.el | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/init.el b/init.el index 6627a82..3a00478 100644 --- a/init.el +++ b/init.el | |||
@@ -545,7 +545,6 @@ | |||
545 | (:global "C-=" er/expand-region)) | 545 | (:global "C-=" er/expand-region)) |
546 | 546 | ||
547 | (setup (:straight crux) | 547 | (setup (:straight crux) |
548 | (advice-add 'kill-line :override #'crux-kill-and-join-forward) | ||
549 | (:global "M-`" crux-other-window-or-switch-buffer | 548 | (:global "M-`" crux-other-window-or-switch-buffer |
550 | "C-o" crux-smart-open-line | 549 | "C-o" crux-smart-open-line |
551 | "M-o" crux-smart-open-line-above | 550 | "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." | |||
170 | nil | 170 | nil |
171 | 'tree))) | 171 | 'tree))) |
172 | 172 | ||
173 | (defun acdw-org/fix-blanks-in-buffer () | 173 | (defun acdw-org/fix-blank-lines-in-buffer () |
174 | (when (eq major-mode 'org-mode) | 174 | (when (eq major-mode 'org-mode) |
175 | (let ((current-prefix-arg 4)) | 175 | (let ((current-prefix-arg 4)) |
176 | (call-interactively #'acdw-org/fix-blank-lines)))) | 176 | (call-interactively #'acdw-org/fix-blank-lines)))) |