Tagged Questions
The cperl-mode tag has no wiki summary.
5
votes
3answers
568 views
Can I use cperl-mode with perl-mode colorization?
The Emacs cperl-mode seems to get confused less than perl-mode, but the Skittles effect makes the thing unusable for me. Does anyone have or know of an example of a .emacs block that causes ...
4
votes
1answer
106 views
Is it possible to highlight interpolated perl variables in emacs?
Recently I've started using emacs and after overcoming a number of hurdles in making cperl-mode operate in a way that is agreeable I've become stumped by this problem. Currently I have all scalars in ...
3
votes
1answer
270 views
How do I adjust cperl mode indentation in Emacs to match Moose examples?
How can I set up cperl mode in Emacs so that the indentation after brackets, e.g.
has 'name' => (
is => 'rw',
isa => 'Str',
...
3
votes
2answers
268 views
Can I customize the indentation of ternary operators in emacs' cperl-mode?
In emacs cperl-mode, ternary operators are not treated specially. If you break them over multiple lines, cperl-mode simply indents each line the same way it indents any continued statement, like this:
...
1
vote
1answer
103 views
How do I keep braces from moving in Emacs cperl mode?
I'm using GNU Emacs 22.2.1 and cperl 5.23.
I have perl code like this:
sub foo
{
if($x)
{
print "x";
}
else
{
print "y";
}
}
I'd like to reindent the code to a ...
1
vote
1answer
162 views
How can I make emacs' cperl-mode indent all statement continuations by only one level?
In emacs' cperl-mode, lines that continute a statement from a previous line are indented by one level:
my $var
= (1+1)
* (2+2)
/ (3+3);
However, if the statement does not begin at zero ...
1
vote
1answer
258 views
Emacs CPerl mode: bug in indent-region
I edit my Perl scripts in Emacs, using CPerl mode. But the Emacs function indent-region is broken in that mode. If I have a variable:
my $num_elements;
it becomes
my $num_ elements;
It's very ...
1
vote
1answer
68 views
How do I adjust cperl mode indentation of qw//?
Following on from this question, here's another bugbear.
I am getting
my @browsers = qw/
Firefox
MSIE
/;
but I want
my @browsers = qw/
Firefox
...
1
vote
5answers
678 views
How do I stop auto-formatting in emacs cperl mode?
When I do indent-region in cperl-mode
if ($x) { next; }
Emacs reformats it to:
if ($x) {
next;
}
How can I make it stop doing that?
Note: the question originally said that this reformatting ...
0
votes
1answer
107 views
emacs identation works only in terminal (-nw)
I have GNU Emacs 23.1.1, on Ubuntu 10.10.
I have to following .emacs:
(custom-set-variables
'(cua-mode t nil (cua-base))
'(inhibit-startup-screen t)
)
(show-paren-mode 1)
(setq show-paren-delay ...