Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Basic Circuit Editor for .qsc files #2187

Closed
wants to merge 83 commits into from
Closed

Conversation

ScottCarda-MS
Copy link
Contributor

@ScottCarda-MS ScottCarda-MS commented Feb 18, 2025

This PR adds a custom editor view in the VS Code extension for files with the .qsc extension. The editor makes use of the same library code that is used to draw circuit diagrams elsewhere in the VS Code extension. The editor provides basic drag-and-drop editing of circuits with a simple gate set, including the ability to have controlled gates, and gates with arguments.
The circuit files are included in Q# projects and can be called into from Q# as if they were Q# operations. This is done by generating Q# files for circuit files when compiling.

@ScottCarda-MS ScottCarda-MS changed the title Basic Circuit Editor for .qviz files Basic Circuit Editor for .qsc files Mar 5, 2025
@@ -52,15 +71,17 @@ export interface Operation {
/** Formatted gate arguments to be displayed. */
displayArgs?: string;
/** Nested operations within this operation. */
children?: Operation[];
children?: Operation[][];
/** Number of columns to span. */
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider saying in the comment what the default is if this property is omitted. 1?

@ScottCarda-MS ScottCarda-MS deleted the sccarda/MergeMine branch March 17, 2025 20:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants