<img width="691" alt="image" src="https://github.com/zed-industries/zed/assets/2588851/c5e02d12-d1e4-4407-971c-72de7e6599f0"> @mikayla-maki the extension lists you as the original author. Release Notes: - N/A --------- Co-authored-by: Marshall Bowers <elliott.codes@gmail.com>
20 lines
552 B
TOML
20 lines
552 B
TOML
name = "GLSL"
|
|
grammar = "glsl"
|
|
path_suffixes = [
|
|
# Traditional rasterization pipeline shaders
|
|
"vert", "frag", "tesc", "tese", "geom",
|
|
# Compute shaders
|
|
"comp",
|
|
# Ray tracing pipeline shaders
|
|
"rgen", "rint", "rahit", "rchit", "rmiss", "rcall",
|
|
# Other
|
|
"glsl"
|
|
]
|
|
line_comments = ["// "]
|
|
block_comment = ["/* ", " */"]
|
|
brackets = [
|
|
{ start = "{", end = "}", close = true, newline = true },
|
|
{ start = "[", end = "]", close = true, newline = true },
|
|
{ start = "(", end = ")", close = true, newline = true },
|
|
]
|