Skip to content

Commit d786007

Browse files
committed
Improve status bar text
Signed-off-by: worksofliam <[email protected]>
1 parent a898a5c commit d786007

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/views/jobManager/statusBar.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,12 @@ export async function updateStatusBar(options: {newJob?: boolean, canceling?: bo
3434
const job = selected.job;
3535

3636
if (job.getNaming() === `sql`) {
37-
toolTipItems.push(`SQL Naming. Current schema: \`${await job.getCurrentSchema()}\``);
37+
toolTipItems.push(`SQL Naming.\n\nCurrent schema: \`${await job.getCurrentSchema()}\``);
3838
} else {
3939
toolTipItems.push([
40-
`System Naming. Library list:`,
40+
`System Naming.`,
41+
``,
42+
`Configured user library list for job:`,
4143
``,
4244
...job.options.libraries.map((lib, i) => `${i+1}. \`${lib}\``)
4345
].join(`\n`));

0 commit comments

Comments
 (0)