Heejae Chang
Heejae Chang
it looks like vscode's markdown renderer supports latex. see https://github.com/microsoft/vscode-jupyter/issues/7525 I can verify the latest version of vscode supports it by creating test.md and putting ```$\pi = 3.14$``` but it...
@wagenrace LSP is language server protocol, and that's what I meant by > it looks like renderer used by LSP doesn't support it. if we support, we will need to...
it is due to missing info on matplotlib stub. by the way, currently matplotlib is a regular stub but a lot of info is missing ex) figure.pyi ```python from typing...
@debonte auto paren is done by text mate not LSP as long as I know. probably need to move this issue to vscode that handles textmate. @judej probably know which...
we need to special case Enum in here - https://github.com/microsoft/pyright/blob/551c6acdcb2384b8a2ffbed270505e590cd9639f/packages/pyright-internal/src/languageService/completionProvider.ts#L1224
I need to check but I don't think vscode currently has a forced code action like VS. (VS forces code action to run when ctrl+. is issued), you need to...
if ctrl+. does force code action, then we probably are not waiting for BG to finish processing everything in the queue before return.
we need to add an ability to wait until every request posted to BG are done when ctrl+. is asked. currently we don't have a way.
we might just disable auto triple quote insertion on liveshare.
the coloring issue is on textmate. except that, I dont see any issue on the repro code. parser is parsing the code correctly.