Paul Hummer
Paul Hummer
Measurement completion should be made available in workspace configuration. DOD: - Measurement names are completable where applicable
Bucket completion can be enabled via workspace configuration. DOD: - Bucket names are options in the autocomplete of `from`
In the server tests, we have some code that looks like this: ``` import "strings" import "csv" cal = 10 env = "prod01-us-west-2" cool = (a) => a + 1...
`textDocument/signatureHelp`'s response has an `activeParameter` and `activeSignature` members, both of which signal to the client which signature/parameter has focus. They are not currently implemented in the lsp implementation but should...
If a user creates a flux function or a variable , it is not included in the list of completion items. It should be.
Consider the following: ``` a = {b: {c: "foo"}} ``` If one types `a.b.`, `c` will not be suggested as a completion. [This code](https://github.com/influxdata/flux-lsp/blob/master/src/completion.rs#L1166) needs to be expanded to recurse...
@Anaisdg commented on [Fri Sep 03 2021](https://github.com/influxdata/vsflux/issues/291) The ability to browse and inject complete functions in the UI is so useful for beginner (and advanced Flux users who are always...
After talking about the potential for a new/improved `stateChanges` function, the working group came up with a `scan` function proposal that we'd like to create. `scan` will have the following...
## Summary Let's say we have two separate native modules, `things_types` which defines a `Thing` class, and `things` which has a `get_all() -> List[Thing]` function. Then I write the following...
This patch re-enables two clippy lints that were disabled when clippy was added, and addresses the issues connected with it.