Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
245 changes: 189 additions & 56 deletions docs/Basic Usage/basic_usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ To keep track of what mode you are in with a visual icon, enable the [mode indic

## Dictating Text

### Formatters

Say a formatter then the text. (i.e. `say "hello world"`) to dictate while in command mode

| Formatter | Description |
Expand All @@ -45,6 +47,158 @@ Say a formatter then the text. (i.e. `say "hello world"`) to dictate while in co
| `kebab` | dashes instead of spaces |
| `help formatters` | show all available formatters |

### Dictating Individual Characters

#### Dictating Characters in Command Mode

`help symbols` shows the commands for dictating symbols. Numbers can be dictated in command or dictation mode by saying `numb <number>`, i.e. `numb 2000` to dictate `2000`. Individual letters can be dictated with the alphabet commands, which can be seen by saying `help alphabet`. A single capital letter can be dictated by saying `shift <user.letter>`, such as saying `shift air` to dictate `A`. Multiple capital letters can be dictated in command or dictation mode by saying `ship` before the letters, such as saying `ship air bat cap` to dictate `ABC`.

#### Dictating Characters in Dictation Mode

In dication mode, lower case letters can be dictated by saying `spell` and then the letters, such as `spell air bat cap` to dictate `abc`. Keys can be pressed in dictation mode by saying `press` and then the key stroke. This can allow dictating symbols, such as `press tilde` to dictate `~`. `help punctuation` shows how to dictate punctuation symbols in dictation mode without the press prefix.

The commands for dictating upper case letters and numbers are the same as in command mode and are documented in the previous section.

### Dictating Words in Dictation Mode

In dictation mode, words that are not commands are typed as text. To dictate words that would otherwise get interpreted as dictation mode commands, you can say `escape` followed by the words you want transcribed, such as saying `escape press air` to dictate the text `press air`.

The following commands are available for overwriting the default formatting

| Command | Description |
| ----------------------------------------- | --------------------------------------------------------- |
| `cap` | capitalize the next word |
| `no cap` or `no caps` | make the next word lowercase |
| `no space` | do not put a space before the next word |
| `cap that` | make the first word of the last dictated text capitalized |
| `no cap that` or `no caps that` | make the first word of the last dictated text lowercase |
| `formatted <user.formatters> <user.text>` | apply formatter to the dictated text |

The formatted command works with the formatters documented above. To give an example, saying `formatted title this is dictation` inserts the text `This Is Dictation`.

## Pressing Keys

Saying `help alphabet` shows the command for each letter key.

Saying `help symbols` shows the command for each symbol key.

Keys can be combined with modifier keys, i.e saying `shift up` presses shift and up. Saying `help modifiers` shows the word to refer to each modifier key. The `super` key refers to the operating system specific modifier. This is used for the `windows` key on Windows and offers one way to refer to the `command` key on MacOS.

In a keystroke, number keys can be dictated without prefix. For instance, saying `control-1` presses the control and 1 keys at the same time.

Keys can be pressed in dictation mode by saying `press` followed by the key stroke, such as saying `press shift up` to press shift and up. The `press` command can also be used in command or dictation mode to press modifier keys by themselves, such as `press control` to press the control key.

Saying `help arrows` shows the names for referring to the arrow keys, which are just the direction names up, down, left, right. These can be used with a modifier or the `press` command but not by themselves.

Saying `help special keys` shows the commands for other keys you can press, such as pageup and escape.

Function keys, like `f1`, can be dictated by saying `f` and then the key number.

### Dictation Mode Editing and Navigation

Dictation mode provides some convenience commands for editing and navigating text.

| Command | Description |
| ------------------------------------------------------- | ------------------------------------------------------------------------------------ |
| `scratch that` | delete the last dictated phrase assuming the cursor has not moved after dictating it |
| `select that` | select the last dictated phrase assuming the cursor has not moved after dictating it |
| `go line start` | move the cursor to the start of the line |
| `go line end` | move the cursor to the end of the line |
| `go up <number_small> (line or lines)` | move the cursor up the specified number of lines |
| `go down <number_small> (line or lines)` | move the cursor down the specified number of lines |
| `go left <number_small> (word or words)` | move the cursor left the specified number of words |
| `go right <number_small> (word or words)` | move the cursor right the specified number of words |
| `select left <number_small> (word or words)` | select the specified number of words to the left |
| `select right <number_small> (word or words)` | select the specified number of words to the right |
| `select left <number_small> (character or characters)` | select the specified number of characters to the left |
| `select right <number_small> (character or characters)` | select the specified number of characters to the right |
| `clear left <number_small> (word or words)` | delete the specified number of words to the left |
| `clear right <number_small> (word or words)` | delete the specified number of words to the right |
| `clear left <number_small> (character or characters)` | delete the specified number of characters to the left |
| `clear right <number_small> (character or characters)` | delete the specified number of characters to the right |

For example, saying `go up 10 lines` moves the cursor up 10 lines.

### Command Mode Editing and Navigation

#### Edit/Navigation Actions and Modifiers

Command mode provides flexible editing and navigation commands where an editing/navigation command can be followed by a modifier to apply it to.

Saying the name of one of these actions followed by the name of a modifier applies the action to the target referred to by the modifier. For instance, saying `select line` selects the current line. A number between 1 and 99 can be dictated between the name of an action and a repeatable modifier to apply that modifier the specified number of times. For instance, saying `copy 3 right` copies the three characters to the right of the cursor.

| Action | Description |
| --------- | ------------------------------------------------- |
| select | select the target |
| go before | go before the target |
| go after | go after the target |
| copy | copy the text at the target |
| paste | paste the contents of the clipboard to the target |
| clear | delete the target |

| Modifier | What the action gets applied to |
| ---------- | ------------------------------- |
| all | the document |
| paragraph | the paragraph |
| line | the line |
| line start | the start of line |
| way left | the start of line |
| line end | the end of line |
| way right | the end of line |
| file start | the start of file |
| way up | the start of file |
| file end | the end of file |
| way down | the end of file |

| Repeatable Modifier | The action gets applied to the specified number of |
| ------------------- | -------------------------------------------------- |
| word left | words to the left of the cursor |
| word right | words to the right of the cursor |
| word | words to the right of the cursor |
| up | lines up starting at the cursor |
| down | lines down starting at the cursor |
| left | characters to the left of the cursor |
| right | characters to the right of the cursor |

#### Scrolling

| Command | Description |
| -------------- | -------------------------------------- |
| `page down` | press the page down key |
| `page up` | press the page up key |
| `scroll down` | scroll down |
| `scroll up` | scroll up |
| `wheel down` | scroll down with the mouse |
| `wheel up` | scroll up with the mouse |
| `wheel left` | scroll left with the mouse |
| `wheel right` | scroll right with the mouse |
| `wheel gaze` | scroll according to the mouse position |
| `wheel upper` | continually scroll up with the mouse |
| `wheel downer` | continually scroll down with the mouse |
| `wheel stop` | stop scrolling |

#### Working with text

| Command | Description |
| ------------ | -------------- |
| `copy that` | copy selection |
| `paste that` | paste |
| `cut that` | cut selection |
| `undo that` | undo |
| `redo that` | redo |

#### Working With Tabs

| Command |
| ----------------- |
| `tab new` |
| `tab last` |
| `tab next` |
| `tab close` |
| `tab restore` |
| `go tab <number>` |
| `go tab final` |

## Customize Talon

These commands will open up a CSV or [Talon list](Customization/talon_lists.md) file in your default text editor that you can edit to customize voice commands without needing to write Talon scripts.
Expand All @@ -65,28 +219,9 @@ These commands will open up a CSV or [Talon list](Customization/talon_lists.md)
| `launch "app name"` | say "launch chrome" for example, to open chrome |
| `window close` | closes the currently active window |

## Working with tabs

| Command |
| ----------------- |
| `tab new` |
| `tab last` |
| `tab next` |
| `tab close` |
| `tab restore` |
| `go tab <number>` |
| `go tab final` |

## Working with media

| Command |
| --------------- |
| `media mute` |
| `play next` |
| `play previous` |
| `media play` |
## Mouse Commands

## Controlling the Tobii eye tracker
### Controlling the Tobii eye tracker

| Commands | Description |
| ----------------- | ------------------------------------ |
Expand All @@ -95,43 +230,41 @@ These commands will open up a CSV or [Talon list](Customization/talon_lists.md)
| `zoom mouse` | Toggle Control Mouse (Zoom). |
| `control off` | Turn the eye tracker off |

## Working with text
### Clicking

| Command | Description |
| -------------- | ------------------------------------------------------------------------- |
| `copy that` | |
| `control cap` | copy via the keyboard shortcut using the Talon alphabet (`cap` for `c`) |
| `paste that` | |
| `control vest` | paste via the keyboard shortcut using the Talon alphabet (`vest` for `v`) |
| `cut that` | |
| `undo that` | |
| `redo that` | |
| `scratch that` | undo Talon dictation |
| Command | Description |
| ------------ | -------------------------------------- |
| `touch` | single click |
| `duke` | double click |
| `trip click` | triple click |
| `drag` | hold down the mouse. Repeat to release |
| `righty` | right click |

## Mouse Commands
### Mouse Grid

| Command | Description |
| ------------ | --------------------------------------- |
| `touch` | single click |
| `duke` | double click |
| `trip click` | triple click |
| `drag` | hold down the mouse. Repeat to release |
| `curse yes` | hides the mouse cursor for eye tracking |
| `curse no` | shows the mouse cursor |
| `righty` | right click |
The mouse grid lets you move the mouse by dictating numbers. You use one of the below commands to open the grid. This divides the area you made the grid around into 9 rectangles. Picking one of the numbers recreates the grid within that rectangle and moves the mouse to the center of that rectangle. The clicking commands and `grid close` close the mouse grid.

## Scrolling
| Command | Description |
| ------------------------- | --------------------------------------------------------------------------------- |
| `mouse grid` | open the mouse grid |
| `grid win` | open the mouse grid on the window |
| `grid screen <number>` | open the mouse grid on the specified screen |
| `grid <user.number_key>+` | open the mouse grid and narrow it using the numbers from the dictated number keys |

| Command | Description |
| -------------- | -------------------------------------- |
| `page down` | press the page down key |
| `page up` | press the page up key |
| `scroll down` | scroll down |
| `scroll up` | scroll up |
| `wheel down` | scroll down |
| `wheel up` | scroll up |
| `wheel left` | scroll left |
| `wheel gaze` | scroll according to the mouse position |
| `wheel upper` | continually scroll up |
| `wheel downer` | continually scroll down |
| `wheel stop` | stop scrolling |
### Cursor Hide/Show Commands

| Command | Description |
| ----------- | --------------------------------------- |
| `curse yes` | hides the mouse cursor for eye tracking |
| `curse no` | shows the mouse cursor |

These commands require activating the `user.mouse_cursor_commands_enable` tag (see community settings.talon).

## Working With Media

| Command |
| --------------- |
| `media mute` |
| `play next` |
| `play previous` |
| `media play` |