我无法再在Sublime Text 3中键入结束花括号 - 输入时没有任何反应。我可以在我尝试的其他所有应用程序中输入它(例如记事本)
} - not working
) - working
] - working
还有其他人遇到这种情况吗?这是一种阻止我写}
吗?
我找到了一种解决方法,但不知道它是否有任何副作用:
// Adding a sortcut in Key Bindings - User to get my } back
// (note: swedish keyboard)
{
"keys": ["alt+shift+9"],
"command": "insert",
"args": { "characters": "}" }
},