Rename reset keybindings to reset all keybindings (#3411)

Co-authored-by: Benjamin Lu <templu1107@proton.me>
Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Benjamin Lu
2025-04-11 20:01:28 -04:00
committed by GitHub
parent b449dbd26b
commit 009c389607
9 changed files with 25 additions and 18 deletions

View File

@@ -278,7 +278,7 @@ export const useKeybindingStore = defineStore('keybinding', () => {
return true
}
function resetKeybindings() {
function resetAllKeybindings() {
userKeybindings.value = {}
userUnsetKeybindings.value = {}
}
@@ -306,7 +306,7 @@ export const useKeybindingStore = defineStore('keybinding', () => {
addUserKeybinding,
unsetKeybinding,
updateKeybindingOnCommand,
resetKeybindings,
resetAllKeybindings,
isCommandKeybindingModified
}
})