sublime press key “escape” can't type anything

转 载https://stackoverflow.com/questions/34216851/sublime-press-key-escape-cant-type-anything

I know this is an old question but I’ve had the exact same problem for a while and it annoyed me to no end. I’ve managed to figure out the issue and a solution so I’ll post it here in case anyone else has this problem.

The problem is that the package “Vintage” is not in your ignored_packages setting.

To solve: Preferences->Settings

This should open both the global and user settings. In the user settings you will probably have something along the lines of :

{
“ignored_packages”:
[
]
}
Simply change this to: (or add this to your user settings file)

{
“ignored_packages”:
[
“Vintage”
]
}

发布了755 篇原创文章 · 获赞 195 · 访问量 104万+

猜你喜欢

转载自blog.csdn.net/seamanj/article/details/103708337