I have the following line in my .emacs.d/init.el file
(global-set-key [(control tab)] 'other-window)
;; remap f1 to undo
(global-set-key (kbd "<f1>") 'undo)
When I use the full X-window GUI version of emacs, the commands works fine. When I start using the -nw
options to use Emacs in a terminal, they don't work at all.
What am I doing wrong?