You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the user applies changes to a file, Void will highlight all of the additions in green. Here's an example:
green.diffs.mp4
However, Void should also display the parts of the file that were deleted. Here's a mock-up of what we want this to look like for the above example. The diff should include both the insertions (green) and deletions (red):
Task: Show diffs as above. This requires creating a new provider for diffs diffProvider, and using it in Void's VS Code extension.
Constraints:
When a diff is displayed, it should not cause a syntax error in the file.
When the user selects everything in the file (ctrl + a), the deletion parts of diffs should not be included in their selection.
The text was updated successfully, but these errors were encountered:
When the user applies changes to a file, Void will highlight all of the additions in green. Here's an example:
green.diffs.mp4
However, Void should also display the parts of the file that were deleted. Here's a mock-up of what we want this to look like for the above example. The diff should include both the insertions (green) and deletions (red):
Task: Show diffs as above. This requires creating a new provider for diffs
diffProvider
, and using it in Void's VS Code extension.Constraints:
ctrl + a
), the deletion parts of diffs should not be included in their selection.The text was updated successfully, but these errors were encountered: