Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fold curly blocks | Aleksey Kladov | 2018-12-20 | 1 | -15/+25 |
| | |||||
* | generalize folding tests | Aleksey Kladov | 2018-12-20 | 1 | -21/+21 |
| | | | | By using xml-like tags, we will be able to test nested foldings. | ||||
* | rename Edit to TextEdit and AtomEdit to AtomTextEdit | Bernardo | 2018-12-11 | 3 | -16/+21 |
| | |||||
* | extract AtomEdit and Edit into new ra_text_edit crate | Bernardo | 2018-12-10 | 4 | -87/+4 |
| | |||||
* | use \b as word boundary | Bernardo | 2018-12-09 | 1 | -2/+30 |
| | |||||
* | Implement and test format hook | DJMcNab | 2018-12-09 | 1 | -1/+1 |
| | |||||
* | find next whitespace or begining or end | Bernardo | 2018-12-08 | 1 | -3/+3 |
| | |||||
* | Merge #264 | bors[bot] | 2018-12-08 | 1 | -1/+20 |
|\ | | | | | | | | | | | | | | | 264: check for empty range when extending in comment r=matklad a=vemoo fix for #140 Co-authored-by: Bernardo <[email protected]> | ||||
| * | check for empty range when extending in comment | Bernardo | 2018-12-08 | 1 | -1/+20 |
| | | |||||
* | | Add a better text for hover and stop duplicating work done in ↵ | DJMcNab | 2018-12-08 | 1 | -0/+55 |
|/ | | | | approximatelly_resolve_symbol | ||||
* | modernize even more | Aleksey Kladov | 2018-12-06 | 3 | -13/+5 |
| | |||||
* | Merge #252 | bors[bot] | 2018-12-02 | 2 | -7/+44 |
|\ | | | | | | | | | | | | | | | | | | | | | 252: Improve 'introduce variable' r=matklad a=flodiebold - make it possible to extract a prefix of an expression statement (e.g. `<|>foo.bar()<|>.baz()`) - don't turn the last expression in a block into a let statement - also fix a few typos Co-authored-by: Florian Diebold <[email protected]> | ||||
| * | Improve 'introduce variable' | Florian Diebold | 2018-12-02 | 2 | -7/+44 |
| | | | | | | | | | | | | - make it possible to extract a prefix of an expression statement (e.g. <|>foo.bar()<|>.baz()) - don't turn the last expression in a block into a let statement | ||||
* | | Add `derive` after doc comments | Aleksey Kladov | 2018-12-02 | 1 | -5/+36 |
| | | |||||
* | | Complete paths after :: | Aleksey Kladov | 2018-11-21 | 1 | -6/+1 |
| | | |||||
* | | cargo format | Adolfo Ochagavía | 2018-11-16 | 1 | -14/+98 |
| | | |||||
* | | Rename col to col_utf16 | Adolfo Ochagavía | 2018-11-16 | 1 | -17/+17 |
| | | |||||
* | | Support UTF-16 chars in LineIndex | Adolfo Ochagavía | 2018-11-16 | 1 | -106/+197 |
|/ | |||||
* | Rename File -> SourceFileNode | Aleksey Kladov | 2018-11-07 | 7 | -38/+51 |
| | |||||
* | Rustfmt to pass CI | Jeremy A. Kolb | 2018-11-07 | 1 | -3/+9 |
| | |||||
* | Show documentation for hover requests | Jeremy A. Kolb | 2018-11-07 | 1 | -1/+25 |
| | |||||
* | Merge #188 | bors[bot] | 2018-11-05 | 1 | -2/+10 |
|\ | | | | | | | | | | | | | | | | | 188: Introduce `SyntaxErrorKind` and `TextRange` to `SyntaxError` r=matklad a=aochagavia Co-authored-by: Adolfo Ochagavía <[email protected]> Co-authored-by: Adolfo Ochagavía <[email protected]> | ||||
| * | Introduce Location and make SyntaxError fields private | Adolfo Ochagavía | 2018-11-05 | 1 | -2/+10 |
| | | |||||
| * | Introduce SyntaxErrorKind and TextRange in SyntaxError | Adolfo Ochagavía | 2018-11-04 | 1 | -2/+2 |
| | | |||||
* | | Introduce var works with tail exprs | Aleksey Kladov | 2018-11-05 | 1 | -11/+45 |
|/ | |||||
* | Remove DOC_COMMENT | Jeremy A. Kolb | 2018-10-31 | 1 | -1/+1 |
| | | | | Closes #166 | ||||
* | Reformat all | Aleksey Kladov | 2018-10-31 | 3 | -11/+13 |
| | |||||
* | remove old completion | Aleksey Kladov | 2018-10-31 | 5 | -1100/+1 |
| | |||||
* | move resolve local name | Aleksey Kladov | 2018-10-31 | 3 | -83/+2 |
| | |||||
* | Move FnDescriptors to analyzer | Aleksey Kladov | 2018-10-31 | 1 | -1/+2 |
| | |||||
* | Add ModuleScope as a query | Aleksey Kladov | 2018-10-30 | 2 | -0/+8 |
| | | | | | | | This is a first step towards queryifing completion and resolve. Some code currently duplicates ra_editor: the plan is to move all completion from ra_editor, but it'll take more than one commit. | ||||
* | switch to TextRange::subrange | Aleksey Kladov | 2018-10-30 | 1 | -2/+1 |
| | |||||
* | Complete crate:: paths | Aleksey Kladov | 2018-10-24 | 2 | -14/+18 |
| | |||||
* | Simplify | Aleksey Kladov | 2018-10-24 | 1 | -3/+1 |
| | |||||
* | complete pub(crate) | Aleksey Kladov | 2018-10-23 | 1 | -2/+8 |
| | |||||
* | Restore folding import groups | Adolfo Ochagavía | 2018-10-23 | 1 | -6/+97 |
| | |||||
* | Merge #138 | bors[bot] | 2018-10-22 | 6 | -18/+18 |
|\ | | | | | | | | | | | | | | | | | | | | | | | 138: Fix some clippy lints r=matklad a=alanhdu I went ahead and fixed all the clippy lints (there were a couple I thought would be better unfixed and added `cfg` statements to allow them) and also re-enabled clippy and rustfmt in CI. They were disabled with `no time to explain, disable clippy checks`, so hopefully this won't go against whatever the reason at the time was :laughing:. One question about the CI though: right now, it's an allowed failure that runs against the latest nightly each time. Would it be better to pin it to a specific nightly (or use the `beta` versions) to lower the churn? Co-authored-by: Alan Du <[email protected]> | ||||
| * | Rename new to new_item (to match new_impl) | Alan Du | 2018-10-22 | 1 | -9/+9 |
| | | |||||
| * | Revert "clippy: Fix new_ret_no_self" | Alan Du | 2018-10-20 | 2 | -11/+11 |
| | | | | | | | | This reverts commit 2ae9dfa812ccf18867373f77a106161378a6d91d. | ||||
| * | Fix function calls | Alan Du | 2018-10-18 | 1 | -1/+1 |
| | | |||||
| * | clippy: Fix new_ret_no_self | Alan Du | 2018-10-18 | 2 | -11/+11 |
| | | |||||
| * | clippy: Use if lets and remove redundant returns | Alan Du | 2018-10-18 | 3 | -7/+7 |
| | | |||||
| * | Clippy lint: single-character string constant | Alan Du | 2018-10-18 | 1 | -1/+1 |
| | | |||||
* | | Merge #143 | bors[bot] | 2018-10-20 | 1 | -1/+0 |
|\ \ | |/ |/| | | | | | | | | | | | | | | | 143: Implement Find All References and Rename for local variables r=matklad a=kjeremy Expose `find_all_refs` in `Analysis`. This currently only works for local variables. Use this in the LSP to implement find all references and rename. Co-authored-by: Jeremy A. Kolb <[email protected]> | ||||
| * | Implement Find All References for local variables | Jeremy A. Kolb | 2018-10-18 | 1 | -1/+0 |
| | | |||||
* | | Update rowan | Aleksey Kladov | 2018-10-17 | 1 | -3/+3 |
|/ | |||||
* | Cargo Format | Jeremy A. Kolb | 2018-10-16 | 13 | -395/+612 |
| | | | | Run `cargo fmt` and ignore generated files | ||||
* | start salsa migration | Aleksey Kladov | 2018-10-15 | 2 | -2/+2 |
| | |||||
* | switch editor to 2018 | Aleksey Kladov | 2018-10-15 | 10 | -13/+14 |
| | |||||
* | Improve tests | Adolfo Ochagavía | 2018-10-13 | 1 | -22/+33 |
| |