Sublime Text 中的德语引号

German quotation marks in Sublime Text

如何配置 Sublime Text,而不是:

"Hi there."

它写道

„Hi there.“

我试图查看设置,但找不到相关选项。也没有找到语言包之类的。

您可以映射组合键来插入您的代码段。

转到 Preferences -> Key Bindings 并在 Default.sublime-keymap - User(右边)添加:

{ "keys": ["alt+2"], "command": "insert_snippet", "args": {"contents": "„[=12=]“"} }

当你按下 Alt+2 时,它会在引号之间插入 „“ 和光标。