We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42e371d commit ced51d0Copy full SHA for ced51d0
src/language/provider.js
@@ -136,7 +136,19 @@ exports.initialise = async (context) => {
136
}
137
138
item.detail = detail;
139
- item.documentation = new vscode.MarkdownString(`${column.COLUMN_TEXT} (\`${definedAs.db}.${definedAs.table}\`)`);
+
140
+ const docs = [];
141
142
+ if (column.SYSTEM_COLUMN_NAME && column.SYSTEM_COLUMN_NAME !== column.COLUMN_NAME)
143
+ docs.push(`${column.COLUMN_NAME.toLowerCase()} (${column.SYSTEM_COLUMN_NAME})`);
144
145
+ if (column.COLUMN_TEXT)
146
+ docs.push(column.COLUMN_TEXT);
147
148
+ docs.push(`(\`${definedAs.db}.${definedAs.table}\`)`);
149
150
+ item.documentation = new vscode.MarkdownString(docs.join(`\n\n`));
151
152
items.push(item);
153
});
154
} else {
0 commit comments