iris-0.1.0.0: Haskell CLI framework
Copyright(c) 2022 Dmitrii Kovanikov
LicenseMPL-2.0
MaintainerDmitrii Kovanikov <kovanikov@gmail.com>
StabilityExperimental
PortabilityPortable
Safe HaskellSafe-Inferred
LanguageHaskell2010

Iris.Cli.Browse

Description

CLI options parsing for --browse and --browse=FILE_PATH.

Since: 0.0.0.0

Synopsis

Documentation

browseP Source #

Arguments

:: String

Flag description

-> Parser Bool 

A CLI option parser yields a boolean value if a file needs to be open in a browser.

Use openInBrowser to open the file of your choice in a browser.

Since: 0.0.0.0

browseFileP Source #

Arguments

:: String

Flag description

-> Parser FilePath 

A CLI option parser for a FilePath that needs to be open with a browser.

Use openInBrowser to open the passed file in a browser.

Since: 0.0.0.0