@@ -32,49 +32,49 @@ function Attach:_build_menu()
32
32
})
33
33
34
34
menu :add_option ({
35
- label = ' Select a file and attach it to the task.' ,
35
+ label = ' Attach a file to this task.' ,
36
36
key = ' a' ,
37
37
action = function ()
38
38
return self :attach ()
39
39
end ,
40
40
})
41
41
menu :add_option ({
42
- label = ' Attach a file using copy method .' ,
42
+ label = ' Attach a file by copying it .' ,
43
43
key = ' c' ,
44
44
action = function ()
45
45
return self :attach_cp ()
46
46
end ,
47
47
})
48
48
menu :add_option ({
49
- label = ' Attach a file using move method .' ,
49
+ label = ' Attach a file by moving it .' ,
50
50
key = ' m' ,
51
51
action = function ()
52
52
return self :attach_mv ()
53
53
end ,
54
54
})
55
55
menu :add_option ({
56
- label = ' Attach a file using link method. ' ,
56
+ label = ' Attach a file by hard-linking it ' ,
57
57
key = ' l' ,
58
58
action = function ()
59
59
return self :attach_ln ()
60
60
end ,
61
61
})
62
62
menu :add_option ({
63
- label = ' Attach a file using symbolic-link method .' ,
63
+ label = ' Attach a file by symbolic-linking it .' ,
64
64
key = ' y' ,
65
65
action = function ()
66
66
return self :attach_lns ()
67
67
end ,
68
68
})
69
69
menu :add_option ({
70
- label = ' Attach a file from URL (downloading it) .' ,
70
+ label = ' Attach a file by download from URL .' ,
71
71
key = ' u' ,
72
72
action = function ()
73
73
return self :attach_url ()
74
74
end ,
75
75
})
76
76
menu :add_option ({
77
- label = ' Select a buffer and attach its contents to the task. ' ,
77
+ label = " Attach a buffer's contents. " ,
78
78
key = ' b' ,
79
79
action = function ()
80
80
return self :attach_buffer ()
@@ -87,69 +87,71 @@ function Attach:_build_menu()
87
87
return self :attach_new ()
88
88
end ,
89
89
})
90
+ menu :add_separator ({ length = # menu .title })
90
91
menu :add_option ({
91
- label = ' Synchronize current node with its attachment directory.' ,
92
- key = ' z' ,
93
- action = function ()
94
- return self :sync ()
95
- end ,
96
- })
97
- menu :add_option ({
98
- label = " Open current node's attachments." ,
92
+ label = ' Open an attachment externally.' ,
99
93
key = ' o' ,
100
94
action = function ()
101
95
return self :open ()
102
96
end ,
103
97
})
104
98
menu :add_option ({
105
- label = " Open current node's attachments in vim." ,
99
+ label = ' Open an attachment in vim.' ,
106
100
key = ' O' ,
107
101
action = function ()
108
102
return self :open_in_vim ()
109
103
end ,
110
104
})
111
105
menu :add_option ({
112
- label = " Open current node's attachment directory. Create if missing. " ,
106
+ label = ' Open the attachment directory externally. ' ,
113
107
key = ' f' ,
114
108
action = function ()
115
109
return self :reveal ()
116
110
end ,
117
111
})
118
112
menu :add_option ({
119
- label = " Open current node's attachment directory in vim." ,
113
+ label = ' Open the attachment directory in vim.' ,
120
114
key = ' F' ,
121
115
action = function ()
122
116
return self :reveal_nvim ()
123
117
end ,
124
118
})
119
+ menu :add_separator ({ length = # menu .title })
125
120
menu :add_option ({
126
- label = ' Select and delete one attachment' ,
121
+ label = ' Delete an attachment' ,
127
122
key = ' d' ,
128
123
action = function ()
129
124
return self :delete_one ()
130
125
end ,
131
126
})
132
127
menu :add_option ({
133
- label = ' Delete all attachments of the current node .' ,
128
+ label = ' Delete all attachments.' ,
134
129
key = ' D' ,
135
130
action = function ()
136
131
return self :delete_all ()
137
132
end ,
138
133
})
139
134
menu :add_option ({
140
- label = ' Set specific attachment directory for current node .' ,
135
+ label = ' Set specific attachment directory for this task .' ,
141
136
key = ' s' ,
142
137
action = function ()
143
138
return self :set_directory ()
144
139
end ,
145
140
})
146
141
menu :add_option ({
147
- label = ' Unset specific attachment directory for current node .' ,
142
+ label = ' Unset specific attachment directory for this task .' ,
148
143
key = ' S' ,
149
144
action = function ()
150
145
return self :unset_directory ()
151
146
end ,
152
147
})
148
+ menu :add_option ({
149
+ label = ' Synchronize this task with its attachment directory.' ,
150
+ key = ' z' ,
151
+ action = function ()
152
+ return self :sync ()
153
+ end ,
154
+ })
153
155
menu :add_option ({ label = ' Quit' , key = ' q' })
154
156
menu :add_separator ({ icon = ' ' , length = 1 })
155
157
0 commit comments