1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: Disable clap_complete_nushell which in uninstallable.
nushell itself is also not packaged.
Forwarded: not-needed
Last-Update: 2025-03-02
--- a/crates/atuin/Cargo.toml
+++ b/crates/atuin/Cargo.toml
@@ -67 +67 @@
-clap_complete_nushell = "4.5.4"
+#clap_complete_nushell = "4.5.4"
--- a/crates/atuin/src/command/gen_completions.rs
+++ b/crates/atuin/src/command/gen_completions.rs
@@ -3 +3 @@
-use clap_complete_nushell::Nushell;
+//use clap_complete_nushell::Nushell;
@@ -16 +16 @@
- Nushell,
+ //Nushell,
@@ -32 +32 @@
- Self::Nushell => Nushell.file_name(name),
+ //Self::Nushell => Nushell.file_name(name),
@@ -46 +46 @@
- Self::Nushell => Nushell.generate(cmd, buf),
+ //Self::Nushell => Nushell.generate(cmd, buf),
|