Skip to content

Commit

Permalink
feat: add exit key to inspect view
Browse files Browse the repository at this point in the history
  • Loading branch information
sxyazi committed Sep 24, 2023
1 parent e5bea48 commit faa50bb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion usage/configuration/keymap.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ If you haven't created and used your own configuration file yet, please see: [Co
- arrow:
- `-1`: Move the cursor up 1 line.
- `1`: Move the cursor down 1 line.
- inspect: Inspect the task.
- inspect: Inspect the task (press `q` to exit the inspect view).
- cancel: Cancel the task.
- help: Open the help menu.

Expand Down
12 changes: 6 additions & 6 deletions usage/configuration/yazi.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ text = [

Available parameters are as follows:

- exec (str): The command to open the selected files, with the following variables available:
- exec: The command to open the selected files, with the following variables available:
- `$n`: The N-th selected file, starting from 1
- `$@`: All selected files
- `foo`: Literal string to be passed
- block (bool): Open in a blocking manner. After setting this, Yazi will hide into a secondary screen and display the program on the main screen until it exits. During this time, it can receive I/O signals, which is useful for interactive programs.
- orphan (bool): Keep the process running even if Yazi has exited.
- block (Boolean): Open in a blocking manner. After setting this, Yazi will hide into a secondary screen and display the program on the main screen until it exits. During this time, it can receive I/O signals, which is useful for interactive programs.
- orphan (Boolean): Keep the process running even if Yazi has exited.

## open

Expand All @@ -98,9 +98,9 @@ rules = [

Available rule parameters are as follows:

- name (str): Glob expression for matching the file name. Case insensitive by default, add `\s` to the beginning to make it sensitive.
- mime (str): Glob expression for matching the MIME type. Case insensitive by default, add `\s` to the beginning to make it sensitive.
- use (str): Opener name corresponding to the names in the opener section.
- name (String): Glob expression for matching the file name. Case insensitive by default, add `\s` to the beginning to make it sensitive.
- mime (String): Glob expression for matching the MIME type. Case insensitive by default, add `\s` to the beginning to make it sensitive.
- use (String): Opener name corresponding to the names in the opener section.

## tasks

Expand Down

0 comments on commit faa50bb

Please sign in to comment.