Autocomplete 升华文本2:哪个范围用于自动完成?

Autocomplete 升华文本2:哪个范围用于自动完成?,autocomplete,latex,sublimetext2,syntax-highlighting,markdown,Autocomplete,Latex,Sublimetext2,Syntax Highlighting,Markdown,我在Markdown.tmLanguage中使用include规则来为标记文件中的LaTeX环境获取一些LaTeX语法高亮显示 "tex_environments": { "name": "markup.raw.inline.markdown", "comment": "TeX Environments", "begin": "\\\\begin\\{[^\\}]*\\}", "end": "\\\\end\\{[^\\}]*\\}

我在
Markdown.tmLanguage
中使用
include
规则来为标记文件中的LaTeX环境获取一些LaTeX语法高亮显示

"tex_environments": {
        "name": "markup.raw.inline.markdown",
        "comment": "TeX Environments",
        "begin": "\\\\begin\\{[^\\}]*\\}",
        "end": "\\\\end\\{[^\\}]*\\}",
        "patterns": [
            { "include": "text.tex.latex" }
        ]
    }
在这些环境中,我仍然可以自动完成HTML。
scopehunter
插件显示以下范围:

text.html.markdown
meta.paragraph.markdown
markup.raw.inline.markdown
我假设第一个作用域决定了自动完成的语言?我能说服Sublime我想要乳胶自动完成吗