snipmate
v1.0.0
Published
A versatile command-line snippet manager tool for developers
Downloads
3
Maintainers
Readme
snipmate
Snipmate is a versatile command-line snippet manager designed to help developers efficiently organize, store, and accesscode snippets for resuse across projects.
Features
- Add Snippets: Easily and code snippets along with descriptions and optional tags for better organization.
- List Snippets: View a comprehensive list of all saved snippets, optionally filtered by tags.
- Search Snippets: Quickly find specific snippets using keywords or tags.
- Remove Snippets: Remove unwanted snippets from your collection to keep it clean nd manageable.
Installation
To install snipmate globally, simply run the following command in your terminal:
npm install snipmate
Usage
# Add a snippet
snip <description> <code> [-t, --tags <tags...>] <tag>
# List Snippets
snip list [<tags..>]
# Search Snippets
snip search <description>
# Remove Snippet
snip remove <tag>
# Filter snippets
snip filter <tag>
# Update snippets
snip update <tag> <description> <code>