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 84b135b commit 10da30eCopy full SHA for 10da30e
client/modules/IDE/components/Editor/hinter.js
@@ -21,7 +21,10 @@ export function hideHinter() {
21
CodeMirror.showHint(this._cm, () => {}, {});
22
}
23
24
-/** Shows a hint in the codemirror instance. */
+/**
25
+ * Shows a hint popup in the codemirror instance.
26
+ * It will only be visible if the user has autocomplete on in the settings.
27
+ */
28
export function showHint(cmInstance, autocompleteHinter, fontSize) {
29
if (!autocompleteHinter) {
30
CodeMirror.showHint(cmInstance, () => {}, {});
0 commit comments