Skip to content
Sublime Text JQ Language Syntax
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
JQ.sublime-settings
JQ.sublime-syntax
JQ.tmPreferences
LICENCE
README.md
coloring.png
sample.jq
syntax_test_jq.jq

README.md

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$" }
    ]
}
You can’t perform that action at this time.