i3 / i3.github.io

The i3wm.org website
https://i3wm.org/
195 stars 60 forks source link

added missing get_tree node field: "marks" #74

Closed geshido closed 4 years ago

geshido commented 4 years ago

There is node's marks field not documented in get_tree output:

$ i3-msg -t get_tree| jq '.' | grep '"marks"' -B8 -A2
                  "nodes": [
                    {
                      "id": 94075649667232,
                      "type": "con",
                      "orientation": "none",
                      "scratchpad_state": "none",
                      "percent": 1,
                      "urgent": false,
                      "marks": [
                        "scratch2"
                      ],
--
                  "nodes": [
                    {
                      "id": 94075648820464,
                      "type": "con",
                      "orientation": "none",
                      "scratchpad_state": "none",
                      "percent": 1,
                      "urgent": false,
                      "marks": [
                        "scratch1"
                      ],
stapelberg commented 4 years ago

This was the wrong repo to change. The docs canonically live in https://github.com/i3/i3, in the docs subdirectory.

Airblader commented 4 years ago

Indeed, my bad. @geshido Can you submit it in the proper repository as well? Sorry about that.

geshido commented 4 years ago

New PR is created in https://github.com/i3/i3 repository: https://github.com/i3/i3/pull/3871