Skip to content

Commit

Permalink
Do not sort INC from configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
FractalBoy authored Nov 6, 2024
1 parent 1e02d1d commit 5c279b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/lib/PLS/Server/Request/Workspace/Configuration.pm
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ sub handle_response
push @inc, PLS::Util::resolve_workspace_relative_path($inc, $index->workspace_folders, 1);
}

$config->{inc} = [List::Util::uniq sort @inc];
$config->{inc} = [List::Util::uniq @inc];
} ## end if (exists $config->{inc...})

if (exists $config->{syntax}{perl} and length $config->{syntax}{perl})
Expand Down

0 comments on commit 5c279b7

Please sign in to comment.