Andrew Thauer
Andrew Thauer
I would advocate for making `asdf` core `XDG` complaint. It should be possible to do this in a backwards compatible way like many other tools have done in the past....
For anyone interested, I created a standalone shell script called [asdf-alias](https://gist.github.com/andrewthauer/f448d4296ee2b6bc5d9197791ce205c7) that creates aliases via symlinks and then reshims the plugin (required to work). It is based on [nodenv-aliases](https://github.com/nodenv/nodenv-aliases) which...
Thanks for pointing that out @vic. I didn't realize that extension commands had been added. I was able to easily port over my `asdf-alias` script into a basic plugin using...
FYI - I created a plugin named [asdf-alias](https://github.com/andrewthauer/asdf-alias). Also created issue #641, to point out some thoughts on extension command only plugins.
Yeah. I think something either changed in the underlying core API, or I read the docs wrong. I’ve been meaning to fix it, but got sidetracked. I’ll try take a...
@jthegedus - I just debugged through the code of the `bin/asdf` command and I can't see how custom subcommands like `asdf alias` would ever work with the current code. The...
@jthegedus. Sorry I'm actually wrong, it does look for the plugin commands. I've tracked down the problem. The `find_plugin_cmd` function checks for the existence of a `bin` directory in the...
I think the way extension commands are presented in the argument order is a bit confusing in respect to this possible requirement. All of the required `bin` commands are specific...
We're doing some refactoring that should address existing performance concerns. Stay tuned.
I ran across this project the other day that could be of some use when using a code first approach: https://github.com/bee-travels/openapi-comment-parser. However, I agree that using annotations or a middleware...