You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extLauncher/Program.fs
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -335,12 +335,18 @@ module Program =
335
335
app.Configure(fun conf ->
336
336
conf.SetApplicationName(IO.AppName)|> ignore
337
337
338
-
conf.AddCommand<PromptCommand>("prompt").WithDescription("[italic](default command)[/] Type to search. Arrows Up/Down to navigate. Enter to launch. Escape to quit.")
338
+
conf
339
+
.AddCommand<PromptCommand>("prompt")
340
+
.WithDescription(
341
+
"[italic](default command)[/] Type to search. Arrows Up/Down to navigate. Enter to launch. Escape to quit."
342
+
)
339
343
|> ignore
340
344
341
345
conf
342
346
.AddCommand<IndexCommand>("index")
343
-
.WithDescription("Indexes all files recursively with a specific pattern which can be a wildcard [italic](default)[/] or a regular expression.")
347
+
.WithDescription(
348
+
"Indexes all files recursively with a specific pattern which can be a wildcard [italic](default)[/] or a regular expression."
349
+
)
344
350
|> ignore
345
351
346
352
conf.AddBranch<LauncherSettings>(
@@ -359,7 +365,9 @@ module Program =
359
365
conf.AddCommand<DeindexCommand>("deindex").WithDescription("Clears the current index.")
360
366
|> ignore
361
367
362
-
conf.AddCommand<InfoCommand>("info").WithDescription("Prints the current pattern and all the indexed files.")
368
+
conf
369
+
.AddCommand<InfoCommand>("info")
370
+
.WithDescription("Prints the current pattern and all the indexed files.")
363
371
|> ignore
364
372
365
373
conf.AddCommand<RefreshCommand>("refresh").WithDescription("Updates the current index.")
0 commit comments