Feat: Disable Auto-Complete on Moku

This commit is contained in:
Youwes09
2026-05-16 07:56:05 -05:00
parent 1e2e923eab
commit 18ac38e888
3 changed files with 7 additions and 0 deletions
+2
View File
@@ -130,6 +130,7 @@ export interface Settings {
libraryPinnedTabOrder: string[];
autoScroll?: boolean;
autoScrollSpeed?: number;
disableAutoComplete: boolean;
}
export const DEFAULT_SETTINGS: Settings = {
@@ -175,4 +176,5 @@ export const DEFAULT_SETTINGS: Settings = {
libraryPinnedTabOrder: [],
autoScroll: false,
autoScrollSpeed: 5,
disableAutoComplete: false,
};