Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Support unions in symbol search | Lukas Wirth | 2021-01-24 | 1 | -2/+1 |
| | |||||
* | More useful fn detail in completion | Aleksey Kladov | 2021-01-22 | 1 | -6/+6 |
| | | | | | | | | | | | | | Detail should be rendered as shtort one line, just dumping fn header there is not useful, despite the fact that TS does this. The fact that this is a function should be indicated by the icon, the same goes for pub/const/async etc qualitfiers name is already present in the lable (and arg list should be a part of that, as in idea) But the return type is the small genuinerlly useful bit of info we can show here | ||||
* | Update completions test output | Lukas Wirth | 2021-01-20 | 1 | -17/+47 |
| | |||||
* | Partially unify SymbolKind and CompletionItemKind | Lukas Wirth | 2021-01-20 | 1 | -21/+26 |
| | |||||
* | Add LifetimeParam and ConstParam to CompletionItemKind | Lukas Wirth | 2021-01-19 | 1 | -1/+5 |
| | |||||
* | Show deprecated completions for deprecated traits | Kirill Bulatov | 2021-01-18 | 1 | -10/+37 |
| | |||||
* | Consider rustc_deprecated attr when checking for deprecation | Kirill Bulatov | 2021-01-18 | 1 | -8/+9 |
| | |||||
* | Add flyimport completion for trait assoc items | Kirill Bulatov | 2021-01-16 | 1 | -11/+11 |
| | |||||
* | Use specific kind for the flyimport completions | Kirill Bulatov | 2021-01-16 | 1 | -5/+10 |
| | |||||
* | Change <|> to $0 - Rebase | Kevaundray Wedderburn | 2021-01-07 | 1 | -23/+23 |
| | |||||
* | Align config's API with usage | Aleksey Kladov | 2021-01-06 | 1 | -6/+6 |
| | | | | The config now is mostly immutable, optimize for that. | ||||
* | Make the result of Const, FunctionRender and TypeAliasRender constructors ↵ | Nick Spain | 2021-01-02 | 1 | -2/+1 |
| | | | | | | optional They use source() which now returns an Option so they need to too. | ||||
* | Reduce some more code duplication | Lukas Wirth | 2020-12-22 | 1 | -0/+6 |
| | |||||
* | Add completions for patterns | Lukas Wirth | 2020-12-20 | 1 | -0/+1 |
| | |||||
* | Align code_model name with ungrammar | Aleksey Kladov | 2020-12-20 | 1 | -5/+4 |
| | |||||
* | Disable the completion for no corresponding client resolve capabilities | Kirill Bulatov | 2020-12-07 | 1 | -27/+2 |
| | |||||
* | Use stateless completion resolve | Kirill Bulatov | 2020-12-07 | 1 | -8/+4 |
| | |||||
* | Simplify import edit calculation | Kirill Bulatov | 2020-12-07 | 1 | -5/+8 |
| | |||||
* | Remove redundant code | Kirill Bulatov | 2020-12-07 | 1 | -8/+2 |
| | |||||
* | Refactor the code | Kirill Bulatov | 2020-12-07 | 1 | -2/+8 |
| | |||||
* | Add eager resolve capability | Kirill Bulatov | 2020-12-07 | 1 | -2/+2 |
| | |||||
* | Move the helpers into ide_db | Kirill Bulatov | 2020-11-28 | 1 | -1/+1 |
| | |||||
* | Group import data in a struct | Kirill Bulatov | 2020-11-27 | 1 | -11/+12 |
| | |||||
* | Extract the import code into the shared module | Kirill Bulatov | 2020-11-27 | 1 | -1/+1 |
| | |||||
* | Improve autoimports on completion speed | Kirill Bulatov | 2020-11-24 | 1 | -0/+1 |
| | | | | | * Ignore modules eaferly * Do less completion string rendering | ||||
* | Avoid turning completion objects into builders | Kirill Bulatov | 2020-11-16 | 1 | -6/+29 |
| | |||||
* | Fix the other test | Kirill Bulatov | 2020-11-16 | 1 | -0/+22 |
| | |||||
* | Remove intra-crate facade from completions | Igor Aleksanov | 2020-11-03 | 1 | -9/+7 |
| | |||||
* | Get rid of do-er antipattern | Igor Aleksanov | 2020-11-03 | 1 | -13/+37 |
| | |||||
* | Provide only explicit constructor for RenderContext | Igor Aleksanov | 2020-11-03 | 1 | -7/+1 |
| | |||||
* | Add doc-comments to the new files | Igor Aleksanov | 2020-11-03 | 1 | -0/+2 |
| | |||||
* | Make structures order more logical in render.rs | Igor Aleksanov | 2020-11-03 | 1 | -5/+5 |
| | |||||
* | Move rendering tests to the render module | Igor Aleksanov | 2020-11-03 | 1 | -8/+781 |
| | |||||
* | Add TypeAliasRender | Igor Aleksanov | 2020-11-03 | 1 | -1/+2 |
| | |||||
* | Add ConstRender | Igor Aleksanov | 2020-11-03 | 1 | -2/+8 |
| | |||||
* | Introduce render module | Igor Aleksanov | 2020-11-03 | 1 | -0/+50 |