zk-phi

Results 58 comments of zk-phi
trafficstars

FYI: It seems there aren't any official APIs to do that (as far as I see), but if you may use unofficial APIs, this worked for me: ```jsx class Foo...

@CSRaghunandan , Thank you for reporting, I'll look this into later when I have time off.

As I remember, indent-guide does not use any major-mode specific things and it sounds strange to me. Do you remember the changes you made that fixed indent-guide ?

Thanks. Does the problem also happen in `js-mode` (with the same file) ? If yes, it seems a bug in `indent-guide`, so can you show me the (part of) code...

I looked into fill-column-indicator.el and found that both indent-guide and fill-column-indicator make overlays at the same point to render vertical lines. I'm afraid that it needs much work to avoid...

how about setting `auto-hscroll-mode` ? ``` (setq sublimity-auto-hscroll-mode nil auto-hscroll-mode t) ```

hmm... can you tell me which command is invoked on hscroll? (` k` then scroll right or left)

I got it. sublimity internally uses `recenter` to determine the amount of scroll without redisplaying, thus it may be technically difficult...

`recenter` is always called whenever the cursor goes outside the visible portion of the window, and the cursor is vertically centered. so it's not special for the end of the...