We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1474f77 commit ef88e3aCopy full SHA for ef88e3a
src/Web/CommandPalette/register-palette.ts
@@ -42,10 +42,6 @@ export function registerPalette(options: Options) {
42
const activeElement = useActiveElement()
43
const notUsingInput = computed(() => !['INPUT', 'TEXTAREA'].includes(activeElement.value?.tagName ?? ''))
44
45
- watchEffect(() => {
46
- console.log({ Meta_K, Slash, notUsingInput })
47
- })
48
-
49
whenever(logicAnd(Meta_K, notUsingInput), () => options.value.value = !options.value.value)
50
whenever(logicAnd(Slash, notUsingInput), () => options.value.value = true)
51
}
0 commit comments