microsoft / codetour

VS Code extension that allows you to record and play back guided tours of codebases, directly within the editor.
https://aka.ms/codetour
MIT License
4.34k stars 109 forks source link

Feature Request: Dynamic tour #227

Open ghost opened 2 years ago

ghost commented 2 years ago

Is it possible to add steps that bind with changes? For example, creating a step # Replace console.log() with console.table(), and bind the step with the js file showing diffs like git.

- console.log(data);
+ console.table(data);

It will be so great if the source file changes along with the tour steps. Sometimes changes explain better.