File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,12 @@ export async function setup(): Promise<Argv> {
118
118
type : 'boolean' ,
119
119
default : defaults . highlightCode ,
120
120
} )
121
+ . option ( 'colorScheme' , {
122
+ alias : 'cs' ,
123
+ describe : 'Color scheme of HTML output' ,
124
+ choices : choices . colorScheme ,
125
+ default : defaults . colorScheme ,
126
+ } )
121
127
. option ( 'summary' , {
122
128
alias : 'su' ,
123
129
describe : 'Show files summary' ,
@@ -234,12 +240,6 @@ export async function setup(): Promise<Argv> {
234
240
type : 'array' ,
235
241
default : defaults . ignore ,
236
242
} )
237
- . option ( 'colorScheme' , {
238
- alias : 'cs' ,
239
- describe : 'Color scheme of HTML output' ,
240
- choices : choices . colorScheme ,
241
- default : defaults . colorScheme ,
242
- } )
243
243
. example (
244
244
'diff2html -s line -f html -d word -i command -o preview -- -M HEAD~1' ,
245
245
'diff last commit, line by line, word comparison between lines,' +
You can’t perform that action at this time.
0 commit comments