utu 0.0.1

TUI pixel art editor using plain text files
Documentation
{
  "keybindings": {
    "__global__": {
      "C-c": "quit",
      "C-h": "legend",
      "C-p": "preview",
      "g": "cancel"
    },
    "__main__": {
      "C-s": "save",
      "C-u": "undo",
      "C-b": "bg(_)",
      "↑,i": "prev-line",
      "↓,k": "next-line",
      "←,j": "prev-char",
      "→,l": "next-char",
      " ,a": "dot( )",
      "s": "dot(+)",
      "d": "dot(o)",
      "f": "dot(#)",
      "w": "cut",
      "W": "copy",
      "m": "scope(marker)"
    },
    "marker": {
      "s": "mark-stroke",
      "l": "mark-line",
      "r": "mark-rect",
      "R": "mark-filled-rect",
      "f": "mark-fill"
    },
    "__clipboard__": {
      "↑,i": "prev-line",
      "↓,k": "next-line",
      "←,j": "prev-char",
      "→,l": "next-char",
      "v": "paste"
    },
    "__comment__": {
      "__clipboard__": {
        "r": "rotate-cw",
        "l": "rotate-ccw",
        "h": "flip-horizontal",
        "v": "flip-vertical"
      }
    }
  },
  "preview": {
    "width": 40,
    "height": 40
  },
  "palette": {
    " ": "#C8C8A8",
    "+": "#A0A088",
    "o": "#686850",
    "#": "#282818"
  }
}