Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Start stdx | Aleksey Kladov | 2020-03-28 | 1 | -10/+8 |
| | | | | This crate will hold everything to small to be worth publishing | ||||
* | Fix completion of HashMap::new | Florian Diebold | 2020-03-13 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | The `ty` function in code_model returned the type with placeholders for type parameters. That's nice for printing, but not good for completion, because placeholders won't unify with anything else: So the type we got for `HashMap` was `HashMap<K, V, T>`, which doesn't unify with `HashMap<?, ?, RandomState>`, so the `new` method wasn't shown. Now we instead return `HashMap<{unknown}, {unknown}, {unknown}>`, which does unify with the impl type. Maybe we should just expose this properly as variables though, i.e. we'd return something like `exists<type, type, type> HashMap<?0, ?1, ?2>` (in Chalk notation). It'll make the API more complicated, but harder to misuse. (And it would handle cases like `type TypeAlias<T> = HashMap<T, T>` more correctly.) | ||||
* | Add basic parameter name hints heuristics | Kirill Bulatov | 2020-02-23 | 1 | -3/+13 |
| | |||||
* | More manual clippy fixes | Kirill Bulatov | 2020-02-18 | 1 | -3/+2 |
| | |||||
* | cleanup imports | Aleksey Kladov | 2020-02-06 | 1 | -11/+6 |
| | |||||
* | Improve parameter hints a bit & add emacs support | Florian Diebold | 2020-01-18 | 1 | -3/+16 |
| | | | | | - just include the name, not e.g. `mut` - don't return empty hints (or `_`) | ||||
* | FnSignature: use unwrap_or_default for parameter_name_list | imtsuki | 2020-01-15 | 1 | -5/+3 |
| | | | | Signed-off-by: imtsuki <[email protected]> | ||||
* | Add inlay parameter name hints for function calls | imtsuki | 2020-01-14 | 1 | -0/+22 |
| | | | | Signed-off-by: imtsuki <[email protected]> | ||||
* | Use Name::missing consistently | Aleksey Kladov | 2019-11-27 | 1 | -5/+2 |
| | |||||
* | rename ra_ide_api -> ra_ide | Aleksey Kladov | 2019-11-27 | 1 | -0/+215 |