Skip to content

Commit

Permalink
Add JQ syntax highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
clarfonthey committed Feb 12, 2022
1 parent f6ce5d2 commit 9872bcb
Show file tree
Hide file tree
Showing 6 changed files with 150 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -236,3 +236,6 @@
[submodule "assets/syntaxes/02_Extra/Dart"]
path = assets/syntaxes/02_Extra/Dart
url = https://github.com/elMuso/Dartlight.git
[submodule "assets/syntaxes/02_Extra/SublimeJQ"]
path = assets/syntaxes/02_Extra/SublimeJQ
url = https://github.com/zogwarg/SublimeJQ.git
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- Associate `_vimrc` and `_gvimrc` files with the `VimL` syntax. See #2002
- Associate `poetry.lock` files with the `TOML` syntax. See #2049
- Associate `.mesh`, `.task`, `.rgen`, `.rint`, `.rahit`, `.rchit`, `.rmiss`, and `.rcall` with the `GLSL` syntax. See #2050
- Added support for `JQ` syntax, see #2072

## Themes

Expand Down
1 change: 1 addition & 0 deletions assets/syntaxes/02_Extra/SublimeJQ
Submodule SublimeJQ added at 687058
60 changes: 60 additions & 0 deletions tests/syntax-tests/highlighted/JQ/sample.jq
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
import "../imported-file" ;

# With Comments !
def weird($a; $b; $c):
 [ $a, $b, $c ] | transpose | reduce .[][] as $item (
 [];
 . + $item.property
 )
;

. | weird (.a; .b; .c) |

(

if (. | contains("never") ) then
 "Why yes"
else
 12.23
end

) as $never |

{
 hello,
 why: "because",
 hello: ( weird | ascii_upcase ),
 format_eg: ( . | @json "My json string \( . | this | part | just | white | ascii_upcase | transpose)" ),
 never: $never,
 "literal_key": literal_value,
 "this": 12.1e12,
 "part": "almost"
 "like": [
 12,
 2
 "json"
 {
 "quite": {
 similar: "but not quite"
 }
 }
 ],
} | (
 
 # And with very basic brace matching
 
 # Invalid End
 ] 
 
 # Other invalid ends
 ( [ } ] )

 # A "valid" sequence
 ( [ { key: () , other_key:( [ [] [[]] ] ), gaga } ] )

 # A "invalid" sequence
 ( [ { key: () , other_key:( [ [] [[] ] ), gaga } ] )

 "A string\n whith escaped characters \" because we can"
)

25 changes: 25 additions & 0 deletions tests/syntax-tests/source/JQ/LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
The `sample.jq` file was taken from [SublimeJQ] under the following license:

[SublimeJQ]: https://github.com/zogwarg/SublimeJQ

MIT License

Copyright (c) 2017 Thomas Buick

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
60 changes: 60 additions & 0 deletions tests/syntax-tests/source/JQ/sample.jq
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
import "../imported-file" ;

# With Comments !
def weird($a; $b; $c):
[ $a, $b, $c ] | transpose | reduce .[][] as $item (
[];
. + $item.property
)
;

. | weird (.a; .b; .c) |

(

if (. | contains("never") ) then
"Why yes"
else
12.23
end

) as $never |

{
hello,
why: "because",
hello: ( weird | ascii_upcase ),
format_eg: ( . | @json "My json string \( . | this | part | just | white | ascii_upcase | transpose)" ),
never: $never,
"literal_key": literal_value,
"this": 12.1e12,
"part": "almost"
"like": [
12,
2
"json"
{
"quite": {
similar: "but not quite"
}
}
],
} | (

# And with very basic brace matching

# Invalid End
]

# Other invalid ends
( [ } ] )

# A "valid" sequence
( [ { key: () , other_key:( [ [] [[]] ] ), gaga } ] )

# A "invalid" sequence
( [ { key: () , other_key:( [ [] [[] ] ), gaga } ] )

"A string\n whith escaped characters \" because we can"
)

0 comments on commit 9872bcb

Please sign in to comment.