Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Dont slow down everyone else's testing (especially the CI's Linux) just for ↵ | Felix S. Klock II | 2019-02-15 | 1 | -1/+1 |
| | | | | | | | | OS X. Namely, the allowance for up to 7 events, and thus requiring anyone with fewer than 7 events to wait for the 3 second timeout, is only relevant to fsevents (i.e. Mac OS X) | ||||
* | Generalize `tests/vfs.rs` processing to address wildly-varying ↵ | Felix S. Klock II | 2019-02-15 | 1 | -9/+67 |
| | | | | time-dependent behavior on Mac OS X. | ||||
* | Merge #830 | bors[bot] | 2019-02-14 | 1 | -1/+3 |
|\ | | | | | | | | | | | | | | | | | | | | | 830: Fix test_vfs_works failing on Windows due to extra Write events r=pnkfelix a=vipentti On Windows `notify` generates extra `Write` events for folders, which caused `process_tasks` to not handle all tasks generated on Windows. This fixes #827 Co-authored-by: Ville Penttinen <[email protected]> | ||||
| * | Fix test_vfs_works failing on Windows due to extra Write events | Ville Penttinen | 2019-02-14 | 1 | -1/+3 |
| | | | | | | | | | | | | | | On Windows `notify` generates extra `Write` events for folders, which caused `process_tasks` to not handle all tasks generated on Windows. This fixes #827 | ||||
* | | simplify | Aleksey Kladov | 2019-02-14 | 2 | -86/+71 |
| | | |||||
* | | automatically wait for worker threads | Aleksey Kladov | 2019-02-14 | 3 | -63/+50 |
|/ | | | | closes #817 | ||||
* | Merge #818 | bors[bot] | 2019-02-13 | 1 | -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]> | ||||
| * | rustfmt | Felix S. Klock II | 2019-02-13 | 1 | -3/+3 |
| | | |||||
| * | In `RootConfig::contains`, check against canonicalized version of root | Felix S. Klock II | 2019-02-13 | 1 | -2/+15 |
| | | | | | | | | | | path since OS may hand us data that uses that rather than the root as specified by the user. | ||||
* | | Fix some typos | Pascal Hertleif | 2019-02-12 | 2 | -8/+10 |
|/ | |||||
* | don't distinguish Create and Write events in VFS | Aleksey Kladov | 2019-02-12 | 2 | -38/+42 |
| | |||||
* | Fix typo in Cargo.toml authors | Ville Penttinen | 2019-02-11 | 1 | -1/+1 |
| | | | | Fixes typo introduced in #782 | ||||
* | Update authors field in Cargo.tomls to "rust-analyzer developers" | Ville Penttinen | 2019-02-11 | 1 | -1/+1 |
| | | | | This closes #777 | ||||
* | Clean up a bit | Florian Diebold | 2019-02-10 | 1 | -7/+0 |
| | |||||
* | Implement BatchDatabase construction | Florian Diebold | 2019-02-10 | 1 | -0/+12 |
| | |||||
* | update notify with fix for hight cpu usage | Bernardo | 2019-02-09 | 1 | -1/+1 |
| | |||||
* | reformat the world | Aleksey Kladov | 2019-02-08 | 3 | -160/+45 |
| | |||||
* | remove watcher ctx | Aleksey Kladov | 2019-01-26 | 1 | -65/+77 |
| | |||||
* | remove mutexes | Aleksey Kladov | 2019-01-26 | 1 | -14/+10 |
| | |||||
* | handle all the reads on the "main" watcher thread | Aleksey Kladov | 2019-01-26 | 1 | -48/+75 |
| | |||||
* | cleanup: add result alias | Aleksey Kladov | 2019-01-26 | 1 | -9/+7 |
| | |||||
* | consolidate error handling | Aleksey Kladov | 2019-01-26 | 1 | -14/+17 |
| | |||||
* | refactor-fvs | Aleksey Kladov | 2019-01-26 | 3 | -333/+242 |
| | |||||
* | dont overwrite memfies | Aleksey Kladov | 2019-01-26 | 2 | -1/+15 |
| | |||||
* | use entry file_type, improve test | Bernardo | 2019-01-26 | 3 | -11/+16 |
| | |||||
* | use `Roots` in watcher | Bernardo | 2019-01-26 | 4 | -330/+274 |
| | |||||
* | extract `Roots` struct | Bernardo | 2019-01-26 | 1 | -21/+52 |
| | |||||
* | review fixes | Bernardo | 2019-01-26 | 3 | -22/+10 |
| | |||||
* | use released `notifiy` version, add TODO comment | Bernardo | 2019-01-26 | 2 | -3/+2 |
| | |||||
* | better test, avoid duplicated events | Bernardo | 2019-01-26 | 3 | -22/+30 |
| | |||||
* | hardcode ".git" and "node_modules" also | Bernardo | 2019-01-26 | 2 | -2/+10 |
| | |||||
* | simplify and optimize `RootFilter`by determining if is contained first | Bernardo | 2019-01-26 | 1 | -24/+11 |
| | |||||
* | fix recursive watch | Bernardo | 2019-01-26 | 1 | -3/+8 |
| | |||||
* | avoid boxing | Bernardo | 2019-01-26 | 3 | -34/+44 |
| | |||||
* | move watcher to io module | Bernardo | 2019-01-26 | 3 | -31/+29 |
| | |||||
* | do not emit create for directory again | Bernardo | 2019-01-26 | 3 | -8/+6 |
| | |||||
* | refactor, put watcher with `io::Worker` | Bernardo | 2019-01-26 | 4 | -139/+187 |
| | | | | | use `RootFilter` to filter recursive watches untested | ||||
* | ignore check event dir for ignore, cleanup tests | Bernardo | 2019-01-26 | 2 | -63/+129 |
| | |||||
* | actually drop watcher, use parking_lot::Mutex | Bernardo | 2019-01-26 | 2 | -9/+18 |
| | |||||
* | handle recursive watching ourselves | Bernardo | 2019-01-26 | 3 | -16/+46 |
| | |||||
* | add missing Task::HandleChange | Bernardo | 2019-01-26 | 4 | -21/+28 |
| | |||||
* | better error handling | Bernardo | 2019-01-26 | 1 | -4/+16 |
| | |||||
* | use notify with fix | Bernardo | 2019-01-26 | 3 | -12/+10 |
| | |||||
* | reference `notify` issue | Bernardo | 2019-01-26 | 2 | -2/+3 |
| | |||||
* | handle watched events filtering in `Vfs`add `is_overlayed`load changed files ↵ | Bernardo | 2019-01-26 | 4 | -142/+217 |
| | | | | contents in `io` | ||||
* | refator to move all io to io module | Bernardo | 2019-01-26 | 4 | -88/+134 |
| | | | | | use same channel for scanner and watcher some implementations pending | ||||
* | complete test | Bernardo | 2019-01-26 | 4 | -52/+94 |
| | |||||
* | initial Watcher impl | Bernardo | 2019-01-26 | 3 | -14/+143 |
| | |||||
* | extract area to a crate | Aleksey Kladov | 2019-01-04 | 3 | -80/+8 |
| | |||||
* | extend selection inside a string literal should select a word first | gfreezy | 2019-01-02 | 1 | -1/+1 |
| |