Skip to content

Commit 579cc52

Browse files
committed
Standardized the capitalization of "Talon"
1 parent 0884272 commit 579cc52

File tree

14 files changed

+34
-34
lines changed

14 files changed

+34
-34
lines changed

docs/Basic Usage/basic_usage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To keep track of what mode you are in with a visual icon, enable the [mode indic
3131
| `help next`, `help previous` | go to the next or previous page of help items if there are a lot |
3232
| `help close` | hide any open help window again |
3333
| `command history` | show the command history |
34-
| `talon open log` | open the talon log for debugging |
34+
| `talon open log` | open the Talon log for debugging |
3535

3636
## Dictating Text
3737

@@ -102,9 +102,9 @@ These commands will open up a CSV or [Talon list](Customization/talon_lists.md)
102102
| Command | Description |
103103
| -------------- | ------------------------------------------------------------------------- |
104104
| `copy that` | |
105-
| `control cap` | copy via the keyboard shortcut using the talon alphabet (`cap` for `c`) |
105+
| `control cap` | copy via the keyboard shortcut using the Talon alphabet (`cap` for `c`) |
106106
| `paste that` | |
107-
| `control vest` | paste via the keyboard shortcut using the talon alphabet (`vest` for `v`) |
107+
| `control vest` | paste via the keyboard shortcut using the Talon alphabet (`vest` for `v`) |
108108
| `cut that` | |
109109
| `undo that` | |
110110
| `redo that` | |

docs/Basic Usage/settings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Talon's behavior can be changed by changing the value of settings within a `.talon` file inside a `settings():` block.
44

55
```talon
6-
# Example talon file
6+
# Example Talon file
77
settings():
88
# Enable the Talon mode indicator
99
user.mode_indicator_show = true
@@ -49,11 +49,11 @@ If the same setting is defined multiple times, Talon will use the setting value
4949
| Setting | Example Value | Description |
5050
| --------------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
5151
| imgui.scale | 1.5 | Adjust the scale of the imgui windows |
52-
| imgui.dark_mode | false | If `true` enable dark mode for talon imgui menus (used for help menus in community) |
52+
| imgui.dark_mode | false | If `true` enable dark mode for Talon imgui menus (used for help menus in community) |
5353
| insert_wait | 0 | Increase this if characters seem to be jumbled in a specific app when typing whole sentences. Default is 0. |
5454
| key_hold | 16 | Increase this if you're playing a game and some keys aren't registering at all. You should probably increase it in 16ms increments, e.g. set it to 16ms or 32ms. |
5555
| key_wait | 1 | Increase this if modifier keys are getting dropped or if key presses are misbehaving even with the other two settings (`insert_wait` and `key_hold`) tuned. `key_wait` should be the last resort because it results in the slowest overall keypress rate. Default is 1.0 in milliseconds. |
56-
| speech.engine | | Determines which [speech engine](../Resource%20Hub/Speech%20Recognition//speech%20engines.md) talon uses to recognize input. This is useful for configuring dictation mode to use a different speech engine; for example, 'webspeech'. |
56+
| speech.engine | | Determines which [speech engine](../Resource%20Hub/Speech%20Recognition//speech%20engines.md) Talon uses to recognize input. This is useful for configuring dictation mode to use a different speech engine; for example, 'webspeech'. |
5757
| speech.timeout | | This determines how long a pause Talon waits for before deciding you've finished speaking and interpreting what you've just said as a sequence of commands. This parameter is generally very important; for example, it determines the amount of time you can pause between saying 'phrase' and the following phrase. It is measured in seconds; the default is 0.300, i.e. 300 milliseconds. |
5858

5959
To add your own additional custom settings for changing Talon behavior, see [the settings customization page](../Customization/Talon%20Framework/settings.md)

docs/Customization/Talon Framework/lists.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Because list contents can only be replaced in their entirety, end users can have
5656

5757
### Dynamic Lists
5858

59-
Dynamic lists are an advanced Talon feature that as of Talon 0.4 are currently **beta-only**. They are used for generating lists of items for voice commands at runtime. For example, you can use dynamic lists to create voice commands specific to the names of elements currently on the screen. Without dynamic lists you would otherwise have to poll and constantly update a normal talon list. Dynamic lists can also return [selection lists](#selection-lists) to dynamically match voice commands to substrings.
59+
Dynamic lists are an advanced Talon feature that as of Talon 0.4 are currently **beta-only**. They are used for generating lists of items for voice commands at runtime. For example, you can use dynamic lists to create voice commands specific to the names of elements currently on the screen. Without dynamic lists you would otherwise have to poll and constantly update a normal Talon list. Dynamic lists can also return [selection lists](#selection-lists) to dynamically match voice commands to substrings.
6060

6161
If you do not need the list to be constructed during the voice command, you should use a regular Talon list instead.
6262

docs/Customization/basic_customization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ You might have noticed that we've been using the key() and insert() actions in t
164164

165165
1. Right click on the Talon icon in your status bar, choose scripting, and then 'Console (REPL)'. This will open a terminal window where you type Python commands and the results of those commands are printed out.
166166
2. Type `actions.list()` and press enter. This will list out all the available actions.
167-
3. You might like to look at this list of actions in your text editor (so you can search them, for example). To put the full list into your clipboard, copy and paste this code into the talon console and press enter:
167+
3. You might like to look at this list of actions in your text editor (so you can search them, for example). To put the full list into your clipboard, copy and paste this code into the Talon console and press enter:
168168

169169
```python
170170
import io;old=sys.stdout;sys.stdout = io.StringIO();actions.list();clip.set_text(sys.stdout.getvalue());sys.stdout = old

docs/Customization/talon-files.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebar_position: 2
44

55
# `.talon` Files
66

7-
The primary way to extend talon is using `.talon` files placed anywherein the `user` directory. A talon file comes in two parts
7+
The primary way to extend Talon is using `.talon` files placed anywherein the `user` directory. A Talon file comes in two parts
88

99
- A [context header](#context-header) defining the circumstances in which the file is active
1010
- A body that implements various behaviors within that context which can:
@@ -55,7 +55,7 @@ The following requirements can be set:
5555
| --------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
5656
| `os` | require specific operating systems; currently either `linux`, `mac`, or `windows` |
5757
| `tag` | require a specific tag |
58-
| `mode` | only active for specific talon modes (like `command`, `dictation`, `sleep` et al.) |
58+
| `mode` | only active for specific Talon modes (like `command`, `dictation`, `sleep` et al.) |
5959
| `app` | match applications by explicitly declared, well-known name |
6060
| `app.name` | match applications by name (TODO where does Talon read this out?) |
6161
| `app.exe` | match applications by executable, like `/usr/lib/firefox/firefox` or `firefox.exe` |

docs/Help/FAQ.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Check out the [hardware](/docs/Resource%20Hub/Hardware/hardware.md) page for mic
2020

2121
They're being worked on, join [Talon Slack](https://talonvoice.com/chat) and find a channel for your language to see how it's going. If you are in the beta program, you can configure the WebSpeech API for dictation in other languages.
2222

23-
### How can I make talon recognise me better?
23+
### How can I make Talon recognise me better?
2424

2525
See the page [Improving Recognition Accuracy](../Resource%20Hub/Speech%20Recognition/improving_recognition_accuracy).
2626

@@ -29,7 +29,7 @@ See the page [Improving Recognition Accuracy](../Resource%20Hub/Speech%20Recogni
2929
While Talon is closed source, there's plenty you can do to help:
3030

3131
- https://speech.talonvoice.com/ Extend the voice data set used for speech recognition training.
32-
- Publish your talon commands on Github for others to share. Consider contributing back to the [Talon Community](https://github.com/talonhub/community) user file set. Publicly shared file sets are [searchable using this search engine](https://search.talonvoice.com/search/).
32+
- Publish your Talon commands on Github for others to share. Consider contributing back to the [Talon Community](https://github.com/talonhub/community) user file set. Publicly shared file sets are [searchable using this search engine](https://search.talonvoice.com/search/).
3333
- Report issues at https://github.com/talonvoice/talon/issues
3434
- Add more to these docs :)
3535

docs/Integrations/talon_related_resources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ These videos/channels demonstrate some of the possibilities of Talon without rea
2020
- [Ryan's Eye Tracking Demo](https://youtu.be/VMNsU7rrjRI) Demonstration of mouse control using eye tracking and Zoom mouse.
2121
- [2Shea's Emoji Searching Demo](https://youtu.be/RA0idiJkZOg) Experienced user of Talon dictating code
2222
- [2Shea's Mojolicious Perl App using Talon](https://youtu.be/X6rsA0Svh2M) More experienced code dictation
23-
- [talon rpi ether local w2l](https://youtu.be/PK6G1foW2Ao) Using Talon on a tablet. Channel has several videos.
23+
- [Talon rpi ether local w2l](https://youtu.be/PK6G1foW2Ao) Using Talon on a tablet. Channel has several videos.
2424

2525
## Text based educational resources
2626

2727
- [Matt's Visual TalonScript Builder](https://visual-talonscript.pages.dev) This is a web application that helps you build custom Talon commands with a visual interface.
2828
- [Guenther Schmitz's Wiki of Talon configuations, issues, and solutions.](https://wiki.gpunktschmitz.com/index.php/Talon) This list contains a grab-bag of various configurations, answers to questioms, and solutions. Well worth looking at.
29-
- [chaosparrot's talon practice website:](https://chaosparrot.github.io/talon_practice) a website with games and lessions to help you practice basic Talon commands.
29+
- [chaosparrot's Talon practice website:](https://chaosparrot.github.io/talon_practice) a website with games and lessions to help you practice basic Talon commands.
3030
- [Xevs web-based Talon Cheatsheet](https://talon-knausj-cheatsheet.netlify.app/) An online way to look up commands.
3131
- [Stolen Sugar](https://www.stolensugar.com/) Explore alternative keywords for commands in the [Talon Community](https://github.com/talonhub/community) user file set.

docs/Integrations/talon_user_file_sets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The main Talon user file set for Talon is [Talon Community](https://github.com/t
44

55
If intended for public consumption, these Talon user file sets are mostly annouced via the [Slack channel](https://talonvoice.com/chat). Aside from that there are a few ways you can discover them:
66

7-
- You can make use of the [talon code search](https://search.talonvoice.com/search/). This aims to search all known github repositories containing Talon related code. If you're looking for integration with a particular application this is a good option.
7+
- You can make use of the [Talon code search](https://search.talonvoice.com/search/). This aims to search all known github repositories containing Talon related code. If you're looking for integration with a particular application this is a good option.
88
- You can browse the [github talonvoice topic](https://github.com/topics/talonvoice). Repositories can optionally tag themselves with this to aid discoverability.
99
- You can take a look at the manually curated list below.
1010

docs/Resource Hub/Hardware/hardware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The customization for foot pedals is more involved than editing Talon files, and
7373
- [Elgato Stream Deck Pedal](https://www.elgato.com/en/stream-deck-pedal) is natively supported in Talon beta and has 3 buttons.
7474
- [Kinesis Savant Elite 2](https://kinesis-ergo.com/shop/savant-elite2-triple-pedal/) is mechanical and pedals can remap keys at the hardware level. It has 3 buttons.
7575

76-
With the talon beta, the elegato foot pedal can be used as follows:
76+
With the Talon beta, the elegato foot pedal can be used as follows:
7777

7878
```talon
7979
deck(pedal_left): print("left pedal")

docs/Resource Hub/Speech Recognition/improving_recognition_accuracy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ If recordings appear to be the correct length, Talon may be stuck due to a long-
6464

6565
## Help improving the Talon recognition engine
6666

67-
This will not help you today, but instead help to improve the talon engine for all of us in the future. You can do this by providing speech (and noise) samples:
67+
This will not help you today, but instead help to improve the Talon engine for all of us in the future. You can do this by providing speech (and noise) samples:
6868

6969
- [Talon Speech Collection](https://speech.talonvoice.com/)
7070
- [Talon Noise Collection](https://noise.talonvoice.com/)

0 commit comments

Comments
 (0)