Ryuichi Inagaki

Results 95 comments of Ryuichi Inagaki

> For now, I would just hope vscode someday introduce a function to let us have a left column in each textdocument. Then I would stop using html view, simply...

The issue has been closed with the new feature for just switching the way to display line numbers; and that's not enough for Annotator to put annotations into gutter.

Hi @stessaris sorry for my late reply and thanks for the suggestion. Sounds good. Do you want to provide a use case you have in your mind?

Cool thanks for the additional context. I also sometimes want to do text processing without modifying the original text; I copy the text into a new tab then run this...

Hi @gitcabezon , thanks for the great suggestion. Let me re-think this once we have the following feature implemented in the editor. https://github.com/microsoft/vscode/issues/35785 I'd like to start typing a command...

Thanks for reporting it. I could observe the symptom on mac although I still don't know the exact steps to reproduce it as it doesn't always happen. And yeah, without...

Yeah it would be nice if we have this especially when you work on a large file.

If I add this in the html, I can open annotation view already scrolled to the specified `lineNumber`. ``` js var selector = '.line:nth-of-type(' + lineNumber + ')'; window.scrollTo(0, document.querySelector(selector).offsetTop)...

> 1. Switch back to the annotation view, you are not at line Y but X. By the way, at this timing, the `window.scrollTo(` gets executed twice.