mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-11-09 13:44:53 +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…
Add table
Reference in a new issue