I'm going to try to make my situation as clear as possible.
Basically, I want to make changes to my .emacs
init file so that I can add on new features to emacs, however any changes I make do not change the way emacs operates.
This is what I did. First I cd
into my .emacs.d
directory, this directory contains the following files (hidden and not hidden) :
ls -a .emacs.d
. .. auto-save-list
As you can see, there is no .emacs
init file in this directory, so I made one, and added the following code to it:
(global-set-key (kbd "<f10>") 'execute-extended-command)
In this example, I'm simply adding a second-key-binding to a specific command. I've tried adding all kinds of different code to my .emacs
file, but still nothing works. Can anyone tell me why, it makes no sense why this shouldn't work...