mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-11-10 06:01:44 +08:00
Never show automatic completion popup in Markdown cells (#742)
This commit is contained in:
parent
ab0a237ab6
commit
cc772f4ffe
1 changed files with 3 additions and 2 deletions
|
|
@ -164,10 +164,11 @@ class LiveEditor {
|
||||||
fontFamily: "JetBrains Mono, Droid Sans Mono, monospace",
|
fontFamily: "JetBrains Mono, Droid Sans Mono, monospace",
|
||||||
fontSize: 14,
|
fontSize: 14,
|
||||||
tabIndex: -1,
|
tabIndex: -1,
|
||||||
quickSuggestions: settings.editor_auto_completion,
|
quickSuggestions:
|
||||||
|
this.type === "elixir" && settings.editor_auto_completion,
|
||||||
tabCompletion: "on",
|
tabCompletion: "on",
|
||||||
suggestSelection: "first",
|
suggestSelection: "first",
|
||||||
parameterHints: settings.editor_auto_signature,
|
parameterHints: this.type === "elixir" && settings.editor_auto_signature,
|
||||||
});
|
});
|
||||||
|
|
||||||
this.editor.getModel().updateOptions({
|
this.editor.getModel().updateOptions({
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue