├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .hlint.yaml ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── LICENSE ├── README.md ├── cabal.project ├── docs └── RELEASE_CHECKLIST.md ├── examples └── simple-grep │ ├── Main.lhs │ ├── README.md │ └── simple-grep.cabal ├── fourmolu.yaml ├── hie.yaml ├── images ├── demo-simple-grep.png ├── iris-dark-always.png ├── iris-dark.png └── iris-light.png ├── iris.cabal ├── src ├── Iris.hs └── Iris │ ├── App.hs │ ├── Browse.hs │ ├── Cli.hs │ ├── Cli │ ├── Browse.hs │ ├── Colour.hs │ ├── Interactive.hs │ ├── Internal.hs │ ├── ParserInfo.hs │ └── Version.hs │ ├── Colour.hs │ ├── Colour │ ├── Formatting.hs │ └── Mode.hs │ ├── Env.hs │ ├── Interactive.hs │ ├── Interactive │ └── Question.hs │ ├── Settings.hs │ └── Tool.hs ├── stack.yaml └── test ├── Spec.hs └── Test ├── Iris.hs └── Iris ├── Cli.hs ├── Colour.hs ├── Colour └── Mode.hs ├── Common.hs ├── Interactive.hs ├── Interactive └── Question.hs └── Tool.hs /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @chshersh 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/.gitignore -------------------------------------------------------------------------------- /.hlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/.hlint.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [chshersh] 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/README.md -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/cabal.project -------------------------------------------------------------------------------- /docs/RELEASE_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/docs/RELEASE_CHECKLIST.md -------------------------------------------------------------------------------- /examples/simple-grep/Main.lhs: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /examples/simple-grep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/examples/simple-grep/README.md -------------------------------------------------------------------------------- /examples/simple-grep/simple-grep.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/examples/simple-grep/simple-grep.cabal -------------------------------------------------------------------------------- /fourmolu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/fourmolu.yaml -------------------------------------------------------------------------------- /hie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/hie.yaml -------------------------------------------------------------------------------- /images/demo-simple-grep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/images/demo-simple-grep.png -------------------------------------------------------------------------------- /images/iris-dark-always.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/images/iris-dark-always.png -------------------------------------------------------------------------------- /images/iris-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/images/iris-dark.png -------------------------------------------------------------------------------- /images/iris-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/images/iris-light.png -------------------------------------------------------------------------------- /iris.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/iris.cabal -------------------------------------------------------------------------------- /src/Iris.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris.hs -------------------------------------------------------------------------------- /src/Iris/App.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/App.hs -------------------------------------------------------------------------------- /src/Iris/Browse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/Browse.hs -------------------------------------------------------------------------------- /src/Iris/Cli.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/Cli.hs -------------------------------------------------------------------------------- /src/Iris/Cli/Browse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/Cli/Browse.hs -------------------------------------------------------------------------------- /src/Iris/Cli/Colour.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/Cli/Colour.hs -------------------------------------------------------------------------------- /src/Iris/Cli/Interactive.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/Cli/Interactive.hs -------------------------------------------------------------------------------- /src/Iris/Cli/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/Cli/Internal.hs -------------------------------------------------------------------------------- /src/Iris/Cli/ParserInfo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/Cli/ParserInfo.hs -------------------------------------------------------------------------------- /src/Iris/Cli/Version.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/Cli/Version.hs -------------------------------------------------------------------------------- /src/Iris/Colour.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/Colour.hs -------------------------------------------------------------------------------- /src/Iris/Colour/Formatting.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/Colour/Formatting.hs -------------------------------------------------------------------------------- /src/Iris/Colour/Mode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/Colour/Mode.hs -------------------------------------------------------------------------------- /src/Iris/Env.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/Env.hs -------------------------------------------------------------------------------- /src/Iris/Interactive.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/Interactive.hs -------------------------------------------------------------------------------- /src/Iris/Interactive/Question.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/Interactive/Question.hs -------------------------------------------------------------------------------- /src/Iris/Settings.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/Settings.hs -------------------------------------------------------------------------------- /src/Iris/Tool.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/src/Iris/Tool.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-20.5 2 | -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/test/Spec.hs -------------------------------------------------------------------------------- /test/Test/Iris.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/test/Test/Iris.hs -------------------------------------------------------------------------------- /test/Test/Iris/Cli.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/test/Test/Iris/Cli.hs -------------------------------------------------------------------------------- /test/Test/Iris/Colour.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/test/Test/Iris/Colour.hs -------------------------------------------------------------------------------- /test/Test/Iris/Colour/Mode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/test/Test/Iris/Colour/Mode.hs -------------------------------------------------------------------------------- /test/Test/Iris/Common.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/test/Test/Iris/Common.hs -------------------------------------------------------------------------------- /test/Test/Iris/Interactive.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/test/Test/Iris/Interactive.hs -------------------------------------------------------------------------------- /test/Test/Iris/Interactive/Question.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/test/Test/Iris/Interactive/Question.hs -------------------------------------------------------------------------------- /test/Test/Iris/Tool.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshersh/iris/HEAD/test/Test/Iris/Tool.hs --------------------------------------------------------------------------------