This commit is contained in:
Adria Navarro 2025-02-10 20:20:55 +01:00
parent 43a896fa5a
commit 8b3919ff47
2 changed files with 3 additions and 1 deletions

View File

@ -246,7 +246,8 @@ export const jsHelperAutocomplete = (baseCompletions: BindingCompletion[]) => {
options: [ options: [
{ {
label: "helpers.", label: "helpers.",
detail: "Helpers utilities", type: "text",
simple: true,
apply: ( apply: (
view: EditorView, view: EditorView,
_completion: BindingCompletion, _completion: BindingCompletion,

View File

@ -3,6 +3,7 @@ export interface BindingCompletion {
name: string name: string
} }
label: string label: string
simple?: boolean
} }
export interface EnrichedBinding { export interface EnrichedBinding {