Home

tmpl @main - refs - log -
-
https://git.jolheiser.com/tmpl.git
Template automation
tree log patch
chore: update nushell completions Signed-off-by: jolheiser <john.olheiser@gmail.com>
Signature
-----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEgqEQpE3xoo1QwJO/uFOtpdp7v3oFAmXH8A8ACgkQuFOtpdp7 v3pwGg/+MpQjbfceSTjzZ3QVfOjEhxo6NdSBZScZyGUJRXCOrP/EHcSXSzCD4M6I iGgVvMPbtTRJaR1eKASjWXW64HbTrL/wa4Nh/Ls5UhDNWVZz9nycZ6O2GgW6Wpf7 0ebeIqRwtNnHBzxjuOv8FO1lcf4NLX/6X21W3dO1gfcLXvHqfS0amsqxkz+QGEoa 0Tp1v96FBC1BF1CJnCmrhfSnGFQoiT921M3iE+fHNkhWleSDrPrqp02jH2TbaHqb Ki4iYZXYlwteRfTmZXI01xxvST0J7JUqZsB/MNKy/UzhEv2J2js0XjzUnBwnI6Ms EMbtme6bvTt7ho6D0g8BwcbzbzSTFcpEoiDqJJ1C6Far0bHRlhorUVdsOqSLmLjE scWR84+QMgxsamIYmlkItewuWxa8JKZAStmK0lkA605x2RGo/2GmAu9NtsPhVcH9 r/iLQBUh8IH4/03WCFjL++3gFmd0ZH/jYvIivro3r8xqlHDgMaRuviAB636bghfp O6cCBbF2cKqEJ67IJ+CcXoDu9u1IvYHvvjIn6qB0c4v9Vwv4EFa0D47ecTWiOoUl XoU5wvhjG3l5Mvm1poxRC8L6d+kUD8hMfRkGI2F0SFVGcWsPoBETx5E8Yd0ZE+8c +HqqnhArK9NTyW3FB4Qmwiv5/XSs5MAD5x9X95KqHgAW56g+JzQ= =U3+m -----END PGP SIGNATURE-----
jolheiser <john.olheiser@gmail.com>
1 year ago
1 changed files, 16 additions(+), 16 deletions(-)
contrib/tmpl-completions.nu
M contrib/tmpl-completions.nucontrib/tmpl-completions.nu
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
diff --git a/contrib/tmpl-completions.nu b/contrib/tmpl-completions.nu
index ca99993f113296e9d27779213188b40cbb79513e..97927cd3b6a4ca01469da0af5aca7c8351bf42bb 100644
--- a/contrib/tmpl-completions.nu
+++ b/contrib/tmpl-completions.nu
@@ -15,8 +15,8 @@ # Template automation
 export extern "tmpl" [
   --registry(-r): string # Registry directory of tmpl (default: ~/.tmpl) [$TMPL_REGISTRY]
   --source(-s): string   # Short-name source to use [$TMPL_SOURCE]
-  --help(-h): bool       # Show help
-  --version(-v): bool    # Show version
+  --help(-h)             # Show help
+  --version(-v)          # Show version
 ]
 
 # Download a template
@@ -24,19 +24,19 @@ export extern "tmpl download" [
   repo_url: string     # Repository URL
   name: string         # Local name for template
   --branch(-b): string # Branch to clone (default: "main") [$TMPL_BRANCH]
-  --help(-h): bool     # Show help
+  --help(-h)           # Show help
 ]
 
 # Manage tmpl environment variables
 export extern "tmpl env" [
-  --help(-h): bool # Show help
+  --help(-h)       # Show help
 ]
 
 # Set a tmpl environment variable
 export extern "tmpl env set" [
   key: string@"_tmpl_env_keys" # Env key
   value: string                # Env value
-  --help(-h): bool             # Show help
+  --help(-h)                   # Show help
 ]
 
 # Unset a tmpl environment variable
@@ -46,19 +46,19 @@ ]
 
 # Initialize a blank tmpl template
 export extern "tmpl init" [
-  --help(-h): bool # Show help
+  --help(-h)       # Show help
 ]
 
 # List all templates in registry
 export extern "tmpl list" [
-  --json: bool     # Output in JSON
-  --help(-h): bool # Show help
+  --json           # Output in JSON
+  --help(-h)       # Show help
 ]
 
 # Remove a template
 export extern "tmpl remove" [
   name: string     # Name of the template to remove
-  --help(-h): bool #Show help
+  --help(-h)       #Show help
 ]
 
 # Restore templates present in the registry, but missing archives
@@ -70,7 +70,7 @@ # Save a local template
 export extern "tmpl save" [
   path: string     # Path to the local template
   name: string     # Name of the template
-  --help(-h): bool # Show help
+  --help(-h)       # Show help
 ]
 
 # Work with tmpl sources
@@ -82,19 +82,19 @@ # Add a tmpl source
 export extern "tmpl source add" [
   base_url: string # Base URL
   name: string     # Name
-  --help(-h): bool # Show help
+  --help(-h)       # Show help
 ]
 
 # Remove a tmpl source
 export extern "tmpl source remove" [
   name: string@"_tmpl_source_list" # Source to remove
-  --help(-h): bool                 # Show help
+  --help(-h)                       # Show help
 ]
 
 # Test whether a directory is a valid tmpl template
 export extern "tmpl test" [
   path?: string    # Path to test (default: ".")
-  --help(-h): bool # Show help
+  --help(-h)       # Show help
 ]
 
 # Update a template
@@ -107,7 +107,7 @@ # Use a template
 export extern "tmpl use" [
   name: string@"_tmpl_template_list" # The template to execute
   dest?: path                       # Destination for the template (default: ".")
-  --defaults: bool                  # Use template defaults
-  --force: bool                     # Overwrite existing files
-  --help(-h): bool                  # Show help
+  --defaults                        # Use template defaults
+  --force                           # Overwrite existing files
+  --help(-h)                        # Show help
 ]