DmitriyBalmashnov

Results 6 comments of DmitriyBalmashnov

Familiarized myself a little bit with the code structure: My preliminary guess is the following: function `build_output_text` in `rplugin/python3/molten/outputbuffer.py` truncates according to a limit, however, `chunk.place` at that point has...

Here's a hacky fix that actually works: ``` def build_output_text(self, shape, buf: int, virtual: bool) -> Tuple[List[str], int]: lineno = 1 # we add a status line at the top...

Maybe something like this is decent: ```{python} class LineLimitChunkBuilder: def __init__(self, out_chunks: List[OutputChunk], exempt_types:List[type], limit:int): self.limit = limit self.truncation_applied = False self.remaining_chars = limit self.lcb = LineChunkBuilder(out_chunks) self.exempt = exempt_types...

@firai Is there a way to make the .cm-bottom-panel not spawn in dynamically as it does on the web-demo for the notebooks too? I found a little css-hack which alleviates...

In the telescope repo I saw that the merged solution worked as follows: ``` local health = vim.health or require "health" local start = health.start or health.report_start local ok =...