Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | 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 | |
| | ||||||
* | Only fold groups of similar comments | Adolfo Ochagavía | 2018-10-13 | 1 | -27/+30 | |
| | ||||||
* | Cleanup fold code and split logic to fold single elements | Adolfo Ochagavía | 2018-10-12 | 1 | -38/+69 | |
| | ||||||
* | Fold multiline comments | Adolfo Ochagavía | 2018-10-12 | 1 | -19/+19 | |
| | ||||||
* | Merge #122 | bors[bot] | 2018-10-11 | 5 | -15/+15 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | 122: Use rustc-hash crate r=matklad a=mominul Replace std's HashMap, HashSet with FxHashMap and FxHashSet. Closes #121 Thanks! Co-authored-by: Muhammad Mominul Huque <[email protected]> | |||||
| * | Replace HashMap, HashSet with FxHashMap and FxHashSet | Muhammad Mominul Huque | 2018-10-11 | 5 | -15/+15 | |
| | | ||||||
* | | Merge #116 | bors[bot] | 2018-10-11 | 1 | -58/+137 | |
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | 116: Collapse comments upon join r=matklad a=aochagavia Todo: - [x] Write tests - [x] Resolve fixmes - [x] Implement `comment_start_length` using the parser I left a bunch of questions as fixmes. Can someone take a look at them? Also, I would love to use the parser to calculate the length of the leading characters in a comment (`//`, `///`, `//!`, `/*`), so any hints are greatly appreciated. Co-authored-by: Adolfo Ochagavía <[email protected]> Co-authored-by: Adolfo Ochagavía <[email protected]> | |||||
| * | Remove smart multiline comment join | Adolfo Ochagavía | 2018-10-11 | 1 | -22/+23 | |
| | | ||||||
| * | Add tests | Adolfo Ochagavía | 2018-10-11 | 1 | -0/+56 | |
| | | ||||||
| * | Remove nesting | Adolfo Ochagavía | 2018-10-11 | 1 | -75/+68 | |
| | | ||||||
| * | Use Comment wrapper | Adolfo Ochagavía | 2018-10-11 | 1 | -36/+16 | |
| | | ||||||
| * | Collapse comments upon join | Adolfo Ochagavía | 2018-10-10 | 1 | -15/+64 | |
| | | ||||||
* | | Report errors only once | Adolfo Ochagavía | 2018-10-10 | 1 | -14/+3 | |
| | | ||||||
* | | Remove error publishing through publishDecorations | Adolfo Ochagavía | 2018-10-10 | 1 | -1/+0 | |
|/ | ||||||
* | Merge #106 | bors[bot] | 2018-10-09 | 2 | -3/+100 | |
|\ | | | | | | | | | | | | | | | 106: Add on-enter handler r=matklad a=matklad Now, typing doc comments is much more pleasant Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | Add on-enter handler | Aleksey Kladov | 2018-10-09 | 2 | -3/+100 | |
| | | | | | | | | Now, typing doc comments is much more pleasant | |||||
* | | Switch to absolute offsets for extend comment word | Aleksey Kladov | 2018-10-09 | 1 | -4/+13 | |
|/ | ||||||
* | Attach comments smartly | Aleksey Kladov | 2018-10-08 | 1 | -0/+16 | |
| | ||||||
* | Simplify event processing | Aleksey Kladov | 2018-10-08 | 1 | -4/+5 | |
| | ||||||
* | tfn snippet | Aleksey Kladov | 2018-10-08 | 1 | -0/+32 | |
| | ||||||
* | Remove functional noop | Jeremy A. Kolb | 2018-10-06 | 1 | -8/+0 | |
| | ||||||
* | Resolve local names first | Jeremy A. Kolb | 2018-10-06 | 2 | -11/+10 | |
| | ||||||
* | WIP: This doesn't currently work but I also don't think it's the right ↵ | Jeremy A. Kolb | 2018-10-05 | 2 | -1/+9 | |
| | | | | abstraction | |||||
* | Add resolve_local_name to resolve names in a function scope | Jeremy A. Kolb | 2018-10-05 | 1 | -2/+79 | |
| | ||||||
* | Pull casts out of TextUnit | Jeremy A. Kolb | 2018-10-04 | 1 | -4/+4 | |
| | ||||||
* | Simplify extend_single_word_in_comment | Jeremy A. Kolb | 2018-10-04 | 1 | -15/+11 | |
| | ||||||
* | Extend comments by single word first | Jeremy A. Kolb | 2018-10-03 | 1 | -4/+36 | |
| | | | | Fixes #88 | |||||
* | Make siblings an inherent method | Aleksey Kladov | 2018-10-02 | 3 | -17/+16 | |
| | ||||||
* | make ancestors and descendants inherent | Aleksey Kladov | 2018-10-02 | 8 | -29/+24 | |
| | ||||||
* | Unit Tests | Jeremy A. Kolb | 2018-09-24 | 1 | -0/+56 | |
| | ||||||
* | Split folding ranges into editor and lsp parts | Jeremy A. Kolb | 2018-09-24 | 2 | -0/+88 | |
| | ||||||
* | prefer lifetimes in extend selection | Aleksey Kladov | 2018-09-19 | 1 | -1/+13 | |
| | ||||||
* | eprintln | Aleksey Kladov | 2018-09-16 | 1 | -7/+37 | |
| | ||||||
* | rename all things | Aleksey Kladov | 2018-09-16 | 13 | -0/+2258 | |