voice_control / basic_navigation.talon
1# Basic navigation2next app | next application:3 # help: Focus the next application. This will cycle through all the open applications if you keep using it.4 app.next()5previous app | previous application:6 # help: Focus the previously focused application. This does not cycle through the applications.7 app.previous()8show app windows | show application windows:9 # help: Show all the windows for the current application.10 app.windows_show()1112close [this] window:13 # help: Close the currently focused window14 app.window_close()1516find the text <phrase>:17 # help: Search for the text in the current application or document18 text = "{phrase}"19 edit.find(text)20find next:21 # help: Move to the next search result22 edit.find_next()2324toggle [the] desktop:25 app.desktop_toggle()2627close menu | cancel menu:28 # help: Close the open popup menu29 key(escape)3031[open] mission control:32 # help: Show all of the open windows33 app.desktop_show_windows()3435go to previous field | previous field:36 # help: Focus the previous field37 key(shift-tab)38go to next field | next field | tab key:39 # help: Focus the next field40 key(tab)4142minimize [this] window:43 # help: Minimize the currently focused window44 app.window_minimize()4546[make] new item | new window:47 # help: Open a new window for the current application48 app.window_open()4950open [a] document:51 edit.open()5253quit {apps.running}:54 # help: Exit the application55 apps.focus(apps.running)56 app.quit()57quit [this] application:58 # help: Exit the current application59 app.quit()6061repeat [that] [again] <number_small> times | repeat [that] [again] <number_small> | repeat that [one time]:62 # help: Repeat the previous command the given number of times.63 core.repeat_command(number_small or 1)64save [this] document:65 # help: Save the current document66 edit.save()6768open {apps.list} | launch {apps.list}:69 # help: Start the application70 apps.launch(apps.list)7172# show {apps.running}: disabled due to an unknown conflict with `show numbers`.73switch to {apps.running} | focus {apps.running}:74 # help: Focus the application75 apps.focus(apps.running)7677stop listening [to me] | go to sleep:78 # help: Make Talon stop listening for commands79 speech.disable()8081enter full screen:82 # help: Fullscreen the currently focused window83 app.window_fullscreen(true)84exit full screen:85 # help: Make the currently focused window no longer fullscreen86 app.window_fullscreen(false)87zoom window | maximize window:88 # help: Maximize the currently focused window89 app.window_maximize()9091scroll [page] down:92 # help: Scroll the page down93 edit.page_down()94scroll [page] up:95 # help: Scroll the page up96 edit.page_up()97scroll to [the] bottom | scroll to [the] end:98 # help: Scroll the page to the end99 edit.file_end()100scroll to [the] top | scroll to [the] beginning:101 # help: Scroll the page the beginning102 edit.file_start()