I just installed debian 8 and emacs24. I noticed a new feature! you now can push F11 to enter fullscreen mode. I wanted to put emacs on fullscreen mode at startup, but couldn't find the command... and then I though that it would be easier tell emacs just to "push" F11 on my .emacs
Is there any command I can use so emacs will press a given sequence of keystrokes? something like
(just-push-it "\C-x" "3" "\C-x" "\C-o" "\M-x ansi-term")
f11
by usingdescribe-key
:C-h k f11
. – Dan Jun 30 '15 at 20:24(toggle-frame-fullscreen)
. I guess a command that allows you to press keystrokes is not a good idea after all... someone might change the keystrokes and everything would mess up. Anyway, I can think some crazy scenarios where someone might want to force emacs to push keystrokes... – Bengalaa Jun 30 '15 at 20:32