Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | move thread worker to a separate crate | Aleksey Kladov | 2018-12-18 | 7 | -98/+14 |
| | |||||
* | By default, log only to stderr, and not to disk. | Andrew Chin | 2018-12-17 | 1 | -5/+5 |
| | | | | | | | This fixes a common problem when running under VS Code, the user doesn't have permissions to create a `log` directory in the CWD. The old behavior can be re-enabled by setting RA_INTERNAL_MODE=1 | ||||
* | rename Edit to TextEdit and AtomEdit to AtomTextEdit | Bernardo | 2018-12-11 | 1 | -11/+11 |
| | |||||
* | extract AtomEdit and Edit into new ra_text_edit crate | Bernardo | 2018-12-10 | 3 | -2/+5 |
| | |||||
* | Answer canceled requests | Aleksey Kladov | 2018-12-09 | 1 | -1/+8 |
| | |||||
* | thread info about dep names | Aleksey Kladov | 2018-12-09 | 2 | -6/+17 |
| | |||||
* | propagate deps to CrateGraph | Aleksey Kladov | 2018-12-09 | 2 | -14/+40 |
| | |||||
* | track deps in project model | Aleksey Kladov | 2018-12-09 | 1 | -0/+10 |
| | |||||
* | switch threadpool back from rayon to threadpool | Aleksey Kladov | 2018-12-09 | 2 | -9/+7 |
| | | | | | rayon does not replenish the pool when the thread panics, but we must be reselient to bugs. | ||||
* | Refactor symbol resolve API | Aleksey Kladov | 2018-12-08 | 1 | -7/+8 |
| | | | | | Introduce ReferenceResolution to avoid nesting to many non-nominal types. | ||||
* | grand module rename | Aleksey Kladov | 2018-12-08 | 1 | -0/+0 |
| | |||||
* | reformat | Aleksey Kladov | 2018-12-08 | 1 | -1/+0 |
| | |||||
* | Add a better text for hover and stop duplicating work done in ↵ | DJMcNab | 2018-12-08 | 1 | -21/+22 |
| | | | | approximatelly_resolve_symbol | ||||
* | Fix the range of a hover request to be more in line with prior art | DJMcNab | 2018-12-08 | 1 | -1/+8 |
| | |||||
* | Add test for code actions | Florian Diebold | 2018-12-06 | 1 | -1/+60 |
| | |||||
* | Use json comparison code from cargo for heavy tests | Florian Diebold | 2018-12-06 | 2 | -17/+20 |
| | |||||
* | modernize more | Aleksey Kladov | 2018-12-06 | 10 | -56/+42 |
| | |||||
* | drop extern crates | Aleksey Kladov | 2018-12-06 | 3 | -26/+0 |
| | |||||
* | Fix diagnostic fixes showing up everywhere | Florian Diebold | 2018-12-02 | 1 | -2/+2 |
| | | | | | The LSP code action request always returned the fixes for all diagnostics anywhere in the file, because of a shadowed variable. | ||||
* | Put derive back | Aleksey Kladov | 2018-12-02 | 1 | -24/+1 |
| | | | | It is used in this file | ||||
* | Put map back | Jeremy A. Kolb | 2018-11-30 | 1 | -1/+1 |
| | |||||
* | Clippy lints | Jeremy A. Kolb | 2018-11-29 | 4 | -16/+13 |
| | |||||
* | move db basics to ra_db | Aleksey Kladov | 2018-11-28 | 1 | -1/+1 |
| | | | | This should allow to move hir to a separate crate | ||||
* | hack around nested libraries | Aleksey Kladov | 2018-11-26 | 2 | -3/+33 |
| | |||||
* | Use `:` as a trigger character for completion | Aleksey Kladov | 2018-11-21 | 2 | -2/+24 |
| | | | | | | | | | Note that VSCode asks for completion after *first* `:` as well: use crate: we use hacks to protect against that, and to give completions only after the second `:`. | ||||
* | Rename col to col_utf16 | Adolfo Ochagavía | 2018-11-16 | 1 | -6/+11 |
| | |||||
* | Support UTF-16 chars in LineIndex | Adolfo Ochagavía | 2018-11-16 | 1 | -2/+0 |
| | |||||
* | Fix the test | Aleksey Kladov | 2018-11-08 | 1 | -1/+1 |
| | |||||
* | workspace-symbols function for Emacs | Aleksey Kladov | 2018-11-08 | 2 | -11/+34 |
| | |||||
* | eglot worksapce symbol | Aleksey Kladov | 2018-11-08 | 1 | -1/+24 |
| | |||||
* | Rename File -> SourceFileNode | Aleksey Kladov | 2018-11-07 | 1 | -2/+2 |
| | |||||
* | Cargo update | Jeremy A. Kolb | 2018-11-07 | 1 | -1/+1 |
| | |||||
* | Rustfmt to pass CI | Jeremy A. Kolb | 2018-11-07 | 1 | -2/+2 |
| | |||||
* | Remove unused variable | Jeremy A. Kolb | 2018-11-07 | 1 | -1/+0 |
| | |||||
* | Show documentation for hover requests | Jeremy A. Kolb | 2018-11-07 | 3 | -3/+29 |
| | |||||
* | Use closing paren as a trigger character | Jeremy A. Kolb | 2018-11-05 | 1 | -1/+1 |
| | | | | | This seems counter-intuitive based on the concept of "trigger character" but it provides a better function signature experience. | ||||
* | Use FilePosition everywhere | Aleksey Kladov | 2018-11-05 | 2 | -41/+48 |
| | |||||
* | don't send backtraces for canceled requests | Aleksey Kladov | 2018-11-05 | 1 | -5/+15 |
| | |||||
* | Fully add inline modules to module tree | Aleksey Kladov | 2018-11-05 | 2 | -4/+6 |
| | |||||
* | Use Default everywhere | Aleksey Kladov | 2018-11-04 | 3 | -14/+3 |
| | |||||
* | Reformat all | Aleksey Kladov | 2018-10-31 | 8 | -74/+74 |
| | |||||
* | Useful comments from function signatures | Jeremy A. Kolb | 2018-10-31 | 1 | -2/+11 |
| | |||||
* | extract fixture parsing | Aleksey Kladov | 2018-10-31 | 2 | -22/+8 |
| | |||||
* | Encapsulate CrateGraph a bit | Aleksey Kladov | 2018-10-25 | 1 | -6/+3 |
| | |||||
* | use correct file when resolving callables | Aleksey Kladov | 2018-10-25 | 1 | -2/+11 |
| | |||||
* | Improve logging | Aleksey Kladov | 2018-10-25 | 1 | -4/+16 |
| | |||||
* | Store all the data in the Salsa Database | Aleksey Kladov | 2018-10-25 | 2 | -27/+56 |
| | |||||
* | Fix the test | Aleksey Kladov | 2018-10-25 | 1 | -17/+41 |
| | |||||
* | More informative lable for check runnable | Aleksey Kladov | 2018-10-25 | 1 | -3/+10 |
| | |||||
* | specify package when running cargo check | Aleksey Kladov | 2018-10-25 | 1 | -46/+65 |
| |