From: rearman Date: Thu, 13 Apr 2023 19:28:28 +0000 (-0400) Subject: Make c-style do what I want on backspace X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=4b9325a86c8a1f72ac936b7aa72bd1e08d824370;p=emacsinit.git Make c-style do what I want on backspace --- diff --git a/init.org b/init.org index 038d5e6..9420e34 100644 --- a/init.org +++ b/init.org @@ -444,6 +444,7 @@ Please use Tabs in C files, I'm BEGGING. Absolutely ridiculous that there's no (lambda () (setq indent-tabs-mode t) (setq show-trailing-whitespace t) + (setq c-backspace-function 'backward-delete-char) ;; don't expand my tabs, just delete them. (c-set-style "linux-tabs-only"))) #+END_SRC