Remy Suen

Results 172 comments of Remy Suen

I wonder if it might make more sense to change `Branch.isHead` to return `true` or `false` so that it's more intuitive instead of letting it return `0` or `1`...

@dsabanin For better or worse, we've changed API before. ;) Many functions have changed from synchronous to being asynchronous.

Monaco will do prefix matching by default so. Since your the text where your cursor is currently has a prefix of `color:-` which fails a prefix match with `--my-var`, all...

> v3 is still in flux I thought v3 came out in [December 2016](https://github.com/Microsoft/language-server-protocol/commit/164eb31bd49535dca046034602146f96bb17b56d). Am I misunderstanding something?

I don't believe those are breaking changes but certainly better safe than sorry.

Alternatively, perhaps the issue is that I called `jwt:set_trusted_certs_file(...)` and/or `jwt:set_x5u_content_retriever(...)` when I don't actually need to (as my JWT's header doesn't contain an `x5c` or an `x5u` property)? If...

I also have this problem. I'm trying to write a [test](https://docs.graphene-python.org/en/latest/testing/) and it seems to hang forever with a (seemingly) harmless GraphQL query. ```Graphql { emailLists { name } }...

@sinaa This is not possible. See #874.

> @rcjsuen How to achive this using existing monaco api? @GNSubrahmanyam Sorry, I have no idea. This is not something I have ever tried to investigate as I do not...

@alan-codaio Try using `triggerCharacters`. ```JavaScript function createDependencyProposals(range) { // returning a static list of proposals, not even looking at the prefix (filtering is done by the Monaco editor), // here...