nushell: Fix config
This commit is contained in:
parent
cf8e6ee452
commit
b3caffe298
1 changed files with 11 additions and 3 deletions
|
@ -1,5 +1,13 @@
|
||||||
let carapace_completer = {|spans|
|
let carapace_completer = {|spans|
|
||||||
carapace $spans.0 nushell ... | from json
|
let expanded_alias = (scope aliases | where name == $spans.0 | get -i 0 | get -i expansion)
|
||||||
|
|
||||||
|
let spans = (if $expanded_alias != null {
|
||||||
|
spans | skip 1 | prepend ($expanded_alias | split row " " | take 1)
|
||||||
|
} else {
|
||||||
|
$spans
|
||||||
|
})
|
||||||
|
|
||||||
|
carapace $spans.0 nushell ...$spans | from json
|
||||||
}
|
}
|
||||||
|
|
||||||
# The default config record. This is where much of your global configuration is setup.
|
# The default config record. This is where much of your global configuration is setup.
|
||||||
|
@ -42,7 +50,7 @@ $env.config = {
|
||||||
if ($candidates | is-empty) {
|
if ($candidates | is-empty) {
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
let packages = ($candidates | each {|pkg| $"\tnix shell nixpkgs#($pkg.package)" } | str join "\n")
|
let packages = ($candidates | each {|pkg| $"\tnix shell nixpkgs#($pkg.package)" } | str join "\n")
|
||||||
let multiple = if ($candidates | length) > 1 { " one of the following" } else { "" }
|
let multiple = if ($candidates | length) > 1 { " one of the following" } else { "" }
|
||||||
(
|
(
|
||||||
$"The program (ansi $env.config.color_config.shape_external)($cmdname)(ansi reset) " +
|
$"The program (ansi $env.config.color_config.shape_external)($cmdname)(ansi reset) " +
|
||||||
|
|
Loading…
Reference in a new issue