-
-
Notifications
You must be signed in to change notification settings - Fork 794
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add plugin aliases #5820
base: main
Are you sure you want to change the base?
Add plugin aliases #5820
Conversation
Should also solve #4248 |
@@ -0,0 +1,9 @@ | |||
# `wezterm.plugin` module | |||
|
|||
{{since('???')}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am unsure of how to get the correct version for these.
Thanks for this PR. I'm experimenting with Wezterm plugins and the experience is not too clean It's impossible (as far as I know) to structure a plugin into different submodules. The submodules aren't found because the plugin is installed using the full URL path rather than a 'human-readable' name. One question, Does this PR allow a Wezterm plugin to include another Wezterm plugin directly? |
It would allow you to be able to do the following: wezterm.plugin.require_as_alias("github.com/user/repo", "cool_plugin_alias")
cool_sub_module = require("cool_plugin_alias.sub_module") Then the plugin author can specify that a user should install it with a specific alias, or alternatively the plugin could call the |
This PR should solve #5812 and #4248 when complete.
I have changed the lua path to be able to call
require("<plugin_name>.<some_lua_file>")
as described here.I have also added documentation for the
wezterm.plugin
and also added the functionswezterm.plugin.require_as_alias
to clone repositories into a named directory.Lastly i have added the
wezterm.plugin.plugin_dir
function to return the plugin directory root