Alex Ross

Results 419 comments of Alex Ross

_From @dbaeumer on February 4, 2019 8:46_ Not sure if this is a theme or grammar problem.

@nox, I'm not very familiar with Rust. Is this an example of the different highlighting? ![image](https://user-images.githubusercontent.com/38270282/52202603-46740400-286f-11e9-8451-632b8d843d0b.png)

_From @nox on February 4, 2019 10:26_ ```rust core::char::DecodeUtf16Error, core::char::EscapeDebug, core::char::EscapeDefault, core::char::EscapeUnicode, core::char::ParseCharError, core::char::ToLowercase, core::char::ToUppercase, ``` Basically, those identifiers always appear in a different colour wherever they are. I filed...

_From @nox on February 4, 2019 10:28_ Like, is there a way to tell the editor to paint things a different colour that is used by a different class of...

I see, thanks for the example. This is an issue with the grammar we use for Rust. It categorizes `char` in `core::char::DecodeUtf16Error` as storage.type.core.rust and it should probably just categorize...

Discussed this a few weeks ago. Remote Explorer views and Ports view should be fine to make non-workspace.

Actually, looking further, Remote Explorer is intentionally workspace to prevent https://github.com/microsoft/vscode/issues/112200

I will still remove `workspace` from the Ports view, but it is needed for views in Remote Explorer.

Yes, it fixes https://github.com/microsoft/vscode/issues/112200. Without workspace specific views, you can end up with incorrect Remote Explorer views showing when you have multiple windows open.

@sandy081 if I recall correctly it is because the view visibility state is synced across windows. Example: 1. Open window 1 and connect to a WSL remote. 2. Remote explorer...