Juan Fraire
Juan Fraire
Bump
same here
Sorry the code example will be: https://github.com/universal-ctags/ctags/blob/master/Units/simple-elm.d/input.elm#L28 The actual output is: https://github.com/universal-ctags/ctags/blob/master/Units/simple-elm.d/expected.tags#L14 My proposal will be add the signature: ``` foo input.elm /^foo a =$/;" f signature:(Int -> Int) roles:def...
I get something working and looks promising: **Input:** ```Elm foo : Int -> Int foo a = a + 1 ``` **Optlib:** ``` --mline-regex-Elm=/^([[:lower:]][[:alnum:]_]+)[[:blank:]]:((\n[[:blank:]].*)+|[[:blank:]].*)\n(([[:lower:]][[:alnum:]_]+).*)=/\1/f/{mgroup=2}{_field=signature:(\2)}{scope=clear}{exclusive} ``` **Output:** ``` foo input.elm /^foo...
My C skills are limited but I can give a try :) I will create a PR with the one line solution and wait try to add the transform In...
As a first step into this path I created this PR #24
In typescript this solution doesn't work because the package `@strapi/plugin-documentation/server/middlewares/restrict-access` is not exposed in the package.json and also there is no type definitions.
This will be a game changer to my projects. I like to validate my open api types and use valibot/zod/yup to validate my partial forms in a stepper. With that...
In my case I found that the workflow is that: valibot needs to "satisfy" the external type, but forms have extra fields and things that maybe will be map o...