Does this issue occur when all extensions are disabled?: Yes/No
- VS Code Version: 1.63.2
- OS Version: macOS 12.0.1
Steps to Reproduce:
- Disable
css.hover.documentation, css.hover.references, scss.hover.documentation and scss.hover.references
- Edit a
*.vue file with the following structure:
<template>
<div>I'm a happy component</div>
</template>
<style lang="scss" scoped>
div {
background: blue; // hover this line to still see a MDN reference tooltip
}
</style>
- Hover a css property
What I expect:
No tooltip at all.
:(