mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
don't quote spaces in command arguments
This commit is contained in:
@ -152,8 +152,6 @@ option.
|
|||||||
|
|
||||||
### Parsers
|
### Parsers
|
||||||
|
|
||||||
<nobr>
|
|
||||||
|
|
||||||
| Argument | Command or Filetype | Documentation |
|
| Argument | Command or Filetype | Documentation |
|
||||||
|-------------------|---------------------------------------------------------|----------------------------------------------------------------------------|
|
|-------------------|---------------------------------------------------------|----------------------------------------------------------------------------|
|
||||||
| `--acpi` | `acpi` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/acpi) |
|
| `--acpi` | `acpi` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/acpi) |
|
||||||
@ -315,8 +313,6 @@ option.
|
|||||||
| `-B` | `--bash-comp` | Generate Bash shell completion script ([more info](https://github.com/kellyjonbrazil/jc/wiki/Shell-Completions)) |
|
| `-B` | `--bash-comp` | Generate Bash shell completion script ([more info](https://github.com/kellyjonbrazil/jc/wiki/Shell-Completions)) |
|
||||||
| `-Z` | `--zsh-comp` | Generate Zsh shell completion script ([more info](https://github.com/kellyjonbrazil/jc/wiki/Shell-Completions)) |
|
| `-Z` | `--zsh-comp` | Generate Zsh shell completion script ([more info](https://github.com/kellyjonbrazil/jc/wiki/Shell-Completions)) |
|
||||||
|
|
||||||
</nobr>
|
|
||||||
|
|
||||||
### Slice
|
### Slice
|
||||||
Line slicing is supported using the `START:STOP` syntax similar to Python
|
Line slicing is supported using the `START:STOP` syntax similar to Python
|
||||||
slicing. This allows you to skip lines at the beginning and/or end of the
|
slicing. This allows you to skip lines at the beginning and/or end of the
|
||||||
|
@ -152,11 +152,9 @@ option.
|
|||||||
|
|
||||||
### Parsers
|
### Parsers
|
||||||
|
|
||||||
<nobr>
|
|
||||||
|
|
||||||
| Argument | Command or Filetype | Documentation |
|
| Argument | Command or Filetype | Documentation |
|
||||||
|-------------------|---------------------------------------------------------|----------------------------------------------------------------------------|{% for parser in parsers %}
|
|-------------------|---------------------------------------------------------|----------------------------------------------------------------------------|{% for parser in parsers %}
|
||||||
| `{{ "{:>15}".format(parser.argument) }}` | {{ "{:<55}".format(parser.description) }} | {{ "{:<74}".format("[details](https://kellyjonbrazil.github.io/jc/docs/parsers/" + parser.name + ")") }} |{% endfor %}
|
| {{ "{:>16}".format("`" + parser.argument) }}` | {{ "{:<55}".format(parser.description) }} | {{ "{:<74}".format("[details](https://kellyjonbrazil.github.io/jc/docs/parsers/" + parser.name + ")") }} |{% endfor %}
|
||||||
|
|
||||||
### Options
|
### Options
|
||||||
|
|
||||||
@ -177,8 +175,6 @@ option.
|
|||||||
| `-B` | `--bash-comp` | Generate Bash shell completion script ([more info](https://github.com/kellyjonbrazil/jc/wiki/Shell-Completions)) |
|
| `-B` | `--bash-comp` | Generate Bash shell completion script ([more info](https://github.com/kellyjonbrazil/jc/wiki/Shell-Completions)) |
|
||||||
| `-Z` | `--zsh-comp` | Generate Zsh shell completion script ([more info](https://github.com/kellyjonbrazil/jc/wiki/Shell-Completions)) |
|
| `-Z` | `--zsh-comp` | Generate Zsh shell completion script ([more info](https://github.com/kellyjonbrazil/jc/wiki/Shell-Completions)) |
|
||||||
|
|
||||||
</nobr>
|
|
||||||
|
|
||||||
### Slice
|
### Slice
|
||||||
Line slicing is supported using the `START:STOP` syntax similar to Python
|
Line slicing is supported using the `START:STOP` syntax similar to Python
|
||||||
slicing. This allows you to skip lines at the beginning and/or end of the
|
slicing. This allows you to skip lines at the beginning and/or end of the
|
||||||
|
Reference in New Issue
Block a user