sql generate aliases automatically #1122

This commit is contained in:
SPRINX0\prochazka
2025-06-11 17:02:38 +02:00
parent a540b38151
commit 76d9a511b8
3 changed files with 34 additions and 11 deletions

View File

@@ -12,6 +12,7 @@
import useEffect from '../utility/useEffect';
import { getContext } from 'svelte';
import { mountCodeCompletion } from './codeCompletion';
import { getCurrentSettings } from '../stores';
export let engine = null;
export let conid = null;
export let database = null;
@@ -44,6 +45,7 @@
database,
editor,
getText: () => domEditor.getCodeCompletionCommandText(),
getSettings: () => getCurrentSettings(),
});
}
return () => {};