Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added keep order to bash, zsh, pwsh & fish #1903

Merged
merged 10 commits into from
Feb 25, 2023
Prev Previous commit
Next Next commit
fix indentation
  • Loading branch information
h4ck3rk3y committed Jan 30, 2023
commit 6e475b66672d9f3a563165f04639ac7602bcea84
8 changes: 4 additions & 4 deletions fish_completions.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@ function __%[1]s_doesnt_requires_order_preservation

set -l keeporder (math (math --scale 0 $directive / $shellCompDirectiveKeepOrder) %% 2)

if test "$keeporder" -ne 0
__%[1]s_debug "This does require order preservation"
return 1
end
if test "$keeporder" -ne 0
__%[1]s_debug "This does require order preservation"
return 1
end
end


Expand Down