We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b37e03 commit 1284330Copy full SHA for 1284330
src/neo4j-arc/cypher-language-support/cypher-editor/CypherEditor.tsx
@@ -361,6 +361,12 @@ export class CypherEditor extends React.Component<
361
tabIndex: this.props.tabIndex
362
})
363
364
+ // Set the details to be visible by default
365
+ this.editor
366
+ .getContribution('editor.contrib.suggestController')
367
+ // @ts-ignore this is an internal API
368
+ ?.widget?.value?._setDetailsVisible(true)
369
+
370
const { KeyCode, KeyMod } = monaco
371
if (this.props.onExecute) {
372
this.editor.addCommand(
0 commit comments