v1.0.2: arrow keys, start menu paging support
key press convenience methods, fix logo, docs, add more chars
This commit is contained in:
@@ -2,8 +2,8 @@ Barebones file explorer.
|
||||
|
||||
## Navigation
|
||||
|
||||
- `j`: Move down
|
||||
- `k`: Move up
|
||||
- `j` (or down arrow): Move down
|
||||
- `k` (or up arrow): Move up
|
||||
- `i`: See info about current file / directory (press any key to escape info screen)
|
||||
- `Enter`: Go into directory
|
||||
|
||||
|
||||
@@ -29,8 +29,8 @@ Tab completion is supported for the `<file>` argument.
|
||||
- `f<char>`
|
||||
- `F<char>`
|
||||
- `x`
|
||||
- `h`, `j`, `k`, `l`
|
||||
- `<num>h`, `<num>j`, `<num>k`, `<num>l`
|
||||
- `h` (or left arrow), `j` (or down arrow), `k` (or up arrow), `l` (or right arrow)
|
||||
- `<num>h`, `<num>j` (or down arrow), `<num>k` (or up arrow), `<num>l`
|
||||
- `0`, `^`, `$`
|
||||
|
||||
### Malvim Specific
|
||||
|
||||
@@ -2,9 +2,8 @@ The start menu, which can be opened and closed with the [Alt+s shortcut](../syst
|
||||
|
||||
## Navigation
|
||||
|
||||
Use the 'j' and 'k' keys to move down and up respectively. Going down past the last option returns the selection to the first option, and vice versa (it loops).
|
||||
Use the 'j' and 'k' keys to move down and up respectively. The up and down arrow keys can also be used. Going down past the last option returns the selection to the first option, and vice versa (it loops).
|
||||
|
||||
Hitting the 'enter' key will either open a subfolder containing window-likes, if a category is selected, or the corresponding window-like, if a window-like is selected. It may also exit a subfolder and return to the category selection if "Back" is selected and 'enter' is hit. There is another special case: hitting 'enter' while the "Logout" option is selected will, as the name implies, logout and return to the lock screen (this does not log out of the Linux user!).
|
||||
|
||||
For faster navigation, hitting any lower-case letter (besides 'j' and 'k') will move the selection to the next option that starts with that letter (non-looping). For example, when first opening the start menu, hitting 'e' will move the selection to "Editing". Hitting any upper-case letter will move the selection to any previous option that starts with that letter (also non-looping). For example, when initially opening the start menu, the selected option is "About". After hitting 'j' (moving down), hitting 'A' will return the selection to "About".
|
||||
|
||||
|
||||
@@ -8,8 +8,8 @@ The terminal starts off in INPUT mode, which allows entering commands to run. If
|
||||
|
||||
In INPUT mode, commands can be freely typed. There are a few special control sequences:
|
||||
|
||||
- `ctrl+p`: Equivalent to the up arrow in most terminals. Brings up the previous command in the command history, and so on.
|
||||
- `ctrl+n`: Equivalent to the down arrow in most terminals. Either clears the current input if not in a previous command, else brings up the next command in the command history.
|
||||
- `ctrl+p` (or up arrow): Equivalent to the up arrow in most terminals. Brings up the previous command in the command history, and so on.
|
||||
- `ctrl+n` (or down arrow): Equivalent to the down arrow in most terminals. Either clears the current input if not in a previous command, else brings up the next command in the command history.
|
||||
|
||||
Tab completion is also supported, though only for file/directory paths.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user