summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-04-12 17:58:33 -0500
committerCase Duckworth2021-04-12 17:58:33 -0500
commit57e027f753e5f3c77030c97d3de7ad5a7dd61f86 (patch)
tree0de2c9f560aea439c25b0f2f95bc2f9fed365320 /init.el
parentConfigure `company-mode' (diff)
downloademacs-57e027f753e5f3c77030c97d3de7ad5a7dd61f86.tar.gz
emacs-57e027f753e5f3c77030c97d3de7ad5a7dd61f86.zip
Add `acdw-org/delete-backward-char' and advise
The advice I've added untabifies in addition to deleting the character, which
enables the function to look at `delete-backward-char-untabify-method' or
whatev.

Also ... whitespace apparently?
Diffstat (limited to 'init.el')
-rw-r--r--init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/init.el b/init.el index bba923d..aca677d 100644 --- a/init.el +++ b/init.el
@@ -368,7 +368,8 @@
368 org-html-coding-system 'utf-8-unix 368 org-html-coding-system 'utf-8-unix
369 org-startup-truncated nil) 369 org-startup-truncated nil)
370 (:bind "RET" unpackaged/org-return-dwim) 370 (:bind "RET" unpackaged/org-return-dwim)
371 (add-hook 'before-save-hook #'acdw/hook--org-mode-fix-blank-lines)) 371 (add-hook 'before-save-hook #'acdw/hook--org-mode-fix-blank-lines)
372 (advice-add 'org-delete-backward-char :override #'acdw-org/delete-backward-char))
372 373
373(setup eshell 374(setup eshell
374 (:option eshell-directory-name (acdw/dir "eshell/" t) 375 (:option eshell-directory-name (acdw/dir "eshell/" t)