mirror of
https://github.com/jlengrand/elm-language-client-vscode.git
synced 2026-03-10 08:11:17 +00:00
Rewrote type-declaration and type-alias to use faster regex. (#55)
Rewrote type-declaration and type-alias to use faster regex.
This commit is contained in:
@@ -498,7 +498,7 @@
|
||||
"name": "storage.type.elm"
|
||||
}
|
||||
},
|
||||
"end": "^(?![\\s\\n]*\\s*\\S)",
|
||||
"end": "^(?=\\S)",
|
||||
"name": "meta.function.type-declaration.elm",
|
||||
"patterns": [
|
||||
{
|
||||
@@ -557,7 +557,7 @@
|
||||
"name": "storage.type.elm"
|
||||
}
|
||||
},
|
||||
"end": "^(?![\\s\\n]*\\s*\\S)",
|
||||
"end": "^(?=\\S)",
|
||||
"name": "meta.function.type-declaration.elm",
|
||||
"patterns": [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user