### Install Cursor Extension via CLI Source: https://github.com/samber/vscode-token-meter/blob/main/README.md Use this command to install the extension directly from the Cursor command line interface. ```bash cursor --install-extension samber.vscode-token-meter ``` -------------------------------- ### Package and Install Extension Locally Source: https://github.com/samber/vscode-token-meter/blob/main/README.md Commands to package the extension using `vsce` and then install the generated `.vsix` file locally. ```bash npm install -g @vscode/vsce vsce package code --install-extension vscode-token-meter-*.vsix ``` -------------------------------- ### Install VS Code Extension via CLI Source: https://github.com/samber/vscode-token-meter/blob/main/README.md Use this command to install the extension directly from the VS Code command line interface. ```bash code --install-extension samber.vscode-token-meter ``` -------------------------------- ### Match All Files Pattern Source: https://github.com/samber/vscode-token-meter/blob/main/README.md This pattern can be used to override the default file patterns and enable token counting for all files within your project. ```json ["*"] ``` -------------------------------- ### Default File Patterns for Token Counting Source: https://github.com/samber/vscode-token-meter/blob/main/README.md These are the default glob patterns used to determine which files the token counter should be active in. You can override this with a single wildcard to include all files. ```json ["*.md", "*.txt", "*.py", "*.js", "*.jsx", "*.ts", "*.tsx", "*.json", "*.yaml", "*.yml", "*.toml", "*.xml", "*.html", "*.css", "*.scss", "*.less", "*.go", "*.rs", "*.java", "*.kt", "*.scala", "*.c", "*.cpp", "*.h", "*.hpp", "*.cs", "*.rb", "*.php", "*.swift", "*.m", "*.r", "*.R", "*.lua", "*.pl", "*.sh", "*.bash", "*.zsh", "*.fish", "*.sql", "*.graphql", "*.proto", "*.dart", "*.ex", "*.exs", "*.erl", "*.hs", "*.clj", "*.vue", "*.svelte", "*.tf", "*.dockerfile", "Dockerfile"] ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.