From 9c7c528a0c550d9dccd73b15b55ecec1744cdc16 Mon Sep 17 00:00:00 2001 From: atagen Date: Sat, 21 Mar 2026 02:34:25 +1100 Subject: [PATCH] readme --- README.md | 5 +++++ inshellah.opam | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 README.md create mode 100644 inshellah.opam diff --git a/README.md b/README.md new file mode 100644 index 0000000..5c72067 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# inshellah + +## inshellah is a completions generator for nushell. + +see docs/ for more information. diff --git a/inshellah.opam b/inshellah.opam new file mode 100644 index 0000000..c3cc819 --- /dev/null +++ b/inshellah.opam @@ -0,0 +1,35 @@ +# This file is generated by dune, edit dune-project instead +opam-version: "2.0" +synopsis: "Nushell completions generator" +description: + "Inshellah parses manpages and --help switches to generate completions for nushell." +maintainer: ["atagen "] +authors: ["atagen "] +license: "GPL-3.0-or-later" +tags: ["shell" "completions" "nushell" "parser" "angstrom"] +homepage: "https://github.com/username/reponame" +bug-reports: "https://github.com/username/reponame/issues" +depends: [ + "ocaml" + "dune" {>= "3.20"} + "angstrom" + "angstrom-unix" + "ppx_inline_test" {with-test} + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://github.com/username/reponame.git" +x-maintenance-intent: ["(latest)"]