summaryrefslogtreecommitdiffstats
path: root/contrib/python/textual/textual/document/_languages.py
blob: fb313cf7cabc77e14f71b22ac1003be6032f6743 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
BUILTIN_LANGUAGES = sorted(
    [
        "bash",
        "css",
        "go",
        "html",
        "java",
        "javascript",
        "json",
        "kotlin",
        "markdown",
        "python",
        "rust",
        "regex",
        "sql",
        "toml",
        "yaml",
    ]
)