Tagged Questions
The c-mode tag has no wiki summary.
8
votes
1answer
372 views
How to select (mark) the body of a C function in emacs?
I used to remember a key combination in c-mode to select a C function (i mean select the text between start and end of function for copying/killing etc) but i've since forgotten it and can't seem to ...
4
votes
5answers
143 views
compile c++ code in c mode
Following is my code saved as .cpp file and .c file
in .c it compiled fine, but threw the following error in .cpp
test.cpp:6: error: initializer-string for array of chars is too long
test.cpp:6: ...
4
votes
3answers
528 views
Turning on linum-mode when in python/c mode
I want to turn on linum mode (M-x linum-mode) automatically with python and c mode.
I add the following code in .emacs, but it doesn't seem to work.
(defun my-c-mode-common-hook ()
...
4
votes
2answers
1k views
Emacs comment-region in C mode
In GNU Emacs, is there a good way to change the comment-region command in C mode from
/* This is a comment which extends */
/* over more than one line in C. */
to
/* This is a comment which ...
1
vote
3answers
189 views
Emacs c-mode autoloading failed
I want to load my file named "my-c-setup.el" when the c-mode is loading. So, I'm using the function "autoload".
With my python setup, it works well :
lang.el
(autoload 'python-mode ...
1
vote
1answer
787 views
Emacs c-mode fill-paragraph with Doxygen Comments
I have a question that is very similar to http://stackoverflow.com/questions/71788/getting-emacs-fill-paragraph-to-play-nice-with-javadoc-like-comments, but I wasn't sure if I would get many answers ...
0
votes
0answers
33 views
Configure javadoc font face in emacs c-mode
I'm having trouble getting emacs to recognise a block comment as javadoc (for Doxygen-style comments) in a C file:
emacs -q
M-x emacs-version is 24.0.92.1 (i686-pc-linux-gnu, GTK+ Version 2.24.7) of ...
0
votes
1answer
73 views
How can I get Emacs to ignore certain keywords?
I would like to tell emacs to treat some keywords (or regular expressions even better) as syntactic whitespace, or, in other words, to ignore them.
For example: emacs highlighting and cedet ...