S or /

voice_control / text_selection.talon

1# Text selection2select [this] character:3    # help: Select the character at the cursor4    edit.select_none()5    edit.extend_right()6select [this] line:7    # help: Select the line at the cursor8    edit.select_line()9select [this] paragraph:10    # help: Select the paragraph at the cursor11    edit.select_paragraph()12select [this] sentence:13    # help: Select the sentence at the cursor14    edit.select_sentence()15select [this] word:16    # help: Select the word at the cursor17    edit.select_word()18select all [[the] text] | select [entire] document:19    # help: Select the entire document20    edit.select_all()21select [the] next character:22    # help: Select the next character after the cursor23    edit.extend_right()24select [the] next <number> characters:25    # help: Select the given number of characters after the cursor26    edit.extend_right()27    repeat(number-1)28select [the] next line:29    # help: Select the next line after the cursor30    edit.extend_line_down()31select [the] next <number> lines:32    # help: Select the given number of lines after the cursor33    edit.extend_line_down()34    repeat(number-1)35select [the] next paragraph:36    # help: Select the next paragraph after the cursor37    edit.extend_paragraph_next()38select [the] next <number> paragraphs:39    # help: Select the given number of paragraphs after the cursor40    edit.extend_paragraph_next()41    repeat(number-1)42select [the] next sentence:43    # help: Select the next sentence after the cursor44    edit.extend_sentence_next()45select [the] next <number> sentences:46    # help: Select the given number of sentences after the cursor47    edit.extend_sentence_next()48    repeat(number-1)49select [the] next word:50    # help: Select the next word after the cursor51    edit.extend_word_right()52select [the] next <number> words:53    # help: Select the given number of words after the cursor54    edit.extend_word_right()55    repeat(number-1)56select [the] previous character:57    # help: Select the previous character before the cursor58    edit.select_none()59    edit.extend_left()60select [the] previous <number> characters:61    # help: Select the given number of characters before the cursor62    edit.select_none()63    edit.extend_left()64    repeat(number - 1)65select [the] previous line:66    # help: Select the previous line before the cursor67    edit.line_start()68    edit.extend_line_up()69select [the] previous <number> lines:70    # help: Select the given number of lines before the cursor71    edit.line_start()72    edit.extend_line_up()73    repeat(number-1)74select [the] previous paragraph:75    # help: Select the previous paragraph before the cursor76    edit.paragraph_start()77    edit.extend_paragraph_previous()78select [the] previous <number> paragraphs:79    # help: Select the given number of paragraphs before the cursor80    edit.paragraph_start()81    edit.extend_paragraph_previous()82    repeat(number-1)83select [the] previous sentence:84    # help: Select the previous sentence before the cursor85    edit.sentence_start()86    edit.extend_sentence_previous()87select [the] previous <number> sentences:88    # help: Select the given number of sentences before the cursor89    edit.sentence_start()90    edit.extend_sentence_previous()91    repeat(number-1)92select [the] previous word:93    # help: Select the previous word before the cursor94    edit.word_left()95    edit.select_word()96select [the] previous <number> words:97    # help: Select the given number of words before the cursor98    edit.word_left()99    edit.select_word()100    edit.right()101    edit.extend_word_left()102    repeat(number-1)103select that:104    # help: Find and select the last dictated phrase in the current field.105    dictate.select_last()106deselect that | deselect this | unselect that | unselect this:107    # help: Unselect the currently selected text108    edit.select_none()109110extend [the] selection back [by] <number> characters | extend [the] selection backward [by] <number> characters | extend [the] selection back [by] one character | extend [the] selection backward [by] one character:111    # help: Extend the selection back by the given number of characters112    number = number or 1113    edit.extend_left()114    repeat(number-1)115extend [the] selection back [by] <number> lines | extend [the] selection backward [by] <number> lines | extend [the] selection back [by] one line | extend [the] selection backward [by] one line:116    # help: Extend the selection back by the given number of lines117    number = number or 1118    edit.extend_line_up()119    repeat(number-1)120extend [the] selection back [by] <number> paragraphs | extend [the] selection backward [by] <number> paragraphs | extend [the] selection back [by] one paragraph | extend [the] selection backward [by] one paragraph:121    # help: Extend the selection back by the given number of paragraphs122    number = number or 1123    edit.extend_paragraph_previous()124    repeat(number-1)125extend [the] selection back [by] <number> sentences | extend [the] selection backward [by] <number> sentences | extend [the] selection back [by] one sentence | extend [the] selection backward [by] one sentence:126    # help: Extend the selection back by the given number of sentences127    number = number or 1128    edit.extend_sentence_previous()129    repeat(number-1)130extend [the] selection back [by] <number> words | extend [the] selection backward [by] <number> words | extend [the] selection back [by] one word | extend [the] selection backward [by] one word:131    # help: Extend the selection back by the given number of words132    number = number or 1133    edit.extend_word_left()134    repeat(number-1)135extend [the] selection [forward] [by] <number> characters | extend [the] selection [forward] [by] one character:136    # help: Extend the selection forward by the given number of characters137    number = number or 1138    edit.extend_right()139    repeat(number-1)140extend [the] selection [forward] [by] <number> lines | extend [the] selection [forward] [by] one line:141    # help: Extend the selection forward by the given number of lines142    number = number or 1143    edit.extend_line_down()144    repeat(number-1)145extend [the] selection [forward] [by] <number> paragraphs | extend [the] selection [forward] [by] one paragraph:146    # help: Extend the selection forward by the given number of paragraphs147    number = number or 1148    edit.extend_paragraph_next()149    repeat(number-1)150extend [the] selection [forward] [by] <number> sentences | extend [the] selection [forward] [by] one sentence:151    # help: Extend the selection forward by the given number of sentences152    number = number or 1153    edit.extend_sentence_next()154    repeat(number-1)155extend [the] selection [forward] [by] <number> words | extend [the] selection [forward] [by] one word:156    # help: Extend the selection forward by the given number of words157    number = number or 1158    edit.extend_word_right()159    repeat(number-1)160extend [the] selection to [the] beginning | select to [the] beginning:161    # help: Select to the beginning of the document162    edit.extend_file_start()163extend [the] selection to [the] end | select to [the] end:164    # help: Select to the end of the document165    edit.extend_file_end()166167select [from] [the word] <edit.target>:168    # help: Select the target text or range169    edit.target_select(edit.target)