0

I have (kbd "C-c S-<down>") and (kbd "C-c S-<up>") bound to shrink-window and enlarge-window, respectively.

It works, but I also want Emacs to change window size during a keypress, while I am holding S-<down> or S-<up>.

Is it possible in Emacs?

eush77
  • 3,870
  • 1
  • 23
  • 30

1 Answers1

0
(define-key global-map [S-up] 'enlarge-window)

(define-key global-map [S-down] 'shrink-window)
lawlist
  • 13,099
  • 3
  • 49
  • 158