nushell/register-plugins.nu

37 lines
1.1 KiB
Plaintext

# match command
def match [input, matchers: record] {
echo $matchers | get $input | do $in
}
# register plugin
def register_plugin [plugin] {
print $"registering ($plugin)"
nu -c $'register ($plugin)'
}
def windows? [] {
$nu.os-info.name == windows
}
def keep-plugin-executables [] {
if (windows?) { $in } else { where name !~ '\.d' }
}
# get list of all plugin files from their installed directory
let plugin_location = ((which nu).path.0 | path dirname)
# for each plugin file, print the name and launch another instance of nushell to register it
for plugin in (ls $"($plugin_location)/nu_plugin_*" | keep-plugin-executables) {
match ($plugin.name | path basename | str replace '\.exe$' '') {
nu_plugin_custom_values: { register_plugin $plugin.name }
nu_plugin_example: { register_plugin $plugin.name }
nu_plugin_from_parquet: { register_plugin $plugin.name }
nu_plugin_gstat: { register_plugin $plugin.name }
nu_plugin_inc: { register_plugin $plugin.name }
nu_plugin_query: { register_plugin $plugin.name }
}
}
# print helpful message
print "\nplugins registered, please restart nushell"