Allow default keymap to be overridden in settings file

This commit is contained in:
Nick O'Leary
2021-01-28 16:42:16 +00:00
parent 3a0074d96e
commit 61690ecf4a
2 changed files with 73 additions and 36 deletions

View File

@@ -200,6 +200,10 @@ module.exports = {
themeSettings.projects = theme.projects;
}
if (theme.hasOwnProperty("keymap")) {
themeSettings.keymap = theme.keymap;
}
if (theme.theme) {
themeSettings.theme = theme.theme;
}