mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-03 23:06:49 +01:00
* Optimize markdown workspace scanning - Adds cache for markdown file - Avoid reading non-markdown files from disk (when we expect markdown files) - Use `range.contains(pos)` instead of `range.intersects(range)` * Don't remove cached document on change We only want to invalidate the cached document when it is first opened (since the cached version is the one from disk). Otherwise we can use the live version of the doc