Raoul Wols
Raoul Wols
I would like to see this ST package utilize asyncio to its fullest for py3.8 in order to decrease the abundant thread usage in packages today. Are you interested in...
There are a few python docstyles out in the wild. See: https://stackoverflow.com/a/24385103. Most notably, none of these are markdown. The return type from pyls for a textDocument/hover request is a...
While working on https://github.com/sublimelsp/LSP/pull/932, I learned that pyls does **not** handle UTF-16. It assumes that (row, col) pairs are in terms of UTF-32 points. For the row it doesn't matter...
When doing a `textDocument/references` request, pyls only searches for references in the files that were sent via `textDocument/didOpen`. It should instead search the entire workspace that contains the file.
this snippet throws: ```c++ auto node = YAML::Load("-126"); try { const auto y = node.as(); std::cout
Colors
This isn't done yet as it has some bugs. Pretty pictures: ## Derived from "Mariana" scheme ## Derived from "Blue Thunder" scheme ## Derived from "Breakers" scheme I've been fudging...
I'm playing around with DoxyPress and so far it seems very interesting. Nice work! I immediately have an issue I wanted to talk about. The clang parsing functionality is very...
### Problem description When using an inline phantom (`sublime.LAYOUT_INLINE`), it's ambiguous where the phantom should position itself for a region that is already filled with characters/text. ``` aaaa ^^ the...
### Problem description When a plugin takes a long time to prepare results for `on_query_completions` using the `sublime.CompletionList` future, it can be the case that the user has finished typing...
### Problem description There's mention of layout coordinates, and viewport coordinates, but nowhere in the API docs are those spaces defined. ### Preferred solution Define what these coordinates are. Where...