Commie Commie is a Visual Studio Code extension designed to streamline the process of adding, editing, and deleting comments within your code. With intuitive commands and decorations, it enhances your workflow by allowing you to manage comments efficiently. Features Add Comments: Easily add comments to any line in your code. Edit Comments: Quickly edit existing comments. Delete Comments: Remove comments when no longer needed. Decorations: View comments directly in the editor with a visual indicator. Comment Management: Automatic adjustment of comment positions when lines are added or removed. Installation Open Visual Studio Code. Go to the Extensions view by clicking on the Extensions icon in the Activity Bar on the side of the window. Search for "Commie" and click Install. Alternatively, you can install the extension from the command line: bash Copy code code --install-extension commie.commie Usage Commands Add Comment: com-com.addComment Opens an input box to add a comment to the current line. Edit Comment: com-com.editComment Opens an input box to edit the comment on the current line. Delete Comment: com-com.deleteComment Deletes the comment on the current line. Context Menu Right-click on a line of code to access options for adding, editing, or deleting comments. Known Issues Comments may be temporarily misplaced if lines are added or removed around them. The extension handles most changes but might need manual adjustments for complex scenarios. Contribution Contributions are welcome! Please open an issue or submit a pull request on the GitHub repository. License This extension is licensed under the MIT License. Acknowledgements Thanks to the VS Code API documentation and community for their support and contributions. |