{"id":24932342,"url":"https://github.com/codegyan-llc/quickcpp","last_synced_at":"2026-05-05T21:37:41.762Z","repository":{"id":275386518,"uuid":"925935290","full_name":"Codegyan-LLC/QuickCPP","owner":"Codegyan-LLC","description":"Quick C++ is a VS Code extension that allows users to run C++ code snippets directly within the editor. It provides inline output for quick debugging and execution insights, making C++ development more efficient.","archived":false,"fork":false,"pushed_at":"2025-02-02T05:44:27.000Z","size":179,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-03-28T14:13:23.897Z","etag":null,"topics":["codegya","cpp","prathmeshyelne","quickcpp","vscode","vscode-extension"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=Codegyan.quickcpp","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Codegyan-LLC.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["prathmeshyelne"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"custom":null}},"created_at":"2025-02-02T05:27:50.000Z","updated_at":"2025-02-02T05:43:55.000Z","dependencies_parsed_at":"2025-02-02T06:34:22.862Z","dependency_job_id":null,"html_url":"https://github.com/Codegyan-LLC/QuickCPP","commit_stats":null,"previous_names":["codegyan-llc/quickcpp"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Codegyan-LLC%2FQuickCPP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Codegyan-LLC%2FQuickCPP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Codegyan-LLC%2FQuickCPP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Codegyan-LLC%2FQuickCPP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Codegyan-LLC","download_url":"https://codeload.github.com/Codegyan-LLC/QuickCPP/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246042013,"owners_count":20714147,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["codegya","cpp","prathmeshyelne","quickcpp","vscode","vscode-extension"],"created_at":"2025-02-02T14:21:06.892Z","updated_at":"2026-05-05T21:37:41.717Z","avatar_url":"https://github.com/Codegyan-LLC.png","language":"TypeScript","funding_links":["https://github.com/sponsors/prathmeshyelne"],"categories":[],"sub_categories":[],"readme":"# Quick C++ - C Inline Execution for VS Code\n\n**Quick C++** is a VS Code extension that allows users to run C++ code snippets directly within the editor. It provides inline output for quick debugging and execution insights, making C++ development more efficient.\n\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://raw.githubusercontent.com/Codegyan-LLC/QuickCPP/refs/heads/main/images/code.png\" width=\"600\" alt=\"Quick C++ Example\"\u003e\n\u003c/p\u003e\n\n## Getting Started\n\nInstallation\n\n1. **VS Code Marketplace :**\n    * Open Visual Studio Code.\n    * Navigate to the Extensions view (Ctrl+Shift+X or Cmd+Shift+X on macOS).\n    * Search for Quick C++.\n    * Click \"Install\" to add the extension to your VS Code.\n\n2. **Install from VSIX :**\n   - Download the latest `.vsix` package from the [Releases](#) page.\n   - Open Visual Studio Code.\n   - Go to the Extensions view by clicking on the Extensions icon in the Activity Bar or pressing `Ctrl+Shift+X`.\n   - Click on the ellipsis (`...`) in the top-right corner of the Extensions view and select \"Install from VSIX...\".\n   - Navigate to the downloaded `.vsix` file and select it to install.\n\n## Features\n\n* `Inline Code Execution`: Run C++ code directly in the editor and display results as inline comments.\n* `Real-Time Updates`: Automatically executes code on text changes or cursor movements.\n* `Error Feedback`: Catch errors like NameError and display clear, formatted messages inline.\n* `Temporary File Execution`: Ensures safe execution using temporary files without modifying your project files.\n* `Output Formatting`: Displays clean and non-intrusive inline output for easy readability.\n* `Enhanced Debugging`: Provides feedback for incomplete or invalid code to help developers debug faster.\n\n## Usage\n\n### Auto Execution\n\nJust write a C++ echo, print_r, or var_dump statement, and the output will appear inline.\n\n``` cpp\n#include \u003ciostream\u003e\nusing namespace std;\n\nint main() {\n    cout \u003c\u003c \"Hello, QuickCPP!\" \u003c\u003c endl;  // Output: Hello, QuickCPP!\n    return 0;\n}\n```\n\n### Error Highlighting\n\nErrors are shown inline, with the file and line number.\n``` cpp\n#include \u003ciostream\u003e\nusing namespace std;\n\nint main() {\n    cout \u003c\u003c \"Hello, QuickCPP!\" \u003c\u003c endl // error: expected ';' before 'return'\n    return 0;\n}\n```\n\n## Known Issues\n* Large scripts or complex logic may cause delays in execution.\n* Inline execution is limited to the lines above the current cursor.\n\nFeel free to report bugs or suggest features by opening an issue on GitHub.\n\n## Contributing\n\nContributions are welcome! If you have suggestions for improvements or new features, feel free to open an issue or submit a pull request on the Github.\n\n## License\n\nThis extension is licensed under the **[MIT license](https://opensource.org/licenses/MIT)**.\n\n\n## Contact\n\nFor questions or feedback, please contact support@codegyan.in.\n\n---\n\nThank you for using **Quick C++**! We hope it enhances your coding experience.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodegyan-llc%2Fquickcpp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodegyan-llc%2Fquickcpp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodegyan-llc%2Fquickcpp/lists"}