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: [
{
label: "helpers.",
detail: "Helpers utilities",
type: "text",
simple: true,
apply: (
view: EditorView,
_completion: BindingCompletion,

View File

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