├── .editorconfig ├── .forgejo └── workflows │ └── create-release.yaml ├── .github ├── FUNDING.yml ├── dependabot.yaml └── workflows │ ├── create-release.yaml │ └── gh-pages.yaml ├── .gitignore ├── CHANGELOG.md ├── Directory.build.props ├── EDMap-de-neo2.txt ├── EDMap-en-gb.txt ├── EDMap-en-us.txt ├── GlobalSuppressions.cs ├── LICENSE ├── Makefile ├── Properties └── AssemblyInfo.cs ├── README.md ├── StyleCop.ruleset ├── VoiceAttack.exe ├── bindED-diagnostics-Profile.vap ├── bindED-reports-Profile.vap ├── bindED.cs ├── bindEDplugin.csproj ├── bindEDplugin.sln ├── docs ├── ReadMe.txt ├── images │ └── keypress.png ├── index.md └── troubleshooting.md ├── mkdocs.yml ├── requirements.txt └── stylecop.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/.editorconfig -------------------------------------------------------------------------------- /.forgejo/workflows/create-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/.forgejo/workflows/create-release.yaml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/create-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/.github/workflows/create-release.yaml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/.github/workflows/gh-pages.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Directory.build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/Directory.build.props -------------------------------------------------------------------------------- /EDMap-de-neo2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/EDMap-de-neo2.txt -------------------------------------------------------------------------------- /EDMap-en-gb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/EDMap-en-gb.txt -------------------------------------------------------------------------------- /EDMap-en-us.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/EDMap-en-us.txt -------------------------------------------------------------------------------- /GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/GlobalSuppressions.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/Makefile -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/README.md -------------------------------------------------------------------------------- /StyleCop.ruleset: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VoiceAttack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/VoiceAttack.exe -------------------------------------------------------------------------------- /bindED-diagnostics-Profile.vap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/bindED-diagnostics-Profile.vap -------------------------------------------------------------------------------- /bindED-reports-Profile.vap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/bindED-reports-Profile.vap -------------------------------------------------------------------------------- /bindED.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/bindED.cs -------------------------------------------------------------------------------- /bindEDplugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/bindEDplugin.csproj -------------------------------------------------------------------------------- /bindEDplugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/bindEDplugin.sln -------------------------------------------------------------------------------- /docs/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/docs/ReadMe.txt -------------------------------------------------------------------------------- /docs/images/keypress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/docs/images/keypress.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | mkdocs-roamlinks-plugin 2 | -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alterNERDtive/bindED/HEAD/stylecop.json --------------------------------------------------------------------------------