Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zogwarg/SublimeJQ
Sublime Text JQ Language Syntax
https://github.com/zogwarg/SublimeJQ
jq-syntax json sublime-text
Last synced: about 1 month ago
JSON representation
Sublime Text JQ Language Syntax
- Host: GitHub
- URL: https://github.com/zogwarg/SublimeJQ
- Owner: zogwarg
- License: mit
- Created: 2017-12-15T08:52:20.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-20T21:42:54.000Z (about 1 year ago)
- Last Synced: 2024-08-07T18:48:37.048Z (5 months ago)
- Topics: jq-syntax, json, sublime-text
- Language: jq
- Size: 312 KB
- Stars: 5
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JQ Syntax for Sublime Text
This repository contains a rudimentary syntax definition for [jq](https://stedolan.github.io/jq), a sed-like json manipulation tool.
Example syntax highlighting:
![example image](./coloring.png)
## FAQ
### Syntax is not detected on the ".jq" file.
For the "~/.jq" file to be automatically detected, The best option is to use the [ApplySyntax](https://packagecontrol.io/packages/ApplySyntax) package. Using the following user settings:```json
{
"syntax": "JQ Syntax/JQ",
"extensions": ["jq"],
"rules": [
{ "file_path": ".*(\\\\|/).jq$" }
]
}
```