File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11# GraphQL for Vim
22
33This Vim plugin provides [ GraphQL] ( https://graphql.org/ ) file detection, syntax
4- highlighting, and indentation. It currently targets the [ October 2021
5- Edition] ( https://spec.graphql.org/October2021 / ) of the GraphQL specification.
4+ highlighting, and indentation. It currently targets the [ September 2025
5+ Edition] ( https://spec.graphql.org/September2025 / ) of the GraphQL specification.
66
77The core runtime files are also included with Vim 9.1.0955+. They provide the
88foundational support (ftplugin, indent, syntax) for the ` graphql ` filetype.
Original file line number Diff line number Diff line change @@ -60,11 +60,11 @@ syn match graphqlVariable "\<\$\h\w*\>" display
6060syn match graphqlName " \<\h\w *\> " display
6161syn match graphqlType " \< _*\u\w *\> " display
6262
63- " https://spec.graphql.org/October2021 /#ExecutableDirectiveLocation
63+ " https://spec.graphql.org/September2025 /#ExecutableDirectiveLocation
6464syn keyword graphqlDirectiveLocation QUERY MUTATION SUBSCRIPTION FIELD
6565syn keyword graphqlDirectiveLocation FRAGMENT_DEFINITION FRAGMENT_SPREAD
6666syn keyword graphqlDirectiveLocation INLINE_FRAGMENT VARIABLE_DEFINITION
67- " https://spec.graphql.org/October2021 /#TypeSystemDirectiveLocation
67+ " https://spec.graphql.org/September2025 /#TypeSystemDirectiveLocation
6868syn keyword graphqlDirectiveLocation SCHEMA SCALAR OBJECT FIELD_DEFINITION
6969syn keyword graphqlDirectiveLocation ARGUMENT_DEFINITION INTERFACE UNION
7070syn keyword graphqlDirectiveLocation ENUM ENUM_VALUE INPUT_OBJECT
You can’t perform that action at this time.
0 commit comments