Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AshleyF/VimSpeak
Speak to your editor.
https://github.com/AshleyF/VimSpeak
Last synced: 2 days ago
JSON representation
Speak to your editor.
- Host: GitHub
- URL: https://github.com/AshleyF/VimSpeak
- Owner: AshleyF
- License: mit
- Created: 2013-05-05T02:40:25.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2020-09-09T20:17:17.000Z (about 4 years ago)
- Last Synced: 2024-08-02T16:47:12.045Z (3 months ago)
- Language: F#
- Size: 15.6 KB
- Stars: 415
- Watchers: 19
- Forks: 31
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
- my-awesome-github-stars - AshleyF/VimSpeak - Speak to your editor. (F# #)
README
# VimSpeak #
VimSpeak lets you control Vim with your voice using speech recognition. For instance, you can say _“select three words”_ to type `v3w` or _“change surrounding brackets to parens”_ to type `cs])` or crazy things like _“change occurrences of ‘foo’ into ‘bar’, globally, ignore case, confirm”_ to type `:%s/foo/bar/gic`. Of course in insert mode you may dictate whatever you like. To learn the grammar, have a look at the unit tests and the code (“use the source, Luke”). It’s quite declarative and easy to follow.
The idea is to run this console app in the background where it will listen for speech and do `SendKeys(...)` to the foreground app. The foreground app may be any editor expecting Vim keystrokes. It’s been tested with Visual Studio with [Jared Parson’s excellent VsVim extention](https://github.com/jaredpar/VsVim) (also written in F#, BTW) and with Sublime Text in Vintage Mode and, of course, with Vim itself.
---
It is written in F# and makes use `System.Speech.Recognition`/`Synthesis` (.NET 3+). It also relies on `SendKeys(...)` (.NET 1.1+). I’ve only tested it under Win8, but it may work with Mono on other platforms.
---
This is a little toy I built over the weekend after watching Tavis Rudd's nifty Strange Loop talk here: http://www.infoq.com/presentations/Programming-Voice
I wanted to do the same for Vim. It's nowhere near yet, but a start...There's a demo/explanation of it here: http://www.youtube.com/watch?v=TEBMlXRjhZY
And another demo applying it to a VimGolf challenge: http://www.youtube.com/watch?v=qy84TYvXJbk
Have fun!