mirror of
https://github.com/TECHNOFAB11/pay-respects.git
synced 2025-12-11 22:10:09 +01:00
doc: update to 0.5
This commit is contained in:
parent
309129ab66
commit
6dfd233bd7
3 changed files with 73 additions and 66 deletions
71
README.md
71
README.md
|
|
@ -3,7 +3,7 @@
|
|||
Typed a wrong command? Pay Respects will try to correct your wrong console command by simply pressing `F`!
|
||||
|
||||
- 🚀 **Blazing fast suggestion**: You won't notice any delay for asking suggestions!
|
||||
- ✏️ **Easy to write rules**: You don't need to know Rust. The rules are written in a TOML file that is simple to work with and evaluated to Rust code upon compilation!
|
||||
- ✏️ **Easy to write rules**: You don't need to know Rust. The rules are written in a TOML file that is simple to work with and can be evaluated to Rust code upon compilation! Optional runtime user defined rules can be enabled starting from 0.5!
|
||||
- 🎯 **Accurate results**: Suggestions must pass several conditions in order to be prompted to the user, no `sudo` suggestions when you are using `doas`!
|
||||
- 🪶 **Tiny binary size**: Not even 1MB!
|
||||
|
||||
|
|
@ -50,9 +50,10 @@ paru -S pay-respects-bin # binary version
|
|||
Or if you have cargo installed:
|
||||
```shell
|
||||
# install from crates.io
|
||||
cargo install pay-respects
|
||||
# enabling runtime-rules is optional
|
||||
cargo install pay-respects --features=runtime-rules
|
||||
|
||||
# clone from git and install, suitable for adding custom rules
|
||||
# clone from git and install, suitable for adding custom compile-time rules
|
||||
git clone --depth 1 https://github.com/iffse/pay-respects
|
||||
cd pay-respects
|
||||
cargo install --path .
|
||||
|
|
@ -66,69 +67,9 @@ Alternatively, you can download Linux binary from [releases](https://github.com/
|
|||
|
||||
## Rule Files
|
||||
|
||||
Rule files are parsed at compilation. Everything in rule files is converted to Rust code before compiling. You don't have to know the project structure nor Rust to write the rules!
|
||||
See [writing rules](./rules.md) for how to write rules.
|
||||
|
||||
If only rules are changed, cargo won't recompile the project because Rust code were intact. You will have to notify it manually by:
|
||||
```shell
|
||||
touch src/rules.rs && cargo build
|
||||
```
|
||||
|
||||
Syntax of a rule file (will be read by simply placing the file under [rules](./rules)):
|
||||
```toml
|
||||
# this field should be the name of the command
|
||||
command = "world"
|
||||
|
||||
# you can add as many `[[match_err]]` section as you want
|
||||
[[match_err]]
|
||||
# the suggestion of this section will be used for the following patterns of the error output
|
||||
# note that the error is formatted to lowercase
|
||||
pattern = [
|
||||
"pattern 1",
|
||||
"pattern 2"
|
||||
]
|
||||
# this will change the first argument to `fix`, while keeping the rest intact
|
||||
suggest = [
|
||||
'''
|
||||
{{command[0]}} fix {{command[2:]}} '''
|
||||
]
|
||||
|
||||
[[match_err]]
|
||||
pattern = [
|
||||
"pattern 1"
|
||||
]
|
||||
# this will add a `sudo` before the command if:
|
||||
# - the `sudo` is found by `command -v`
|
||||
# - the last command does not contain `sudo`
|
||||
suggest = [
|
||||
'''
|
||||
#[executable(sudo), !cmd_contains(sudo)]
|
||||
sudo {{command}} '''
|
||||
]
|
||||
```
|
||||
|
||||
The placeholder is evaluated as following:
|
||||
|
||||
- `{{command}}`: All the command without any modification
|
||||
- `{{command[1]}}`: The first argument of the command (the command itself has index of 0)
|
||||
- `{{command[2:5]}}`: The second to fifth arguments. If any of the side is not specified, then it defaults to the start (if it is left) or the end (if it is right).
|
||||
- `{{typo[2](fix1, fix2)}}`: This will try to change the second argument to candidates in the parenthesis. The argument in parentheses must have at least 2 values. Single arguments are reserved for specific matches, for instance, `path` to search all commands found in the `$PATH` environment, or the `{{shell}}` placeholder, among others.
|
||||
- `{{opt::<Regular Expression>}}`: Optional patterns found in the command with RegEx (see RegEx crate for syntax). Note that all patterns matching this placeholder will not take place when indexing.
|
||||
- `{{cmd::<Regular Expression>}}`: Get the matching pattern from the last command. Unlike `{{opt}}`, this won't remove the string after matching
|
||||
- `{{err::<Regular Expression}}`: Get the matching patterns from the error message.
|
||||
- `{{shell(<shell commands>)}}`: Replace with the output of the shell command. This placeholder can be used along `{{typo}}` as its only argument, where each newline will be evaluated to a candidate.
|
||||
|
||||
Suggestions can have additional conditions to check. To specify conditions, add a `#[...]` at the first line (just like derive macros in Rust). Available conditions:
|
||||
|
||||
- `executable`: Check whether the argument can be found by `which`
|
||||
- `cmd_contains`: Check whether the last user input contains the argument
|
||||
- `err_contains`: Check whether the error of the command contains the argument
|
||||
- `length`: Check whether the given command has the length of the argument
|
||||
- `min_length`: Check whether the given command has at least the length of the argument
|
||||
- `max_length`: Check whether the given command has at most the length of the argument
|
||||
|
||||
For locale other than English, be aware that patterns should be the output having `LC_ALL=C` environment variable.
|
||||
|
||||
## Current Progress
|
||||
## Contributing
|
||||
|
||||
Current option to write rules should cover most of the cases.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue