GitXplorerGitXplorer
j

vscode-run-diff

public
0 stars
1 forks
1 issues

Commits

List of commits on branch main.
Unverified
e597a08583644e73d708f8d6a76e4a0fc1da2f50

fix: honor `python.terminal.executeInFileDir`

jjoyceerhl committed 10 months ago
Unverified
a52b9d703d159eb516691c59e34fab36295aaad2

chore: bump dependencies

jjoyceerhl committed 10 months ago
Verified
6f5969534113b62461ce97ceeaca4c0c56cb0163

Reuse existing diff editor when rerunning file

jjoyceerhl committed 2 years ago
Unverified
98804c2a1d8dee9c8e851222fcb12ef95bf76e56

Initial commit

jjoyceerhl committed 3 years ago

README

The README file for this repository.

vscode-run-diff

Features

Use the alt+shift+z keybinding to run your active Python file and diff expected versus actual program output:

Run code and diff expected vs actual program output

Requirements

Ensure that you have python3 on PATH, pointing to a valid Python 3 installation.

Extension Settings

This extension contributes one setting, vscode-run-diff.expectedOutputFilePath: Fully qualified path to a file containing expected program output.

Configure setting to skip prompt on each run

If this setting is omitted, you will be prompted to select the file containing expected program output from the system file picker dialog on each run:

Prompt when setting is not configured

This extension honors the python.terminal.executeInFileDir setting to set the current working directory to the directory containing the file to execute. This is helpful if the file you want to execute references sibling files.