kyagi / shell-pop-el

shell-pop.el helps you to use shell easily on Emacs. Only one key action to work.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add full frame layout

semente opened this issue · comments

There is only the options to put the shell on bottom or top. Would be great if had a option to it close all other windows and show only the shell (on quit it restore the windows configuration).

Thanks.

I think you can get what you want by setting 100 to the custom-variable shell-pop-window-height.

It unfortunately fill only the whole Emacs window with the shell, not the whole frame.

I got the point. It is easy to get a full frame for the shell by destroying all other windows, but in that case it'd be difficult to get those windows back by the toggle action. Umm.

You can use current-window-configuration to save it and then restore.it with set-window-configuration.

You can save the window configuration to the register and revert afterwards. Give a look at (window-configuration-to-register)

@Fuco1's tip looks programatically better than mine

@semente Please update to latest version and set shell-pop-window-position to "full".

(setq shell-pop-window-position "full")

If you have problem, please report agin

Works great! Thank you guys!