{"id":50859333,"url":"https://github.com/eddiejaoude/vscode-paste-type-out","last_synced_at":"2026-06-14T20:30:48.789Z","repository":{"id":358883159,"uuid":"1243439597","full_name":"eddiejaoude/vscode-paste-type-out","owner":"eddiejaoude","description":"Show code being typed out from your clip board. Great for videos and demos","archived":false,"fork":false,"pushed_at":"2026-05-19T12:06:47.000Z","size":21646,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-14T14:00:08.277Z","etag":null,"topics":["extension","tool","typescript","vscode"],"latest_commit_sha":null,"homepage":"","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/eddiejaoude.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-19T10:45:40.000Z","updated_at":"2026-06-13T08:34:57.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/eddiejaoude/vscode-paste-type-out","commit_stats":null,"previous_names":["eddiejaoude/vscode-paste-type-out"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/eddiejaoude/vscode-paste-type-out","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddiejaoude%2Fvscode-paste-type-out","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddiejaoude%2Fvscode-paste-type-out/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddiejaoude%2Fvscode-paste-type-out/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddiejaoude%2Fvscode-paste-type-out/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eddiejaoude","download_url":"https://codeload.github.com/eddiejaoude/vscode-paste-type-out/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddiejaoude%2Fvscode-paste-type-out/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34337551,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-14T02:00:07.365Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["extension","tool","typescript","vscode"],"created_at":"2026-06-14T20:30:48.148Z","updated_at":"2026-06-14T20:30:48.783Z","avatar_url":"https://github.com/eddiejaoude.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Paste Type\n\nA VSCode extension that types clipboard text into the editor when you paste.\n\n## What it does\n\n- Overrides paste in text editors (`Ctrl+V` / `Cmd+V`)\n- Reads your clipboard text\n- Types it character-by-character\n- Preserves exact formatting, including spaces, tabs, and indentation\n- Adds a status bar toggle so you can quickly turn Paste Type on/off and see current state\n- Adds a status bar speed menu so you can quickly switch typing pace from slow to fast\n\n![Demo animated gif of VSCode exxtension Paste Out](./assets/vscode-type-out.gif)\n\n## Configuration\n\n- `paste-type.enabled`: Enables/disables Paste Type.\n  - Default: `true`\n  - When disabled, `Ctrl+V` / `Cmd+V` uses VSCode's default paste behavior.\n- `paste-type.typingDelayMs`: Delay (in milliseconds) between each typed character.\n  - Default: `40`\n  - Increase this if you want visible typing animation.\n\n## Toggle on/off quickly\n\n- Use the status bar button on the right side:\n  - `Paste Type: On`\n  - `Paste Type: Off`\n- Click the button to toggle state.\n- You can also run the command: `Paste Type: Toggle Enabled`.\n\n## Speed menu\n\n- Use the `Paste Speed` status bar item next to the toggle.\n- Click it to choose one of the built-in presets:\n  - Slow\n  - Comfortable\n  - Balanced\n  - Fast\n  - Instant\n- You can also run the command: `Paste Type: Select Speed`.\n\n## Run locally\n\n1. Install dependencies:\n   ```bash\n   npm install\n   ```\n2. Compile:\n   ```bash\n   npm run compile\n   ```\n3. Press `F5` in VSCode to launch an Extension Development Host.\n4. Copy code and paste in an editor to see it typed out.\n\n## Install in VSCode\n\n1. Install the VSCode extension packager:\n   ```bash\n   npm install -g @vscode/vsce\n   ```\n2. From this project folder, build and package the extension:\n   ```bash\n   npm install\n   npm run compile\n   vsce package\n   ```\n3. Install the generated `.vsix` file using one of these options:\n\n- Command line:\n  ```bash\n  code --install-extension paste-type-0.0.1.vsix\n  ```\n- VSCode UI:\n  1. Open Extensions view.\n  2. Click the `...` menu.\n  3. Select `Install from VSIX...`.\n  4. Choose the generated `.vsix` file.\n\n4. Reload VSCode when prompted.\n\n## Publish to VSCode Marketplace (App Store)\n\n1. Prepare extension metadata in `package.json`:\n\n- Ensure `name`, `displayName`, `description`, `version`, and `publisher` are correct.\n- Add `repository`, `license`, and `icon` fields if missing (recommended for listing quality).\n\n2. Create a publisher profile:\n\n- Go to https://marketplace.visualstudio.com/manage and create a publisher if you do not have one.\n\n3. Create a Personal Access Token (PAT):\n\n- In Azure DevOps (https://dev.azure.com), create a PAT with Marketplace publish/manage permissions.\n\n4. Install `vsce` (if not already installed):\n\n```bash\nnpm install -g @vscode/vsce\n```\n\n5. Log in with your publisher name:\n\n```bash\nvsce login \u003cyour-publisher-name\u003e\n```\n\n- Paste your PAT when prompted.\n\n6. Publish:\n\n```bash\nnpm run compile\nvsce publish\n```\n\nOptional version bump while publishing:\n\n```bash\nvsce publish patch\nvsce publish minor\nvsce publish major\n```\n\nAfter publish, your extension should appear on the VSCode Marketplace within a few minutes.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feddiejaoude%2Fvscode-paste-type-out","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feddiejaoude%2Fvscode-paste-type-out","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feddiejaoude%2Fvscode-paste-type-out/lists"}