Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Check for eprintln on CI | Aleksey Kladov | 2020-04-06 | 1 | -0/+5 |
| | |||||
* | Better names for config structs | Aleksey Kladov | 2020-03-31 | 1 | -6/+6 |
| | |||||
* | Reload only the properties that do not affect vfs | Kirill Bulatov | 2020-03-30 | 1 | -0/+5 |
| | |||||
* | Add ProcMacroClient | Edwin Cheng | 2020-03-25 | 1 | -0/+1 |
| | |||||
* | Merge #3540 | bors[bot] | 2020-03-16 | 1 | -1/+2 |
|\ | | | | | | | | | | | | | | | 3540: Swtches to rust SSR query check r=matklad a=mikhail-m1 related to #3186 Co-authored-by: Mikhail Modin <[email protected]> | ||||
| * | Swtches to rust SSR query check | Mikhail Modin | 2020-03-15 | 1 | -1/+2 |
| | | |||||
* | | Make naming more uniform | Aleksey Kladov | 2020-03-12 | 1 | -2/+2 |
| | | |||||
* | | Merge #3543 | bors[bot] | 2020-03-12 | 1 | -3/+3 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3543: Parameter inlay hint separate from variable type inlay? #2876 r=matklad a=slyngbaek Add setting to allow enabling either type inlay hints or parameter inlay hints or both. Group the the max inlay hint length option into the object. - Add a new type for the inlayHint options. - Add tests to ensure the inlays don't happen on the server side Co-authored-by: Steffen Lyngbaek <[email protected]> | ||||
| * | | Address Issues from Github | Steffen Lyngbaek | 2020-03-10 | 1 | -3/+2 |
| | | | | | | | | | | | | | | | | | | | | | - Updated naming of config - Define struct in ra_ide and use remote derive in rust-analyzer/config - Make inlayConfig type more flexible to support more future types - Remove constructor only used in tests | ||||
| * | | Parameter inlay hint separate from variable type inlay? #2876 | Steffen Lyngbaek | 2020-03-10 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Add setting to allow enabling either type inlay hints or parameter inlay hints or both. Group the the max inlay hint length option into the object. - Add a new type for the inlayHint options. - Add tests to ensure the inlays don't happen on the server side | ||||
* | | | Merge #3549 | bors[bot] | 2020-03-11 | 1 | -0/+1 |
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3549: Implement env! macro r=matklad a=edwin0cheng This PR implements `env!` macro by adding following things: 1. Added `additional_outdirs` settings in vscode. (naming to be bikeshed) 2. Added `ExternSourceId` which is a wrapping for SourceRootId but only used in extern sources. It is because `OUT_DIR` is not belonged to any crate and we have to access it behind an `AstDatabase`. 3. This PR does not implement the `OUT_DIR` parsing from `cargo check`. I don't have general design about this, @kiljacken could we reuse some cargo watch code for that ? ~~Block on [#3536]~~ PS: After this PR , we (kind of) completed the `include!(concat!(env!('OUT_DIR'), "foo.rs")` macro call combo. [Exodia Obliterate!](https://www.youtube.com/watch?v=RfqNH3FoGi0) Co-authored-by: Edwin Cheng <[email protected]> | ||||
| * | | Add extern source | Edwin Cheng | 2020-03-11 | 1 | -0/+1 |
| |/ | |||||
* | | Move FeatureFlags | Aleksey Kladov | 2020-03-10 | 1 | -13/+3 |
| | | |||||
* | | Pull completion options up to the rust-analyzer | Aleksey Kladov | 2020-03-10 | 1 | -11/+6 |
| | | |||||
* | | Introduce CompletionOptions | Aleksey Kladov | 2020-03-10 | 1 | -2/+11 |
|/ | |||||
* | Use `Index` for CrateGraph | Aleksey Kladov | 2020-03-09 | 1 | -2/+2 |
| | |||||
* | Less abstract CrateData api | Kirill Bulatov | 2020-03-09 | 1 | -2/+2 |
| | |||||
* | Consider crate declaration names | Kirill Bulatov | 2020-03-08 | 1 | -1/+7 |
| | |||||
* | Prime open files on load | Aleksey Kladov | 2020-03-05 | 1 | -0/+5 |
| | |||||
* | Cleanup API | Aleksey Kladov | 2020-03-04 | 1 | -3/+2 |
| | |||||
* | Remove hover::type_of | Edwin Cheng | 2020-02-28 | 1 | -5/+0 |
| | |||||
* | Better highlightign API | Aleksey Kladov | 2020-02-27 | 1 | -1/+3 |
| | |||||
* | More type safety for highlighting | Aleksey Kladov | 2020-02-26 | 1 | -1/+1 |
| | |||||
* | Refactor primary IDE API | Aleksey Kladov | 2020-02-26 | 1 | -4/+1 |
| | | | | | | | | | | This introduces the new type -- Semantics. Semantics maps SyntaxNodes to various semantic info, such as type, name resolution or macro expansions. To do so, Semantics maintains a HashMap which maps every node it saw to the file from which the node originated. This is enough to get all the necessary hir bits just from syntax. | ||||
* | Rename back to highlight and check event's again highlight range | kjeremy | 2020-02-25 | 1 | -5/+3 |
| | |||||
* | Semantic Ranges | Jeremy Kolb | 2020-02-25 | 1 | -0/+7 |
| | |||||
* | Teach the server about Semantic Tokens proposed LSP | kjeremy | 2020-02-25 | 1 | -1/+1 |
| | |||||
* | Merge #3099 | bors[bot] | 2020-02-17 | 1 | -0/+12 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | 3099: Init implementation of structural search replace r=matklad a=mikhail-m1 next steps: * ignore space and other minor difference * add support to ra_cli * call rust parser to check pattern * documentation original issue #2267 Co-authored-by: Mikhail Modin <[email protected]> | ||||
| * | Init implementation of structural search replace | Mikhail Modin | 2020-02-14 | 1 | -0/+12 |
| | | |||||
* | | If possible, use --exact flag when running tests | Kirill Bulatov | 2020-02-14 | 1 | -1/+1 |
|/ | |||||
* | Move imports locator to ide_db | Aleksey Kladov | 2020-02-06 | 1 | -1/+0 |
| | |||||
* | Cleanup | Aleksey Kladov | 2020-02-06 | 1 | -0/+74 |
| | |||||
* | cleanup imports | Aleksey Kladov | 2020-02-06 | 1 | -21/+17 |
| | |||||
* | Move to a crate | Aleksey Kladov | 2020-02-06 | 1 | -2/+3 |
| | |||||
* | Move change to ide-db | Aleksey Kladov | 2020-02-06 | 1 | -2/+1 |
| | |||||
* | Move Query | Aleksey Kladov | 2020-02-06 | 1 | -40/+1 |
| | |||||
* | Move symbol_index | Aleksey Kladov | 2020-02-06 | 1 | -2/+5 |
| | |||||
* | Move FeatureFlags | Aleksey Kladov | 2020-02-06 | 1 | -2/+1 |
| | |||||
* | Move line_index | Aleksey Kladov | 2020-02-06 | 1 | -4/+4 |
| | |||||
* | Start ide_db | Aleksey Kladov | 2020-02-06 | 1 | -0/+2 |
| | |||||
* | Initial auto import action implementation | Kirill Bulatov | 2020-01-26 | 1 | -0/+1 |
| | |||||
* | Cancel requests during shutdown | Aleksey Kladov | 2020-01-24 | 1 | -0/+3 |
| | |||||
* | Split Declaration out into it's own type | kjeremy | 2020-01-10 | 1 | -1/+3 |
| | |||||
* | Basic DocumentHighlightKind support for assignments | Jeremy Kolb | 2020-01-10 | 1 | -1/+1 |
| | |||||
* | Actually test references | kjeremy | 2020-01-08 | 1 | -1/+1 |
| | |||||
* | Implement proposed CallHierarchy feature | Jeremy Kolb | 2020-01-08 | 1 | -0/+20 |
| | | | | See: https://github.com/microsoft/vscode-languageserver-node/blob/master/protocol/src/protocol.callHierarchy.proposed.ts | ||||
* | Run rustfmt with respect to Cargo.toml edition | Vincent Rouillé | 2019-12-04 | 1 | -0/+5 |
| | |||||
* | rename ra_ide_api -> ra_ide | Aleksey Kladov | 2019-11-27 | 1 | -0/+489 |