try catch block indentation in emacs - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T17:29:22Zhttp://stackoverflow.com/feeds/question/476384http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/476384/try-catch-block-indentation-in-emacs2try catch block indentation in emacsStephen Burke2009-01-24T17:40:16Z2009-01-24T19:02:13Z
<p>I'm using the bsd style of indentation in emacs & 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#4765015Answer by scottfrazer for try catch block indentation in emacsscottfrazer2009-01-24T19:02:13Z2009-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>