Skip to content

Commit

Permalink
Added new directive to the list of directives for posterity.
Browse files Browse the repository at this point in the history
  • Loading branch information
ayax79 committed Nov 30, 2024
1 parent 7eac0e1 commit 8b4aa59
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nushell_completions.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ let cobra_completer = {|spans|
let ShellCompDirectiveNoFileComp = %[3]d
let ShellCompDirectiveFilterFileExt = %[4]d
let ShellCompDirectiveFilterDirs = %[5]d
let ShellCompDirectiveKeepOrder = %[6]d
let cmd = $spans | first
let rest = $spans | skip
Expand Down Expand Up @@ -109,7 +110,7 @@ let cobra_completer = {|spans|
}
}
`, ShellCompDirectiveError, ShellCompDirectiveNoSpace, ShellCompDirectiveNoFileComp,
ShellCompDirectiveFilterFileExt, ShellCompDirectiveFilterDirs))
ShellCompDirectiveFilterFileExt, ShellCompDirectiveFilterDirs, ShellCompDirectiveKeepOrder))

_, err := buf.WriteTo(w)
return err
Expand Down

0 comments on commit 8b4aa59

Please sign in to comment.