Tagged Questions
The cc-mode tag has no wiki summary.
20
votes
2answers
8k views
Making php-mode (and other cc-mode derived modes) Compatible with Emacs 23
I am using Emacs 23 and php-mode.el 1.5.0. When I have this in my .emacs:
(require 'php-mode)
I get this error message when Emacs starts:
Warning (initialization): An error occurred while loading ...
17
votes
1answer
324 views
Java Coding Style & Emacs cc-mode configuration
I'm using GNU/Emacs HEAD with the included cc-mode (c-version 5.32.2) on a GNU/Linux Debian machine.
I'm trying to define a custom style to manage the Code Conventions for the Java Programming ...
4
votes
2answers
104 views
Overload a Keybinding in Emacs
I've looked through a number of other questions and el files looking for something i could modify to suit my needs but I'm having trouble so I came to the experts.
Is there anyway to have a key ...
4
votes
6answers
446 views
How can can I get emacs to insert closing braces automatically
I've just started using emacs, and there's one feature I'd really like, and searching around a bit was fruitless. I hope someone else has done this because I don't want to learn elisp just yet.
void ...
3
votes
1answer
73 views
Emacs: How to automatically insert space after colon in cc-mode derivatives
Suppose I have this code:
{
"type" : "home",
"number":"212 555-1234"
}
I want my emacs to automatically insert space after colon in some modes.
Particularly I'm using javascript-mode based on ...
3
votes
2answers
91 views
Emacs cc-mode tab behavior
Pressing tab multiple time doesn't move text to the right. Is there is a way to make it behave like Visual Studio's smart indent? First tab indents, subsequent tabs move text to the next tab stop. ...
2
votes
2answers
396 views
Make Emacs less aggressive about indentation
Emacs reindents the current line whenever I type certain things, like ";" or "//". This is pretty annoying, since there are a whole lot of places where it isn't smart enough to indent correctly.
How ...
1
vote
1answer
59 views
CC-Mode 5.32.1 with Latest Emacs
I'm trying cc-mode 5.32.1 with Emacs trunk. When I compile I get these errors
cc-mode.el:596:29:Error: Symbol's function definition is void: byte-compile-obsolete
Compiling file ...
1
vote
1answer
393 views
What does the elisp error “Wrong type argument: sequencep, t” mean?
I'm trying to byte-compile cc-mode 5.31.3 using emacs 23.1.1 as follows:
$ emacs -batch --no-site-file -q -f batch-byte-compile *.el
But two of the files are failing to compile (in addition to ...
1
vote
1answer
484 views
Indenting template arguments in Emacs
I'm having no luck getting Emacs (cc-mode) to indent multiline template arguments. Here's an example line:
typedef ::boost::zip_iterator< ::boost::tuple<
vector<int>::const_iterator, ...
0
votes
2answers
84 views
Change Emacs C style not working
For Emacs CC-mode, I am trying to use the "bsd" style, but make it so that all lines default to indentation in increments of 4 instead of 8. In my .emacs file, I have put:
(setq c-default-style "bsd"
...
0
votes
0answers
115 views
Emacs double indentating inheritance list inside namespaces
I'm using Emacs 22.2.1 and cc-mode is getting confused determining the syntactic information for the line, and ends up getting the indentation wrong.
If I derive from a class not in a namespace, like ...