Skip to content

Commit

Permalink
Fix equality check of text documents to resolve inactive region highl…
Browse files Browse the repository at this point in the history
…ights not being displayed (#515)

Also add tests for InactiveRegionsFeature, including a test for the bug being fixed here
  • Loading branch information
kon72 committed Sep 10, 2023
1 parent cee0726 commit bbb984a
Show file tree
Hide file tree
Showing 7 changed files with 535 additions and 44 deletions.
14 changes: 6 additions & 8 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,26 @@
// A launch configuration that compiles extension and opens it inside a new window.
{
"version": "0.1.0",
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/src/**/*.js" ],
"preLaunchTask": "npm"
"outFiles": [ "${workspaceRoot}/out/**/*.js" ],
"preLaunchTask": "npm: compile"
},
{
"name": "Launch Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
"stopOnEntry": false,
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--disable-extensions", "--extensionTestsPath=${workspaceRoot}/out/test" ],
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/test/**/*.js" ],
"preLaunchTask": "npm"
"outFiles": [ "${workspaceRoot}/out/**/*.js" ],
"preLaunchTask": "npm: test-compile"
}
]
}
25 changes: 0 additions & 25 deletions .vscode/tasks.json

This file was deleted.

Loading

0 comments on commit bbb984a

Please sign in to comment.