try catch block indentation in emacs - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T17:29:22Z http://stackoverflow.com/feeds/question/476384 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/476384/try-catch-block-indentation-in-emacs 2 try catch block indentation in emacs Stephen Burke 2009-01-24T17:40:16Z 2009-01-24T19:02:13Z <p>I'm using the bsd style of indentation in emacs &amp; I'd like to modify it a bit. The related portion of my .emacs file is below. When I write a function with try catch blocks the braces are indented. I'd like them to not indent similar to a function.</p> <p>What's it's doing now. </p> <pre><code>try { } catch { } </code></pre> <p>What I'd like it to do. </p> <pre><code>try { } catch { } </code></pre> <p>.emacs file</p> <pre><code>(defun my-c-mode-common-hook () ;; my customizations for all of c-mode and related modes ;; other customizations can go here (setq c-default-style "bsd") (setq c-basic-offset 4) (setq indent-tabs-mode nil) ) (add-hook 'c-mode-common-hook 'my-c-mode-common-hook) </code></pre> <p>Any help would be appreciated. </p> http://stackoverflow.com/questions/476384/try-catch-block-indentation-in-emacs/476501#476501 5 Answer by scottfrazer for try catch block indentation in emacs scottfrazer 2009-01-24T19:02:13Z 2009-01-24T19:02:13Z <p>Go to the line with the indent you'd like to change and press C-c C-o. This runs c-set-offset and defaults to the current line's syntax (in this case substatement-open). '+' means one level of indent, '-' means one level unindent, and '0' means no additional indent. You want 0. To make it permanent, add (c-set-offset 'substatement-open 0) to your hook.</p>