Added welcome message

This commit is contained in:
Simon Cambier
2022-09-30 22:48:15 +02:00
parent e9efed270f
commit eb4c841250
3 changed files with 28 additions and 4 deletions

View File

@@ -25,6 +25,8 @@ export interface OmnisearchSettings extends WeightingSettings {
showCreateButton: boolean
CtrlJK: boolean
CtrlNP: boolean
welcomeMessage: string
}
/**
@@ -308,6 +310,8 @@ export const DEFAULT_SETTINGS: OmnisearchSettings = {
CtrlNP: false,
storeIndexInFile: false,
welcomeMessage: ''
} as const
export let settings = Object.assign({}, DEFAULT_SETTINGS) as OmnisearchSettings