@@ -204,17 +204,17 @@ impl MappableCommand {
204
204
extend_line_down, "Extend down" ,
205
205
copy_selection_on_next_line, "Copy selection on next line" ,
206
206
copy_selection_on_prev_line, "Copy selection on previous line" ,
207
- move_next_word_start, "Move to beginning of next word" ,
208
- move_prev_word_start, "Move to beginning of previous word" ,
207
+ move_next_word_start, "Move to start of next word" ,
208
+ move_prev_word_start, "Move to start of previous word" ,
209
209
move_prev_word_end, "Move to end of previous word" ,
210
210
move_next_word_end, "Move to end of next word" ,
211
- move_next_long_word_start, "Move to beginning of next long word" ,
212
- move_prev_long_word_start, "Move to beginning of previous long word" ,
211
+ move_next_long_word_start, "Move to start of next long word" ,
212
+ move_prev_long_word_start, "Move to start of previous long word" ,
213
213
move_next_long_word_end, "Move to end of next long word" ,
214
- extend_next_word_start, "Extend to beginning of next word" ,
215
- extend_prev_word_start, "Extend to beginning of previous word" ,
216
- extend_next_long_word_start, "Extend to beginning of next long word" ,
217
- extend_prev_long_word_start, "Extend to beginning of previous long word" ,
214
+ extend_next_word_start, "Extend to start of next word" ,
215
+ extend_prev_word_start, "Extend to start of previous word" ,
216
+ extend_next_long_word_start, "Extend to start of next long word" ,
217
+ extend_prev_long_word_start, "Extend to start of previous long word" ,
218
218
extend_next_long_word_end, "Extend to end of next long word" ,
219
219
extend_next_word_end, "Extend to end of next word" ,
220
220
find_till_char, "Move till next occurrence of char" ,
@@ -225,7 +225,7 @@ impl MappableCommand {
225
225
find_prev_char, "Move to previous occurrence of char" ,
226
226
extend_till_prev_char, "Extend till previous occurrence of char" ,
227
227
extend_prev_char, "Extend to previous occurrence of char" ,
228
- repeat_last_motion, "repeat last motion(extend_next_char, extend_till_char, find_next_char, find_till_char...) " ,
228
+ repeat_last_motion, "Repeat last motion" ,
229
229
replace, "Replace with new char" ,
230
230
switch_case, "Switch (toggle) case" ,
231
231
switch_to_uppercase, "Switch to uppercase" ,
@@ -236,7 +236,7 @@ impl MappableCommand {
236
236
half_page_down, "Move half page down" ,
237
237
select_all, "Select whole document" ,
238
238
select_regex, "Select all regex matches inside selections" ,
239
- split_selection, "Split selection into subselections on regex matches" ,
239
+ split_selection, "Split selections on regex matches" ,
240
240
split_selection_on_newline, "Split selection on newlines" ,
241
241
search, "Search for regex pattern" ,
242
242
rsearch, "Reverse search for regex pattern" ,
@@ -245,20 +245,20 @@ impl MappableCommand {
245
245
extend_search_next, "Add next search match to selection" ,
246
246
extend_search_prev, "Add previous search match to selection" ,
247
247
search_selection, "Use current selection as search pattern" ,
248
- global_search, "Global Search in workspace folder" ,
248
+ global_search, "Global search in workspace folder" ,
249
249
extend_line, "Select current line, if already selected, extend to next line" ,
250
250
extend_line_above, "Select current line, if already selected, extend to previous line" ,
251
- extend_to_line_bounds, "Extend selection to line bounds (line-wise selection) " ,
252
- shrink_to_line_bounds, "Shrink selection to line bounds (line-wise selection) " ,
251
+ extend_to_line_bounds, "Extend selection to line bounds" ,
252
+ shrink_to_line_bounds, "Shrink selection to line bounds" ,
253
253
delete_selection, "Delete selection" ,
254
- delete_selection_noyank, "Delete selection, without yanking" ,
255
- change_selection, "Change selection (delete and enter insert mode) " ,
256
- change_selection_noyank, "Change selection (delete and enter insert mode, without yanking) " ,
257
- collapse_selection, "Collapse selection onto a single cursor" ,
254
+ delete_selection_noyank, "Delete selection without yanking" ,
255
+ change_selection, "Change selection" ,
256
+ change_selection_noyank, "Change selection without yanking" ,
257
+ collapse_selection, "Collapse selection into single cursor" ,
258
258
flip_selections, "Flip selection cursor and anchor" ,
259
- ensure_selections_forward, "Ensure the selection is in forward direction " ,
259
+ ensure_selections_forward, "Ensure all selections face forward" ,
260
260
insert_mode, "Insert before selection" ,
261
- append_mode, "Insert after selection (append) " ,
261
+ append_mode, "Append after selection" ,
262
262
command_mode, "Enter command mode" ,
263
263
file_picker, "Open file picker" ,
264
264
file_picker_in_current_directory, "Open file picker at current working directory" ,
@@ -272,7 +272,7 @@ impl MappableCommand {
272
272
workspace_diagnostics_picker, "Open workspace diagnostic picker" ,
273
273
last_picker, "Open last picker" ,
274
274
prepend_to_line, "Insert at start of line" ,
275
- append_to_line, "Insert at end of line" ,
275
+ append_to_line, "Append to end of line" ,
276
276
open_below, "Open new line below selection" ,
277
277
open_above, "Open new line above selection" ,
278
278
normal_mode, "Enter normal mode" ,
@@ -319,21 +319,21 @@ impl MappableCommand {
319
319
delete_char_forward, "Delete next char" ,
320
320
delete_word_backward, "Delete previous word" ,
321
321
delete_word_forward, "Delete next word" ,
322
- kill_to_line_start, "Delete content till the start of the line" ,
323
- kill_to_line_end, "Delete content till the end of the line" ,
322
+ kill_to_line_start, "Delete till start of line" ,
323
+ kill_to_line_end, "Delete till end of line" ,
324
324
undo, "Undo change" ,
325
325
redo, "Redo change" ,
326
326
earlier, "Move backward in history" ,
327
327
later, "Move forward in history" ,
328
- commit_undo_checkpoint, "Commit changes to a new checkpoint" ,
328
+ commit_undo_checkpoint, "Commit changes to new checkpoint" ,
329
329
yank, "Yank selection" ,
330
330
yank_joined_to_clipboard, "Join and yank selections to clipboard" ,
331
331
yank_main_selection_to_clipboard, "Yank main selection to clipboard" ,
332
332
yank_joined_to_primary_clipboard, "Join and yank selections to primary clipboard" ,
333
333
yank_main_selection_to_primary_clipboard, "Yank main selection to primary clipboard" ,
334
334
replace_with_yanked, "Replace with yanked text" ,
335
335
replace_selections_with_clipboard, "Replace selections by clipboard content" ,
336
- replace_selections_with_primary_clipboard, "Replace selections by primary clipboard content " ,
336
+ replace_selections_with_primary_clipboard, "Replace selections by primary clipboard" ,
337
337
paste_after, "Paste after selection" ,
338
338
paste_before, "Paste before selection" ,
339
339
paste_clipboard_after, "Paste clipboard after selections" ,
@@ -358,27 +358,27 @@ impl MappableCommand {
358
358
rotate_selection_contents_backward, "Rotate selections contents backward" ,
359
359
expand_selection, "Expand selection to parent syntax node" ,
360
360
shrink_selection, "Shrink selection to previously expanded syntax node" ,
361
- select_next_sibling, "Select the next sibling in the syntax tree" ,
362
- select_prev_sibling, "Select the previous sibling in the syntax tree" ,
361
+ select_next_sibling, "Select next sibling in syntax tree" ,
362
+ select_prev_sibling, "Select previous sibling in syntax tree" ,
363
363
jump_forward, "Jump forward on jumplist" ,
364
364
jump_backward, "Jump backward on jumplist" ,
365
- save_selection, "Save the current selection to the jumplist" ,
366
- jump_view_right, "Jump to the split to the right " ,
367
- jump_view_left, "Jump to the split to the left " ,
368
- jump_view_up, "Jump to the split above" ,
369
- jump_view_down, "Jump to the split below" ,
370
- swap_view_right, "Swap with the split to the right " ,
371
- swap_view_left, "Swap with the split to the left " ,
372
- swap_view_up, "Swap with the split above" ,
373
- swap_view_down, "Swap with the split below" ,
365
+ save_selection, "Save current selection to jumplist" ,
366
+ jump_view_right, "Jump to right split" ,
367
+ jump_view_left, "Jump to left split" ,
368
+ jump_view_up, "Jump to split above" ,
369
+ jump_view_down, "Jump to split below" ,
370
+ swap_view_right, "Swap with right split" ,
371
+ swap_view_left, "Swap with left split" ,
372
+ swap_view_up, "Swap with split above" ,
373
+ swap_view_down, "Swap with split below" ,
374
374
transpose_view, "Transpose splits" ,
375
375
rotate_view, "Goto next window" ,
376
376
hsplit, "Horizontal bottom split" ,
377
377
hsplit_new, "Horizontal bottom split scratch buffer" ,
378
378
vsplit, "Vertical right split" ,
379
379
vsplit_new, "Vertical right split scratch buffer" ,
380
380
wclose, "Close window" ,
381
- wonly, "Current window only " ,
381
+ wonly, "Close windows except current " ,
382
382
select_register, "Select register" ,
383
383
insert_register, "Insert register" ,
384
384
align_view_middle, "Align view middle" ,
@@ -414,21 +414,21 @@ impl MappableCommand {
414
414
dap_next, "Step to next" ,
415
415
dap_variables, "List variables" ,
416
416
dap_terminate, "End debug session" ,
417
- dap_edit_condition, "Edit condition of the breakpoint on the current line" ,
418
- dap_edit_log, "Edit log message of the breakpoint on the current line" ,
417
+ dap_edit_condition, "Edit breakpoint condition on current line" ,
418
+ dap_edit_log, "Edit breakpoint log message on current line" ,
419
419
dap_switch_thread, "Switch current thread" ,
420
420
dap_switch_stack_frame, "Switch stack frame" ,
421
421
dap_enable_exceptions, "Enable exception breakpoints" ,
422
422
dap_disable_exceptions, "Disable exception breakpoints" ,
423
423
shell_pipe, "Pipe selections through shell command" ,
424
- shell_pipe_to, "Pipe selections into shell command, ignoring command output" ,
425
- shell_insert_output, "Insert output of shell command before each selection " ,
426
- shell_append_output, "Append output of shell command after each selection " ,
424
+ shell_pipe_to, "Pipe selections into shell command ignoring output" ,
425
+ shell_insert_output, "Insert shell command output before selections " ,
426
+ shell_append_output, "Append shell command output after selections " ,
427
427
shell_keep_pipe, "Filter selections with shell predicate" ,
428
- suspend, "Suspend" ,
428
+ suspend, "Suspend and return to shell " ,
429
429
rename_symbol, "Rename symbol" ,
430
- increment, "Increment" ,
431
- decrement, "Decrement" ,
430
+ increment, "Increment item under cursor " ,
431
+ decrement, "Decrement item under cursor " ,
432
432
record_macro, "Record macro" ,
433
433
replay_macro, "Replay macro" ,
434
434
command_palette, "Open command pallete" ,
0 commit comments