Skip to content

Commit

Permalink
breaking change: The sortkey setting is now called sortKey so that it…
Browse files Browse the repository at this point in the history
… is more readable inside the settings pane.
  • Loading branch information
quicken committed Dec 18, 2023
1 parent 26c26b2 commit 7b30eba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function applySortKeyConfiguration(
) {
fileFocusTreeProvider.sortkey = vscode.workspace
.getConfiguration("filefocus")
.get("sortkey") as "path" | "basename";
.get("sortKey") as "path" | "basename";
}

function registerEvents(
Expand Down

0 comments on commit 7b30eba

Please sign in to comment.