mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
Make the pluralization of files and selections consistent to emphasize the 1-to-1 relation between files and selections. The prior wording with plural "files" and singular "selection" can mislead users into thinking the command can open multiple files from a single selection.
This commit is contained in:
parent
c8e58304bf
commit
00d681cc69
@ -205,7 +205,7 @@ #### Goto mode
|
|||||||
| ----- | ----------- | ------- |
|
| ----- | ----------- | ------- |
|
||||||
| `g` | Go to line number `<n>` else start of file | `goto_file_start` |
|
| `g` | Go to line number `<n>` else start of file | `goto_file_start` |
|
||||||
| `e` | Go to the end of the file | `goto_last_line` |
|
| `e` | Go to the end of the file | `goto_last_line` |
|
||||||
| `f` | Go to files in the selection | `goto_file` |
|
| `f` | Go to files in the selections | `goto_file` |
|
||||||
| `h` | Go to the start of the line | `goto_line_start` |
|
| `h` | Go to the start of the line | `goto_line_start` |
|
||||||
| `l` | Go to the end of the line | `goto_line_end` |
|
| `l` | Go to the end of the line | `goto_line_end` |
|
||||||
| `s` | Go to first non-whitespace character of the line | `goto_first_nonwhitespace` |
|
| `s` | Go to first non-whitespace character of the line | `goto_first_nonwhitespace` |
|
||||||
@ -253,8 +253,8 @@ #### Window mode
|
|||||||
| `w`, `Ctrl-w` | Switch to next window | `rotate_view` |
|
| `w`, `Ctrl-w` | Switch to next window | `rotate_view` |
|
||||||
| `v`, `Ctrl-v` | Vertical right split | `vsplit` |
|
| `v`, `Ctrl-v` | Vertical right split | `vsplit` |
|
||||||
| `s`, `Ctrl-s` | Horizontal bottom split | `hsplit` |
|
| `s`, `Ctrl-s` | Horizontal bottom split | `hsplit` |
|
||||||
| `f` | Go to files in the selection in horizontal splits | `goto_file` |
|
| `f` | Go to files in the selections in horizontal splits | `goto_file` |
|
||||||
| `F` | Go to files in the selection in vertical splits | `goto_file` |
|
| `F` | Go to files in the selections in vertical splits | `goto_file` |
|
||||||
| `h`, `Ctrl-h`, `Left` | Move to left split | `jump_view_left` |
|
| `h`, `Ctrl-h`, `Left` | Move to left split | `jump_view_left` |
|
||||||
| `j`, `Ctrl-j`, `Down` | Move to split below | `jump_view_down` |
|
| `j`, `Ctrl-j`, `Down` | Move to split below | `jump_view_down` |
|
||||||
| `k`, `Ctrl-k`, `Up` | Move to split above | `jump_view_up` |
|
| `k`, `Ctrl-k`, `Up` | Move to split above | `jump_view_up` |
|
||||||
|
@ -337,9 +337,9 @@ pub fn doc(&self) -> &str {
|
|||||||
goto_implementation, "Goto implementation",
|
goto_implementation, "Goto implementation",
|
||||||
goto_file_start, "Goto line number <n> else file start",
|
goto_file_start, "Goto line number <n> else file start",
|
||||||
goto_file_end, "Goto file end",
|
goto_file_end, "Goto file end",
|
||||||
goto_file, "Goto files/URLs in selection",
|
goto_file, "Goto files/URLs in selections",
|
||||||
goto_file_hsplit, "Goto files in selection (hsplit)",
|
goto_file_hsplit, "Goto files in selections (hsplit)",
|
||||||
goto_file_vsplit, "Goto files in selection (vsplit)",
|
goto_file_vsplit, "Goto files in selections (vsplit)",
|
||||||
goto_reference, "Goto references",
|
goto_reference, "Goto references",
|
||||||
goto_window_top, "Goto window top",
|
goto_window_top, "Goto window top",
|
||||||
goto_window_center, "Goto window center",
|
goto_window_center, "Goto window center",
|
||||||
|
Loading…
Reference in New Issue
Block a user