/SublimeJQ

Sublime Text JQ Language Syntax

Primary LanguagejqMIT LicenseMIT

JQ Syntax for Sublime Text

This repository contains a rudimentary syntax definition for jq. A sed-like json manipulation tool.

You can find the homepage for jq here

example:

example image

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 package. Using the following user settings:

{
    "syntax": "JQ Syntax/JQ",
    "extensions": ["jq"],
    "rules": [
        { "file_path": ".*(\\\\|/).jq$" }
    ]
}