help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: indent after parens in cperl-mode


From: wenbinye
Subject: Re: indent after parens in cperl-mode
Date: 10 Aug 2006 23:15:37 -0700
User-agent: G2/0.2

 I use cperl style "PerlStyle", and set cperl-mode-hook as following,
it's ok.
(add-hook 'cperl-mode-hook
          (lambda()
            (cperl-set-style "PerlStyle")
            (setq cperl-indent-parens-as-block t)
            (setq cperl-close-paren-offset (- cperl-indent-level))
            (setq cperl-invalid-face nil)
            (setq cperl-auto-newline t)))

The two variable: cperl-indent-parens-as-block and
cperl-close-paren-offset
control this indent behavior.

Hope this help.

Taff wrote:
> Hi,
>
> Pls help me with cperl mode for Emacs.
>
> 1. I want not ident parens and arguments in such way.
> Check_agruments(
>                arguments
>                );
>
> 2. But I want in such.
> Check_agruments(
>  arguments
> );
>
> I had tried to use all styles in cperl-set-style, but it's not help.
> Also i try to understand how work cperl-calculate-indent but
> i'm not strong in ELisp.
> 
> Thx a lot.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]