Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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$" }
]
}
```