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

REPL buffer scrolls uncontrollably #121

Open
arichiardi opened this issue Dec 31, 2017 · 6 comments
Open

REPL buffer scrolls uncontrollably #121

arichiardi opened this issue Dec 31, 2017 · 6 comments

Comments

@arichiardi
Copy link
Contributor

arichiardi commented Dec 31, 2017

This is quite annoying in my opinion, every time the point is on a symbol (say def in lumo) that does not have arglists and then one that has arglists, you see the REPL buffer scrolling up or down.

I dug into it and it seems that this var in comint sets comint-postoutput-scroll-to-bottom which is responsible for the scrolling.

I could not find a way to customize the behavior, except from removing it from the var completely with:

(seq-filter (lambda (sym) (not (eq 'comint-postoutput-scroll-to-bottom sym))) comint-output-filter-functions)

I know it is extreme but I would like to set this as default. An alternative would be to pass in a custom lambda in comint-output-filter-functions that checks what is the REPL return and decides whether to scroll or not - it seems quite some work for no gain.

Thoughts?

@bbatsov
Copy link
Member

bbatsov commented Jan 1, 2018

This is quite annoying in my opinion, every time the point is on a symbol (say def in lumo) that does not have arglists and then one that has arglists, you see the REPL buffer scrolling up or down.

Can you share some gif recording of this or something? I'm having a hard time understanding what exactly is happening.

@arichiardi
Copy link
Contributor Author

Yep I will, you can try to open an inf-clojure project and move point from def to any other symbol. You will see the REPL buffer scrolling.

@bbatsov
Copy link
Member

bbatsov commented Jan 1, 2018

I guess what puzzles me is what is this output that's triggering this.

@arichiardi
Copy link
Contributor Author

Looks like comint calculates the amount it scrools based on the characters returned in the response, but we hide the returned characters for our actions. So it scrolls but really should not.

@arichiardi
Copy link
Contributor Author

What should we do about this? defcustom?

@MalloZup
Copy link

MalloZup commented Aug 5, 2019

autogenerated with https://github.com/MalloZup/doghub: issue inactive since 450 days. Please update the issue or close it

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

No branches or pull requests

3 participants