{"id":15178661,"url":"https://github.com/wolandark/vim-espeak","last_synced_at":"2026-02-08T13:03:16.061Z","repository":{"id":249574439,"uuid":"831885911","full_name":"wolandark/vim-espeak","owner":"wolandark","description":" text to speech for vim  using espeak","archived":false,"fork":false,"pushed_at":"2024-07-23T05:53:08.000Z","size":3,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-02T01:43:15.117Z","etag":null,"topics":["espeak","neovim","neovim-plugin","text-to-speech","tts","vim","vim-plugin","visually-challenged","visually-impaired"],"latest_commit_sha":null,"homepage":"","language":"Vim Script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wolandark.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-07-21T22:41:06.000Z","updated_at":"2024-11-24T15:51:15.000Z","dependencies_parsed_at":"2024-09-23T10:02:36.471Z","dependency_job_id":null,"html_url":"https://github.com/wolandark/vim-espeak","commit_stats":null,"previous_names":["wolandark/vim-espeak"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wolandark/vim-espeak","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolandark%2Fvim-espeak","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolandark%2Fvim-espeak/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolandark%2Fvim-espeak/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolandark%2Fvim-espeak/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wolandark","download_url":"https://codeload.github.com/wolandark/vim-espeak/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolandark%2Fvim-espeak/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29230739,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-08T12:28:20.184Z","status":"ssl_error","status_checked_at":"2026-02-08T12:28:19.510Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["espeak","neovim","neovim-plugin","text-to-speech","tts","vim","vim-plugin","visually-challenged","visually-impaired"],"created_at":"2024-09-27T15:21:12.265Z","updated_at":"2026-02-08T13:03:16.044Z","avatar_url":"https://github.com/wolandark.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vim espeak\n\nA simple wrapper over the espeak text-to-speech system.\u003cbr\u003e \nEspeak sounds robotic, for a more natural sounding tts, use [vim-piper](https://github.com/wolandark/vim-piper)\n\n## Introduction\n\nVim espeak is a Vim plugin that integrates the espeak text-to-speech system into Vim. It allows you to easily convert text within Vim to speech using espeak.\n\n## Dependency \nThis plugin depends on the following:\n- espeak\n- Vim or Neovim\n\n# Getting espeak\n```\npacman -S espeak espeak-ng\napt install espeak espeak-ng\netc ...\n```\n\n# Installation\n\n## Using vim-plug\n\nAdd the following to your `~/.vimrc` or `~/.config/nvim/init.vim`:\n\n```vim\nPlug 'wolandark/vim-espeak'\n```\n\nThen run `:PlugInstall` in Vim.\n\n# Configuration\n\nYou can configure the following variable in your ~/.vimrc.\n\n```vim\nlet g:espeak = 'espeak command to use'\n```\ndefault is:\n```\nlet g:espeak = 'espeak -v en'\n```\n# Functions\nThe plugin provides the following functions:\n\n   - PassVisualSelection(): Utility function to get the visual selection.\n   - SpeakWord(): Speak the word under the cursor.\n   - SpeakCurrentLine(): Speak the current line.\n   - SpeakCurrentParagraph(): Speak the current paragraph.\n   - SpeakVisualSelection(): Speak the visual selection.\n   - SpeakCurrentFile(): Speak the current file.\n\n# Mappings\nThe following mappings are defined by default:\n\n- nnoremap \u003cLeader\u003etw :call SpeakWord()\u003cCR\u003e\n- nnoremap \u003cLeader\u003etc :call SpeakCurrentLine()\u003cCR\u003e\n- nnoremap \u003cLeader\u003etp :call SpeakCurrentParagraph()\u003cCR\u003e\n- nnoremap \u003cLeader\u003etf :call SpeakCurrentFile()\u003cCR\u003e\n- vnoremap \u003cLeader\u003etv :call SpeakVisualSelection()\u003cCR\u003e\n\n# License\nSame as Vim.\n\n# Enjoy!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwolandark%2Fvim-espeak","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwolandark%2Fvim-espeak","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwolandark%2Fvim-espeak/lists"}