Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to stop quickrun frame/window from changing its size. #108

Open
super-tomcat opened this issue Jan 26, 2020 · 3 comments
Open

How to stop quickrun frame/window from changing its size. #108

super-tomcat opened this issue Jan 26, 2020 · 3 comments
Labels

Comments

@super-tomcat
Copy link

Ive bound 'quickrun to a key but everytime I use it the frame/window is resized to the middle of the screen, this can get annoying after I have run it the first time then resize the frame/window and then run it again the frame/window goes back to the middle.... how can I stop that?

Great package by the way... keep up the good work.

@super-tomcat
Copy link
Author

After further experiments adding this to your init file, helps....

(setq even-window-heights nil)

@jcs090218
Copy link
Collaborator

jcs090218 commented Oct 6, 2020

Maybe you can try disable even-window-heights temporary while quickrun?

(defun my-quickrun (fnc &rest args)
  (let ((even-window-heights nil))
    (apply fnc args)))

(advice-add 'quickrun :around #'my-quickrun)

Hope this helps!

@super-tomcat
Copy link
Author

Maybe you can try disable even-window-heights temporary while quickrun?

(defun my-quickrun (fnc &rest args)
  (let ((even-window-heights nil))
    (apply fnc args)))

(advice-add 'quickrun :around #'my-quickrun)

Hope this helps!

I'll give that a try, thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

No branches or pull requests

2 participants