Skip to content

Commit

Permalink
Sort deps.edn aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdinand-beyer committed Jan 26, 2023
1 parent 875a5af commit 4a771f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Changes to Calva.

## [Unreleased]

- [Sort aliases for deps.edn projects](https://github.com/BetterThanTomorrow/calva/issues/2035)

## [2.0.327] - 2023-01-26

- [LSP support for multi-project and multi-workspace](https://github.com/BetterThanTomorrow/calva/pull/2020)
Expand Down
2 changes: 1 addition & 1 deletion src/nrepl/project-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ async function cljCommandLine(connectSequence: ReplConnectSequence, cljsType: Cl
}
if (projectAliases.length) {
aliases = await utilities.quickPickMulti({
values: projectAliases.map(keywordize),
values: projectAliases.map(keywordize).sort(),
saveAs: `${state.getProjectRootUri().toString()}/clj-cli-aliases`,
placeHolder: 'Pick any aliases to launch with',
});
Expand Down

0 comments on commit 4a771f1

Please sign in to comment.