feat(web): add support for vim keybindings

This commit is contained in:
Mohamed Elhefni
2024-01-06 14:06:40 +02:00
parent aa66367f86
commit 090329593e
3 changed files with 40 additions and 1 deletions

View File

@@ -96,6 +96,9 @@ export const currentTheme = getElectron()
export const currentEditorTheme = getElectron()
? writableSettingsValue(null, 'currentEditorTheme')
: writableWithStorage(null, 'currentEditorTheme');
export const currentEditorKeybindigMode = getElectron()
? writableSettingsValue(null, 'currentEditorKeybindigMode')
: writableWithStorage(null, 'currentEditorKeybindigMode');
export const currentEditorFontSize = getElectron()
? writableSettingsValue(null, 'currentEditorFontSize')
: writableWithStorage(null, 'currentEditorFontSize');