aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_vfs/src
Commit message (Collapse)AuthorAgeFilesLines
* remove local-vfsAleksey Kladov2019-02-183-690/+0
|
* better commentsAleksey Kladov2019-02-181-2/+8
|
* drop dependency on thread_workerAleksey Kladov2019-02-182-64/+99
|
* hide TaskResult from the public APIAleksey Kladov2019-02-182-15/+28
|
* move public API to top of the fileAleksey Kladov2019-02-181-8/+8
|
* remove depedency on ra_arenaAleksey Kladov2019-02-181-17/+23
|
* remove arena from RootsAleksey Kladov2019-02-182-16/+18
| | | | | we want to move ra_vfs to a new repo, so having fewer deps is useful. Arena is a thin layer of sugar on top of Vec anyway.
* remove useless ArcAleksey Kladov2019-02-181-5/+2
|
* marginally better namesAleksey Kladov2019-02-171-19/+24
|
* remove overlay removes overlayAleksey Kladov2019-02-171-4/+4
|
* simplify overlay handlingAleksey Kladov2019-02-171-16/+8
|
* simplifyAleksey Kladov2019-02-171-39/+33
|
* rename methodAleksey Kladov2019-02-171-1/+1
|
* remove duplicated methodAleksey Kladov2019-02-171-7/+0
|
* hide root configAleksey Kladov2019-02-173-81/+89
|
* move roots to a moduleAleksey Kladov2019-02-172-98/+112
|
* simplifyAleksey Kladov2019-02-142-86/+71
|
* automatically wait for worker threadsAleksey Kladov2019-02-142-62/+50
| | | | closes #817
* Merge #818bors[bot]2019-02-131-2/+15
|\ | | | | | | | | | | | | | | | | | | 818: In `RootConfig::contains`, check against canonicalized version of root path r=matklad a=pnkfelix In `RootConfig::contains`, check against canonicalized version of root path since OS may hand us data that uses the canonical form rather than the root as specified by the user. This is a step towards a resolution of issue #734 but does not completely fix the problem there. Co-authored-by: Felix S. Klock II <[email protected]>
| * rustfmtFelix S. Klock II2019-02-131-3/+3
| |
| * In `RootConfig::contains`, check against canonicalized version of rootFelix S. Klock II2019-02-131-2/+15
| | | | | | | | | | path since OS may hand us data that uses that rather than the root as specified by the user.
* | Fix some typosPascal Hertleif2019-02-122-8/+10
|/
* don't distinguish Create and Write events in VFSAleksey Kladov2019-02-122-38/+42
|
* Clean up a bitFlorian Diebold2019-02-101-7/+0
|
* Implement BatchDatabase constructionFlorian Diebold2019-02-101-0/+12
|
* reformat the worldAleksey Kladov2019-02-082-115/+28
|
* remove watcher ctxAleksey Kladov2019-01-261-65/+77
|
* remove mutexesAleksey Kladov2019-01-261-14/+10
|
* handle all the reads on the "main" watcher threadAleksey Kladov2019-01-261-48/+75
|
* cleanup: add result aliasAleksey Kladov2019-01-261-9/+7
|
* consolidate error handlingAleksey Kladov2019-01-261-14/+17
|
* refactor-fvsAleksey Kladov2019-01-263-333/+242
|
* dont overwrite memfiesAleksey Kladov2019-01-261-1/+3
|
* use entry file_type, improve testBernardo2019-01-262-4/+5
|
* use `Roots` in watcherBernardo2019-01-263-321/+262
|
* extract `Roots` structBernardo2019-01-261-21/+52
|
* review fixesBernardo2019-01-262-21/+9
|
* use released `notifiy` version, add TODO commentBernardo2019-01-261-1/+1
|
* better test, avoid duplicated eventsBernardo2019-01-262-11/+18
|
* hardcode ".git" and "node_modules" alsoBernardo2019-01-262-2/+10
|
* simplify and optimize `RootFilter`by determining if is contained firstBernardo2019-01-261-24/+11
|
* fix recursive watchBernardo2019-01-261-3/+8
|
* avoid boxingBernardo2019-01-263-34/+44
|
* move watcher to io moduleBernardo2019-01-263-31/+29
|
* do not emit create for directory againBernardo2019-01-262-5/+6
|
* refactor, put watcher with `io::Worker`Bernardo2019-01-263-138/+187
| | | | | use `RootFilter` to filter recursive watches untested
* ignore check event dir for ignore, cleanup testsBernardo2019-01-261-14/+47
|
* actually drop watcher, use parking_lot::MutexBernardo2019-01-261-9/+17
|
* handle recursive watching ourselvesBernardo2019-01-262-16/+45
|
* add missing Task::HandleChangeBernardo2019-01-263-10/+16
|