Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
fcc8f21
[GenerateDocCReference] Improve filtering and categorization of argum…
Chamepp Apr 3, 2025
806544c
fix: handle the assignment of the default sectionTitle value in the g…
Chamepp Apr 3, 2025
49f9f69
fix: handling section titles in the GenerateDocc extension
Chamepp Apr 12, 2025
fa6f077
refactor: update markdown headers to align with DocC formatting
Chamepp Apr 20, 2025
fc96cbe
chore: resolve merge conflicts with upstream/main
Chamepp May 8, 2025
ad95073
fix: solve merge conflict
Chamepp Jun 24, 2025
7659317
fix: update argument categorization logic to match ArgumentParser sta…
Chamepp Jul 1, 2025
2748c0d
fix: update snapshots and solve merge conflict
Chamepp Aug 20, 2025
2d5dcbc
Merge branch 'main' into dev
Chamepp Sep 13, 2025
e8a3720
fix: use monospaced code style for arguments, options, and flags in D…
Chamepp Sep 30, 2025
347fbd6
fix: move colon outside of formatted elements in term lists
Chamepp Sep 30, 2025
2bc6684
fix: remove unnecessary italics from argument abstracts
Chamepp Sep 30, 2025
4679e8a
fix: refine argument rendering by removing unnecessary newlines
Chamepp Sep 30, 2025
3ae506e
refactor: use `let` instead of `var` to signal immutability
Chamepp Sep 30, 2025
2be475e
refactor: rename assignSectionTitle(to:) to sectionTitle(for:) for cl…
Chamepp Sep 30, 2025
71d5903
refactor: make sectionTitle(for:) a fileprivate computed property on …
Chamepp Sep 30, 2025
0b84e4c
fix: align default subcommands abstract with CLI --help output
Chamepp Sep 30, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,18 @@
color --fav=<fav> [--second=<second>] [--help]
```

- term **--fav=\<fav\>**:
### Options

*Your favorite color.*


- term **--second=\<second\>**:

*Your second favorite color.*
- term `--fav=\<fav\>`:
Your favorite color.

- term `--second=\<second\>`:
Your second favorite color.
This is optional.


- term **--help**:

*Show help information.*

- term `--help`:
Show help information.

## color.help

Expand All @@ -31,9 +27,7 @@ Show subcommand help information.
color help [<subcommands>...]
```

- term **subcommands**:




### Arguments

- term `subcommands`:
*Show help information.*
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,18 @@
color --fav=<fav> [--second=<second>] [--help]
```

**--fav=\<fav\>:**
### Options

*Your favorite color.*


**--second=\<second\>:**

*Your second favorite color.*
**--fav=\<fav\>**:
Your favorite color.

**--second=\<second\>**:
Your second favorite color.
This is optional.


**--help:**

*Show help information.*

**--help**:
Show help information.

## color.help

Expand All @@ -31,9 +27,7 @@ Show subcommand help information.
color help [<subcommands>...]
```

**subcommands:**




### Arguments

**subcommands**:
*Show help information.*
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,21 @@ count-lines [<input-file>] [--prefix=<prefix>] [--verbose]
[--help]
```

- term **input-file**:
### Arguments

*A file to count lines in. If omitted, counts the lines of stdin.*
- term `input-file`:
A file to count lines in. If omitted, counts the lines of stdin.

### Options

- term **--prefix=\<prefix\>**:
- term `--prefix=\<prefix\>`:
Only count lines with this prefix.

*Only count lines with this prefix.*


- term **--verbose**:

*Include extra information in the output.*


- term **--help**:

*Show help information.*
- term `--verbose`:
Include extra information in the output.

- term `--help`:
Show help information.

## count-lines.help

Expand All @@ -35,9 +31,7 @@ Show subcommand help information.
count-lines help [<subcommands>...]
```

- term **subcommands**:




### Arguments

- term `subcommands`:
*Show help information.*
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,21 @@
count-lines [<input-file>] [--prefix=<prefix>] [--verbose] [--help]
```

**input-file:**
### Arguments

*A file to count lines in. If omitted, counts the lines of stdin.*
**input-file**:
A file to count lines in. If omitted, counts the lines of stdin.

### Options

**--prefix=\<prefix\>:**
**--prefix=\<prefix\>**:
Only count lines with this prefix.

*Only count lines with this prefix.*


**--verbose:**

*Include extra information in the output.*


**--help:**

*Show help information.*
**--verbose**:
Include extra information in the output.

**--help**:
Show help information.

## count-lines.help

Expand All @@ -34,9 +30,7 @@ Show subcommand help information.
count-lines help [<subcommands>...]
```

**subcommands:**




### Arguments

**subcommands**:
*Show help information.*
Loading