9
votes
How do I duplicate a whole line in Emacs?
In addition to the previous answers you can also define your own function to duplicate a line. For example, putting the following in your .emacs file will make C-d duplicate the current line.
…
4
votes
Emacs, switch active window
You might also want to try using windmove which lets you navigate to the window of your choice based on geometry. I have the following in my .emacs file to change windows using C-x arrow-key.
…
2
votes
Using gdb in emacs v23
Here's a wild guess:
Emacs's gud-mode requires that gdb gets run with annotations turned on so that it can properly parse the output. I've been bit by this when rewriting the default line e …
3
votes
How do I show what fields a struct has in gdb?
You can use the gdb command "ptype" to print out the definition of a struct or class.
…
