Emacs: fix the height of certain windows

Is there a way to fix the height of a specific window, as is possible with * compilation * buffers using Compile window heights?

+5
source share
1 answer

There is a window-size-fixedbuffer local variable. If you set the value heightor t, this window will get a fixed height.

eg.

M-x set-variable window-size-fixed height
+10
source

All Articles