Skip to content

Commit

Permalink
Fix non-exported completions
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesCranmer authored Apr 11, 2024
1 parent b1019da commit d7df691
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion custom-completions/ack/ack-completions.nu
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# copied from auto-generated completions

extern "ack" [
export extern "ack" [
--ignore-case(-i) # Ignore case
--smart-case # Ignore case when pattern contains no uppercase
--no-smart-case # Dont ignore case
Expand Down
4 changes: 2 additions & 2 deletions custom-completions/as/as-completions.nu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Omit false conditionals
extern "as" [
export extern "as" [
--alternate # Initially turn on alternate macro syntax
--nocompress-debug-sections # Dont compress DWARF debug sections
--execstack # Require executable stack for this object
Expand Down Expand Up @@ -33,7 +33,7 @@ extern "as" [
]

# Generate ELF common symbols with STT_COMMON type
extern "as yes no" [
export extern "as yes no" [
--alternate # Initially turn on alternate macro syntax
--nocompress-debug-sections # Dont compress DWARF debug sections
--execstack # Require executable stack for this object
Expand Down
2 changes: 1 addition & 1 deletion custom-completions/tar/tar-completions.nu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Append archive to archive
extern "tar" [
export extern "tar" [
--concatenate(-A) # Append archive to archive
--create(-c) # Create archive
--compare(-d) # Compare archive and filesystem
Expand Down

0 comments on commit d7df691

Please sign in to comment.