Skip to content

Commit

Permalink
PR review
Browse files Browse the repository at this point in the history
  • Loading branch information
barrywhart committed Feb 8, 2024
1 parent 6a35417 commit 8219043
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ export const activate = (context: vscode.ExtensionContext) => {
// sqlfluff" button to the lower right corner of the VS Code window. Use
// of the word "format" (vs "fix") is deliberate, as the button hits the
// dbt-core-interface "/format" endpoint, equivalent to "sqlfluff format".
const customStatusBarItem = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Right);
customStatusBarItem.text = "$(pencil)";
const customStatusBarItem = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Left);
customStatusBarItem.text = "$(list-selection) Format SQL";
customStatusBarItem.tooltip = "Format document with sqlfluff";
customStatusBarItem.command = fixCommand;
customStatusBarItem.show();
Expand Down

0 comments on commit 8219043

Please sign in to comment.