如何阻止崇高文本自动更改" rb" to" Ruby"什么时候击中标签?

时间:2015-09-04 14:31:08

标签: sublimetext3

我正在尝试为这个项目撰写一些评论,但每次点击标签按钮,它都会自动更改" rb"的文件扩展名。 to" Ruby"

如何让它停止这样做?

1 个答案:

答案 0 :(得分:0)

这是因为Sublime默认启用了“tab completion”,如config:

中所述
// When enabled, pressing tab will insert the best matching completion.
// When disabled, tab will only trigger snippets or insert a tab.
// Shift+tab can be used to insert an explicit tab when tab_completion is
// enabled.
"tab_completion": true,

因此,您可以在自定义设置中将tab_completion设置为false,或使用 shift + 标签插入显式标签。< / p>