mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-27 09:19:02 +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",
|
||||
fontSize: 14,
|
||||
tabIndex: -1,
|
||||
quickSuggestions: settings.editor_auto_completion,
|
||||
quickSuggestions:
|
||||
this.type === "elixir" && settings.editor_auto_completion,
|
||||
tabCompletion: "on",
|
||||
suggestSelection: "first",
|
||||
parameterHints: settings.editor_auto_signature,
|
||||
parameterHints: this.type === "elixir" && settings.editor_auto_signature,
|
||||
});
|
||||
|
||||
this.editor.getModel().updateOptions({
|
||||
|
|
Loading…
Reference in a new issue