最近切换到Mac系统,但是遇到VSCode关于建议的问题。体验与 Windows 截然不同。一切都设置正确,但我仍然不知道如何显示建议。
另外,Mac系统中的快捷键比较复杂。我尝试修改它们并按类似于Windows系统的按钮,例如Ctrl + Space,但没有任何变化,并且仍然没有出现建议,包括Tailwind建议。
the tailwind config:
import type { Config } from "tailwindcss"
import tailwindScrollbar from "tailwind-scrollbar"
import daisyui from "daisyui"
const Config = {
content: ["./src/frontend/index.html", "./src/frontend/**/*.{js,ts,jsx,tsx,html}"],
theme: {
extend: {}
},
plugins: [tailwindScrollbar({ nocompatible: true }), daisyui]
}
export default Config
the vscode settings:
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.quickSuggestions": {
"strings": true
},
"files.associations": {
"*.css": "tailwindcss"
},
"tailwindCSS.includeLanguages": {
"plaintext": "html",
},
"json.schemaDownload.enable": false,
}
the shortscuts of vscode:
vscode 中的快捷方式图片
how it looks like in vscode:
在 vscode 中的样子
Mac 上 VSCode 快捷键的说明,与 Windows 快捷键类似,并且可以在 macOS 上的 VSCode 中看到顺风建议
通过转到 vscode 设置 > 搜索快速建议 > 字符串 > 打开字符串来修复,由于某些原因,vscode 上的同步设置有时不起作用,所以我们应该手动修复它