From d2f85967f21282d9fd873a23b11ffd205491cbad Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Wed, 3 Jun 2015 14:44:55 +0100 Subject: [PATCH] el/dot-emacs.el (mdw-fontify-rust): Also indent on `{'. Organization: Straylight/Edgeware From: Mark Wooding I haven't decided yet where to put the open brace of a Rust function definition. --- el/dot-emacs.el | 1 + 1 file changed, 1 insertion(+) diff --git a/el/dot-emacs.el b/el/dot-emacs.el index f8af576..3a461d6 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -2051,6 +2051,7 @@ (defun mdw-fontify-rust () '(0 mdw-punct-face))))) ;; Hack key bindings. + (local-set-key [?{] 'mdw-self-insert-and-indent) (local-set-key [?}] 'mdw-self-insert-and-indent) ;; Final hacking. -- [mdw]