15
votes
6answers
4k views
How do I set the size of emacs’ window?
I'm trying to detect the size of the screen I'm starting emacs on, and adjust the size and position the window it is starting in (I guess that's the frame in emacs-speak) accordingly. I'm trying to …
10
votes
Starting any Emacs buffer with a .c extension with a template
Put somthing like this in .emacs
(define-skeleton c-throwaway
"Throwaway C skeleton"
"#include <stdio.h>\n"
"#include <stdlib.h>\n"
"\n"
"int main …
6
votes
Emacs mode multiline comments
It's like this:
(define-derived-mode my-mode
awk-mode "my"
"My mode"
(setq comment-multi-line nil) ; maybe
(setq comment-start "/* ")
(setq comment-end "*/"))
…
1
vote
Will emacs make me a better programmer?
I know you didn't ask this, but one thing learning emacs (unexpectedly) improved for me was manipulating a command line. Before I learned emacs keybindings I used to move the cursor and navigate hi …
