forked from talonhub/community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.talon
133 lines (105 loc) · 2.82 KB
/
edit.talon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# Compound of action(select, clear, copy, cut, paste, etc.) and modifier(word, line, etc.) commands for editing text.
# eg: "select line", "clear all"
<user.edit_action> <user.edit_modifier>: user.edit_command(edit_action, edit_modifier)
# Zoom
zoom in: edit.zoom_in()
zoom out: edit.zoom_out()
zoom reset: edit.zoom_reset()
# Searching -> find_and_replace
# Navigation
# The reason for these spoken forms is that "page up" and "page down" are globally defined as keys.
scroll up: edit.page_up()
scroll down: edit.page_down()
# go left, go left left down, go 5 left 2 down
# go word left, go 2 words right
go <user.navigation_step>+: user.perform_navigation_steps(navigation_step_list)
go line start | head: edit.line_start()
go line end | tail: edit.line_end()
go way left:
edit.line_start()
edit.line_start()
go way right: edit.line_end()
go way up: edit.file_start()
go way down: edit.file_end()
go top: edit.file_start()
go bottom: edit.file_end()
go page up: edit.page_up()
go page down: edit.page_down()
# Selecting
select left: edit.extend_left()
select right: edit.extend_right()
select up: edit.extend_line_up()
select down: edit.extend_line_down()
select word left: edit.extend_word_left()
select word right: edit.extend_word_right()
# Indentation
indent [more]: edit.indent_more()
(indent less | out dent): edit.indent_less()
# Delete
clear left: edit.delete()
clear right: user.delete_right()
clear up:
edit.extend_line_up()
edit.delete()
clear down:
edit.extend_line_down()
edit.delete()
clear word left:
edit.extend_word_left()
edit.delete()
clear word right:
edit.extend_word_right()
edit.delete()
# Copy
copy that: edit.copy()
copy word left: user.copy_word_left()
copy word right: user.copy_word_right()
#to do: do we want these variants, seem to conflict
# copy left:
# edit.extend_left()
# edit.copy()
# copy right:
# edit.extend_right()
# edit.copy()
# copy up:
# edit.extend_up()
# edit.copy()
# copy down:
# edit.extend_down()
# edit.copy()
# Cut
cut that: edit.cut()
cut word left: user.cut_word_left()
cut word right: user.cut_word_right()
#to do: do we want these variants
# cut left:
# edit.select_all()
# edit.cut()
# cut right:
# edit.select_all()
# edit.cut()
# cut up:
# edit.select_all()
# edit.cut()
# cut down:
# edit.select_all()
# edit.cut()
# Paste
(pace | paste) that: edit.paste()
(pace | paste) enter:
edit.paste()
key(enter)
paste match: edit.paste_match_style()
# Duplication
clone that: edit.selection_clone()
clone line: edit.line_clone()
# Insert new line
new line above: edit.line_insert_up()
new line below: edit.line_insert_down()
# Undo/redo
(blast|undo that): edit.undo()
(yes indeed|redo that): edit.redo()
# Save
disk: edit.save()
disk all: edit.save_all()
[go] line mid: user.line_middle()