Jack Cherng

Results 289 comments of Jack Cherng

But the [LICENSE](https://marketplace.visualstudio.com/items/ms-python.vscode-pylance/license) says ``` a) General. You may install and use any number of copies of the software only with Microsoft Visual Studio, Visual Studio for Mac, Visual Studio...

https://github.com/twigphp/Twig/pull/2787/files#diff-b445caeb1cc1391b4cc1966bd1b1f76cR28 After compilation, wouldn't the current implementation eventually evaluate both the left-hand side and the right-hand side twice at runtime? I mean it's possible that `func1` or `func2` in `func1(arg1)...

@khalwat Sorry I cannot really answer that. But [that is what I saw](https://github.com/php/php-src/pull/1795#issuecomment-387184002) when I was following the `??=` RFC. Initially, `L ??= R` was implemented as a simple syntax...

Presuming this has been fixed by https://github.com/bash-lsp/bash-language-server/pull/433. @skovhus

> @jfcherng this is not fixed. Would love to see a fix or workaround for this. The latest release of Bash IDE doesn't contain [my fix](https://github.com/bash-lsp/bash-language-server/pull/433/files#diff-4c1f558022e743435c3efc9d947a6c651ab4452d9bbd46cd07f7187b96f08746). ![image](https://user-images.githubusercontent.com/6594915/197958858-ec4d271d-a1b1-4941-9cef-5c4d8ec5aab8.png) If you want,...

Iirc, there is no way to know which AC item is currently highlighted.

You may ask Microsoft for that. https://github.com/orgs/community/discussions/11254 There is no general way to ignore thing in LSP protocol. It's per-server definition/implementation. @rchl Is it possible to start/stop attaching a server...

Handling it in LSP makes more sense imho. So we don't need every LSP-* to invent its own format. The session doesn't even need to attach to those ignored files.

Maybe https://github.com/TerminalFi/LSP-copilot#i-see-unable_to_get_issuer_cert_locally-error and use your own cert. Other people confirmed as well: https://github.com/orgs/community/discussions/35544#discussioncomment-4776983

I didn't see that but it may happen. ``` python view.settings().add_on_change("CHECK_FOR_ANSI_SYNTAX", lambda: self.detect_syntax_change(view)) ``` I am not sure how a callback with a local variable as a parameter will be...