I found the functions scroll-down-line and scroll-up-line in Emacs 24 (Mac OS X 10.7.3). I can execute M-x scroll-down-line but I haven’t managed to bind this to the F3 key.
I tried:
(global-set-key [f3] 'scroll-down-line)
(global-set-key (kbd "<f3>") 'scroll-down-line)
How can I correctly specify the F3 key so that the above functions work?
Note: I have set Mac OS X to accept the F-keys as proper F-keys, so I don’t have to hit “fn-F3” to get “F3”.
Yous specified it right as
some thing else is happening. What do you see when you run C-h k
f3 after running the above line?