I would like to set the following keyboard shortcuts:
- Copy (selected text):
C-c - Cut (selected text):
C-x - Paste from clipboard:
C-v - Debugger (GDB):
M-g
Now I realize that to do this I merely need the command for each of these, and add lines of the form:
(global-set-key (kbd "shortcut") 'command) to my ~/.emacs file. The problem is that Googling emacs commands hasn't revealed the emacs commands for each of these. So all I need is the commands for each of these.