-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
52 changed files
with
977 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"list":["7z","arch","b2sum","b3sum","base32","base64","basename","basenc","bun","cargo","chfs","choco","cksum","comm","conda","csplit","cut","date","dd","deno","df","dircolors","dirname","docker","du","env","factor","fnm","git","kubectl","ngrok","npm","nrm","nvm","pip","pnpm","psc","python","scoop","volta","winget","wsl","wt","yarn"]} | ||
{"list":["7z","arch","b2sum","b3sum","base32","base64","basename","basenc","bun","cargo","chfs","choco","cksum","comm","conda","csplit","cut","date","dd","deno","df","dircolors","dirname","docker","du","env","factor","fmt","fnm","fold","git","hashsum","head","join","kubectl","link","ln","ngrok","npm","nrm","nvm","pip","pnpm","psc","python","scoop","volta","winget","wsl","wt","yarn"]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"language": [ | ||
"en-US" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
5b3a6c0d-3641-42d3-b801-ce08746c2bdb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
{ | ||
"options": [ | ||
{ | ||
"name": "-c", | ||
"alias": [ | ||
"--crown-margin" | ||
], | ||
"tip": [ | ||
"First and second line of paragraph may have different indentations,\n", | ||
"in which case the first line's indentation is preserved, and each subsequent line's indentation matches the second line." | ||
] | ||
}, | ||
{ | ||
"name": "-t", | ||
"alias": [ | ||
"--tagged-paragraph" | ||
], | ||
"tip": "Like -c, except that the first and second line of a paragraph *must* have different indentation or they are treated as separate paragraphs." | ||
}, | ||
{ | ||
"name": "-m", | ||
"alias": [ | ||
"--preserve-headers" | ||
], | ||
"tip": [ | ||
"Attempt to detect and preserve mail headers in the input.\n", | ||
"Be careful when combining this flag with -p." | ||
] | ||
}, | ||
{ | ||
"name": "-s", | ||
"alias": [ | ||
"--split-only" | ||
], | ||
"tip": "Split lines only, do not reflow." | ||
}, | ||
{ | ||
"name": "-u", | ||
"alias": [ | ||
"--uniform-spacing" | ||
], | ||
"tip": [ | ||
"Insert exactly one space between words, and two between sentences.\n", | ||
"Sentence breaks in the input are detected as [?!.] followed by two spaces or a newline;\n", | ||
"other punctuation is not interpreted as a sentence break." | ||
] | ||
}, | ||
{ | ||
"name": "-p", | ||
"alias": [ | ||
"--prefix" | ||
], | ||
"symbol": "WriteSpaceTab", | ||
"tip": [ | ||
"U: -p|--prefix <PREFIX>\n", | ||
"Reformat only lines beginning with PREFIX, reattaching PREFIX to reformatted lines.\n", | ||
"Unless -x is specified, leading whitespace will be ignored when matching PREFIX." | ||
] | ||
}, | ||
{ | ||
"name": "-P", | ||
"alias": [ | ||
"--skip-prefix" | ||
], | ||
"symbol": "WriteSpaceTab", | ||
"tip": [ | ||
"U: -P|--skip-prefix <PSKIP>\n", | ||
"Do not reformat lines beginning with PSKIP.\n", | ||
"Unless -X is specified, leading whitespace will be ignored when matching PSKIP" | ||
] | ||
}, | ||
{ | ||
"name": "-x", | ||
"alias": [ | ||
"--exact-prefix" | ||
], | ||
"tip": "PREFIX must match at the beginning of the line with no preceding whitespace." | ||
}, | ||
{ | ||
"name": "-X", | ||
"alias": [ | ||
"--exact-skip-prefix" | ||
], | ||
"tip": "PSKIP must match at the beginning of the line with no preceding whitespace." | ||
}, | ||
{ | ||
"name": "-w", | ||
"alias": [ | ||
"--width" | ||
], | ||
"symbol": "WriteSpaceTab", | ||
"tip": [ | ||
"U: -w|--width <WIDTH>\n", | ||
"Fill output lines up to a maximum of WIDTH columns, default 75.\n", | ||
"This can be specified as a negative number in the first argument." | ||
] | ||
}, | ||
{ | ||
"name": "-g", | ||
"alias": [ | ||
"--goal" | ||
], | ||
"symbol": "WriteSpaceTab", | ||
"tip": [ | ||
"U: -g|--goal <GOAL>\n", | ||
"Goal width, default of 93% of WIDTH.\n", | ||
"Must be less than or equal to WIDTH." | ||
] | ||
}, | ||
{ | ||
"name": "-q", | ||
"alias": [ | ||
"--quick" | ||
], | ||
"tip": "Break lines more quickly at the expense of a potentially more ragged appearance." | ||
}, | ||
{ | ||
"name": "-T", | ||
"alias": [ | ||
"--tab-width" | ||
], | ||
"tip": [ | ||
"U: -T|--tab-width <TABWIDTH>\n", | ||
"Treat tabs as TABWIDTH spaces for determining line length, default 8.\n", | ||
"Note that this is used only for calculating line lengths; tabs are preserved in the output." | ||
] | ||
}, | ||
{ | ||
"name": "--version", | ||
"alias": [ | ||
"-V" | ||
], | ||
"tip": "Show the version." | ||
} | ||
], | ||
"common_options": [ | ||
{ | ||
"name": "--help", | ||
"alias": [ | ||
"-h" | ||
], | ||
"tip": "Show help." | ||
} | ||
], | ||
"info": { | ||
"completion_info": { | ||
"url": "https://github.com/uutils/coreutils", | ||
"description": [ | ||
"Reformat paragraphs from input files (or stdin) to stdout.\n", | ||
"Come from [uutils/coreutils](https://github.com/uutils/coreutils)" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"options": [ | ||
{ | ||
"name": "--version", | ||
"alias": [ | ||
"-V" | ||
], | ||
"tip": "显示版本信息" | ||
} | ||
], | ||
"common_options": [ | ||
{ | ||
"name": "--help", | ||
"alias": [ | ||
"-h" | ||
], | ||
"tip": "显示帮助信息" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"language": [ | ||
"en-US" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
82b81249-93b1-4f55-be12-1a36eabad43c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"options": [ | ||
{ | ||
"name": "-b", | ||
"alias": [ | ||
"--bytes" | ||
], | ||
"tip": [ | ||
"count using bytes rather than columns\n", | ||
"(meaning control characters such as newline are not treated specially)" | ||
] | ||
}, | ||
{ | ||
"name": "-s", | ||
"alias": [ | ||
"--spaces" | ||
], | ||
"tip": "break lines at word boundaries rather than a hard cut-off" | ||
}, | ||
{ | ||
"name": "-w", | ||
"alias": [ | ||
"--width" | ||
], | ||
"symbol": "WriteSpaceTab", | ||
"tip": [ | ||
"U: -w|--width <WIDTH>\n", | ||
"set WIDTH as the maximum line width rather than 80" | ||
] | ||
}, | ||
{ | ||
"name": "--version", | ||
"alias": [ | ||
"-V" | ||
], | ||
"tip": "Show the version." | ||
} | ||
], | ||
"common_options": [ | ||
{ | ||
"name": "--help", | ||
"alias": [ | ||
"-h" | ||
], | ||
"tip": "Show help." | ||
} | ||
], | ||
"info": { | ||
"completion_info": { | ||
"url": "https://github.com/uutils/coreutils", | ||
"description": [ | ||
"Writes each file (or standard input if no files are given) to standard output whilst breaking long lines.\n", | ||
"Come from [uutils/coreutils](https://github.com/uutils/coreutils)" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"options": [ | ||
{ | ||
"name": "--version", | ||
"alias": [ | ||
"-V" | ||
], | ||
"tip": "显示版本信息" | ||
} | ||
], | ||
"common_options": [ | ||
{ | ||
"name": "--help", | ||
"alias": [ | ||
"-h" | ||
], | ||
"tip": "显示帮助信息" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"language": [ | ||
"en-US" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
6f68397d-b515-42ec-9bac-0c1a67330bf7 |
Oops, something went wrong.