Replies: 2 comments
|
Agreed. We will support merging inline plugins by name. To keep existing context restrictions intact, each file can opt in with Scope:
I will create the implementation issue and work in a separate worktree. |
0 replies
|
Implementation is tracked in #616. Work has started on branch |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
"inline-plugins" can be preferrable over "packaged" plugins, especially because only the inline ones support
output = "terminal", which makes interactive plugins possible.Unfortunately sharing those within a team for example is almost impossible, because the config merging in
config.d/will overwrite all used-defined plugins inconfig.tomlwith the (alphabetically) latest list found in the config dir.To overcome this in our use-case there could be two options:
That way "shared" plugins can co-exist with user-defined ones.
All reactions