| 

 A Visual Studio Code extension that allows you to add comments to specific lines of code and manage them in a sidebar TreeView. Features
Add comments to selected lines or cursor position in the editorView all comments in a TreeView sidebar organized by fileJump to commented lines directly from the sidebarEdit or delete existing comments through context menuCopy all comments in a formatted text for easy sharingClear all comments with a single commandComments persist across VS Code sessionsSupport for multi-line comments with selectionsLine decorations to visually identify commented lines in the editor Requirements
VS Code version 1.99.3 or higher How to Use
 
Open a file in the editorPlace your cursor on a line or select text (for multi-line comments)Press Ctrl+Alt+C(orCmd+Alt+Con macOS) to add a commentEnter your comment in the input box that appearsView your comments in the "Line Comment Collector" sidebarClick on a comment to jump to that line in the editorRight-click on a comment to edit or delete itUse the "Copy All Comments" button in the sidebar to copy all comments to clipboardUse the "Clear All Comments" button to remove all comments Extension CommandsThis extension contributes the following commands: 
lineCommentCollector.addComment: Add a comment to the current line or selectionlineCommentCollector.copyAll: Copy all comments to clipboard in a formatted textlineCommentCollector.clearAll: Clear all comments after confirmationlineCommentCollector.edit: Edit a commentlineCommentCollector.delete: Delete a comment after confirmationlineCommentCollector.reveal: Reveal a commented line in the editor Known IssuesCurrently, there are no known issues. If you encounter any problems, please report them on the GitHub repository. 
 ContributingThis extension is open source and contributions are welcome. Please see the GitHub repository for more information. PublishingThis extension can be published to either the VS Code Marketplace or the Open VSX Registry: 
For VS Code Marketplace: pnpm run vscode-publishFor Open VSX Registry: pnpm run ovsx-publish(requires OVSX_PAT environment variable) |  |