serie 0.5.7

A rich git commit graph in your terminal, like magic
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Serie Configuration Schema",
  "description": "Schema for the Serie application's configuration file.",
  "type": "object",
  "properties": {
    "core": {
      "type": "object",
      "description": "Core application settings",
      "properties": {
        "option": {
          "type": "object",
          "description": "General core settings",
          "properties": {
            "protocol": {
              "type": "string",
              "description": "The protocol type for rendering images of commit graphs. The value specified in the command line argument takes precedence.",
              "enum": [
                "auto",
                "iterm",
                "kitty"
              ],
              "default": "auto"
            },
            "order": {
              "type": "string",
              "description": "The commit ordering algorithm. The value specified in the command line argument takes precedence.",
              "enum": [
                "chrono",
                "topo"
              ],
              "default": "chrono"
            },
            "graph_width": {
              "type": "string",
              "description": "The character width that a graph image unit cell occupies. The value specified in the command line argument takes precedence.",
              "enum": [
                "auto",
                "double",
                "single"
              ],
              "default": "auto"
            },
            "initial_selection": {
              "type": "string",
              "description": "The initial selection of commit when starting the application. The value specified in the command line argument takes precedence.",
              "enum": [
                "latest",
                "head"
              ],
              "default": "latest"
            }
          },
          "additionalProperties": false
        },
        "search": {
          "type": "object",
          "description": "Default search settings",
          "properties": {
            "ignore_case": {
              "type": "boolean",
              "description": "Whether to enable ignore case by default.",
              "default": false
            },
            "fuzzy": {
              "type": "boolean",
              "description": "Whether to enable fuzzy matching by default.",
              "default": false
            }
          },
          "additionalProperties": false
        },
        "user_command": {
          "type": "object",
          "description": "Custom user command definitions.",
          "properties": {
            "tab_width": {
              "type": "integer",
              "description": "The number of spaces to replace tabs in the user command output.",
              "default": 4
            }
          },
          "patternProperties": {
            "^commands_[0-9]+$": {
              "type": "object",
              "description": "A custom command. The key must be in the format 'commands_{n}' where n is a number.",
              "properties": {
                "name": {
                  "type": "string",
                  "description": "The name of the command to be displayed."
                },
                "commands": {
                  "type": "array",
                  "description": "The command and its arguments to execute.",
                  "items": {
                    "type": "string"
                  }
                }
              },
              "required": [
                "name",
                "commands"
              ],
              "additionalProperties": false
            }
          },
          "additionalProperties": false
        },
        "external": {
          "type": "object",
          "description": "Configuration for external commands used by the application.",
          "properties": {
            "clipboard": {
              "description": "The clipboard command to use for copy operations.\n- \"Auto\": Use the default clipboard library\n- { Custom = { commands = [\"...\"] } }: Use a custom command that receives text via stdin",
              "oneOf": [
                {
                  "type": "string",
                  "enum": [
                    "Auto"
                  ]
                },
                {
                  "type": "object",
                  "properties": {
                    "Custom": {
                      "type": "object",
                      "properties": {
                        "commands": {
                          "type": "array",
                          "description": "A custom command that receives text via stdin.",
                          "items": {
                            "type": "string"
                          }
                        }
                      },
                      "required": [
                        "commands"
                      ],
                      "additionalProperties": false
                    }
                  },
                  "required": [
                    "Custom"
                  ],
                  "additionalProperties": false
                }
              ],
              "default": "Auto"
            }
          },
          "additionalProperties": false
        }
      },
      "additionalProperties": false
    },
    "ui": {
      "type": "object",
      "description": "UI appearance settings",
      "properties": {
        "common": {
          "type": "object",
          "properties": {
            "cursor_type": {
              "description": "The type of cursor to display in input fields.",
              "oneOf": [
                {
                  "type": "string",
                  "enum": [
                    "Native"
                  ]
                },
                {
                  "type": "object",
                  "properties": {
                    "Virtual": {
                      "type": "string",
                      "description": "A string to be used as a virtual cursor."
                    }
                  },
                  "required": [
                    "Virtual"
                  ],
                  "additionalProperties": false
                }
              ],
              "default": "Native"
            }
          },
          "additionalProperties": false
        },
        "list": {
          "type": "object",
          "description": "Settings for the commit list view.",
          "properties": {
            "subject_min_width": {
              "type": "integer",
              "description": "The minimum width of a subject in the commit list.",
              "default": 20
            },
            "date_format": {
              "type": "string",
              "description": "The date format for the author date in strftime format.",
              "default": "%Y-%m-%d"
            },
            "date_width": {
              "type": "integer",
              "description": "The width of the author date column.",
              "default": 10
            },
            "date_local": {
              "type": "boolean",
              "description": "Whether to show the author date in local timezone.",
              "default": true
            },
            "name_width": {
              "type": "integer",
              "description": "The width of the author name column.",
              "default": 20
            }
          },
          "additionalProperties": false
        },
        "detail": {
          "type": "object",
          "description": "Settings for the commit detail view.",
          "properties": {
            "height": {
              "type": "integer",
              "description": "The height of the commit detail area.",
              "default": 20
            },
            "date_format": {
              "type": "string",
              "description": "The date format for author/committer dates in strftime format.",
              "default": "%Y-%m-%d %H:%M:%S %z"
            },
            "date_local": {
              "type": "boolean",
              "description": "Whether to show dates in local timezone.",
              "default": true
            }
          },
          "additionalProperties": false
        },
        "user_command": {
          "type": "object",
          "description": "Settings for the user command view.",
          "properties": {
            "height": {
              "type": "integer",
              "description": "The height of the user command area.",
              "default": 20
            }
          },
          "additionalProperties": false
        },
        "refs": {
          "type": "object",
          "description": "Settings for the refs list view.",
          "properties": {
            "width": {
              "type": "integer",
              "description": "The width of the refs list area.",
              "default": 26
            }
          },
          "additionalProperties": false
        }
      },
      "additionalProperties": false
    },
    "graph": {
      "type": "object",
      "description": "Commit graph rendering settings",
      "properties": {
        "color": {
          "type": "object",
          "description": "Colors for the commit graph.",
          "properties": {
            "branches": {
              "type": "array",
              "description": "Colors used for the branches in the graph. Should be in #RRGGBB or #RRGGBBAA format.",
              "items": {
                "type": "string",
                "pattern": "^#[0-9a-fA-F]{6}([0-9a-fA-F]{2})?$"
              },
              "default": [
                "#E06C76",
                "#98C379",
                "#E5C07B",
                "#61AFEF",
                "#C678DD",
                "#56B6C2"
              ]
            },
            "edge": {
              "type": "string",
              "description": "Color of the edge surrounding the commit circles. Should be in #RRGGBB or #RRGGBBAA format.",
              "pattern": "^#[0-9a-fA-F]{6}([0-9a-fA-F]{2})?$",
              "default": "#00000000"
            },
            "background": {
              "type": "string",
              "description": "Background color of the commit graph. Should be in #RRGGBB or #RRGGBBAA format.",
              "pattern": "^#[0-9a-fA-F]{6}([0-9a-fA-F]{2})?$",
              "default": "#00000000"
            }
          },
          "additionalProperties": false
        }
      },
      "additionalProperties": false
    },
    "color": {
      "type": "object",
      "description": "The colors of each element of the application. Colors can be specified as ANSI color names (e.g., 'red', 'bright-blue'), 8-bit color indices (e.g., '34', '128'), or 24-bit hex codes (e.g., '#abcdef').",
      "properties": {
        "fg": {
          "type": "string",
          "description": "Foreground color.",
          "default": "reset"
        },
        "bg": {
          "type": "string",
          "description": "Background color.",
          "default": "reset"
        },
        "list_selected_fg": {
          "type": "string",
          "description": "Foreground color for a selected item in lists.",
          "default": "white"
        },
        "list_selected_bg": {
          "type": "string",
          "description": "Background color for a selected item in lists.",
          "default": "dark-gray"
        },
        "list_ref_paren_fg": {
          "type": "string",
          "description": "Color for parentheses surrounding refs in the commit list.",
          "default": "yellow"
        },
        "list_ref_branch_fg": {
          "type": "string",
          "description": "Color for local branches in the commit list.",
          "default": "green"
        },
        "list_ref_remote_branch_fg": {
          "type": "string",
          "description": "Color for remote branches in the commit list.",
          "default": "red"
        },
        "list_ref_tag_fg": {
          "type": "string",
          "description": "Color for tags in the commit list.",
          "default": "yellow"
        },
        "list_ref_stash_fg": {
          "type": "string",
          "description": "Color for stashes in the commit list.",
          "default": "magenta"
        },
        "list_head_fg": {
          "type": "string",
          "description": "Color for the HEAD indicator in the commit list.",
          "default": "cyan"
        },
        "list_subject_fg": {
          "type": "string",
          "description": "Color for the commit subject in the commit list.",
          "default": "reset"
        },
        "list_name_fg": {
          "type": "string",
          "description": "Color for the author name in the commit list.",
          "default": "cyan"
        },
        "list_hash_fg": {
          "type": "string",
          "description": "Color for the commit hash in the commit list.",
          "default": "yellow"
        },
        "list_date_fg": {
          "type": "string",
          "description": "Color for the date in the commit list.",
          "default": "magenta"
        },
        "list_match_fg": {
          "type": "string",
          "description": "Foreground color for a search match in the commit list.",
          "default": "black"
        },
        "list_match_bg": {
          "type": "string",
          "description": "Background color for a search match in the commit list.",
          "default": "yellow"
        },
        "detail_label_fg": {
          "type": "string",
          "description": "Color for labels in the commit detail view.",
          "default": "reset"
        },
        "detail_name_fg": {
          "type": "string",
          "description": "Color for author/committer names in the commit detail view.",
          "default": "reset"
        },
        "detail_date_fg": {
          "type": "string",
          "description": "Color for author/committer dates in the commit detail view.",
          "default": "reset"
        },
        "detail_email_fg": {
          "type": "string",
          "description": "Color for author/committer email addresses in the commit detail view.",
          "default": "blue"
        },
        "detail_hash_fg": {
          "type": "string",
          "description": "Color for the commit hash in the commit detail view.",
          "default": "reset"
        },
        "detail_ref_branch_fg": {
          "type": "string",
          "description": "Color for local branches in the commit detail view.",
          "default": "green"
        },
        "detail_ref_remote_branch_fg": {
          "type": "string",
          "description": "Color for remote branches in the commit detail view.",
          "default": "red"
        },
        "detail_ref_tag_fg": {
          "type": "string",
          "description": "Color for tags in the commit detail view.",
          "default": "yellow"
        },
        "detail_file_change_add_fg": {
          "type": "string",
          "description": "Color for added file status in the commit detail view.",
          "default": "green"
        },
        "detail_file_change_modify_fg": {
          "type": "string",
          "description": "Color for modified file status in the commit detail view.",
          "default": "yellow"
        },
        "detail_file_change_delete_fg": {
          "type": "string",
          "description": "Color for deleted file status in the commit detail view.",
          "default": "red"
        },
        "detail_file_change_move_fg": {
          "type": "string",
          "description": "Color for moved file status in the commit detail view.",
          "default": "magenta"
        },
        "ref_selected_fg": {
          "type": "string",
          "description": "Foreground color for a selected item in the refs list.",
          "default": "white"
        },
        "ref_selected_bg": {
          "type": "string",
          "description": "Background color for a selected item in the refs list.",
          "default": "dark-gray"
        },
        "help_block_title_fg": {
          "type": "string",
          "description": "Color for block titles in the help view.",
          "default": "green"
        },
        "help_key_fg": {
          "type": "string",
          "description": "Color for key bindings in the help view.",
          "default": "yellow"
        },
        "virtual_cursor_fg": {
          "type": "string",
          "description": "Foreground color for the virtual cursor.",
          "default": "reset"
        },
        "status_input_fg": {
          "type": "string",
          "description": "Foreground color for the status bar in input mode.",
          "default": "reset"
        },
        "status_input_transient_fg": {
          "type": "string",
          "description": "Foreground color for transient messages in the status bar.",
          "default": "dark-gray"
        },
        "status_info_fg": {
          "type": "string",
          "description": "Color for informational messages in the status bar.",
          "default": "cyan"
        },
        "status_success_fg": {
          "type": "string",
          "description": "Color for success messages in the status bar.",
          "default": "green"
        },
        "status_warn_fg": {
          "type": "string",
          "description": "Color for warning messages in the status bar.",
          "default": "yellow"
        },
        "status_error_fg": {
          "type": "string",
          "description": "Color for error messages in the status bar.",
          "default": "red"
        },
        "divider_fg": {
          "type": "string",
          "description": "Color for dividers.",
          "default": "dark-gray"
        }
      },
      "additionalProperties": false
    },
    "keybind": {
      "type": "object",
      "description": "Keybinding settings. Each property is an action, and its value is an array of key sequences.",
      "properties": {
        "force_quit": {
          "$ref": "#/definitions/keybindArray"
        },
        "quit": {
          "$ref": "#/definitions/keybindArray"
        },
        "help_toggle": {
          "$ref": "#/definitions/keybindArray"
        },
        "cancel": {
          "$ref": "#/definitions/keybindArray"
        },
        "close": {
          "$ref": "#/definitions/keybindArray"
        },
        "navigate_up": {
          "$ref": "#/definitions/keybindArray"
        },
        "navigate_down": {
          "$ref": "#/definitions/keybindArray"
        },
        "navigate_right": {
          "$ref": "#/definitions/keybindArray"
        },
        "navigate_left": {
          "$ref": "#/definitions/keybindArray"
        },
        "go_to_parent": {
          "$ref": "#/definitions/keybindArray"
        },
        "go_to_top": {
          "$ref": "#/definitions/keybindArray"
        },
        "go_to_bottom": {
          "$ref": "#/definitions/keybindArray"
        },
        "scroll_down": {
          "$ref": "#/definitions/keybindArray"
        },
        "scroll_up": {
          "$ref": "#/definitions/keybindArray"
        },
        "page_up": {
          "$ref": "#/definitions/keybindArray"
        },
        "page_down": {
          "$ref": "#/definitions/keybindArray"
        },
        "half_page_up": {
          "$ref": "#/definitions/keybindArray"
        },
        "half_page_down": {
          "$ref": "#/definitions/keybindArray"
        },
        "select_top": {
          "$ref": "#/definitions/keybindArray"
        },
        "select_middle": {
          "$ref": "#/definitions/keybindArray"
        },
        "select_bottom": {
          "$ref": "#/definitions/keybindArray"
        },
        "go_to_next": {
          "$ref": "#/definitions/keybindArray"
        },
        "go_to_previous": {
          "$ref": "#/definitions/keybindArray"
        },
        "confirm": {
          "$ref": "#/definitions/keybindArray"
        },
        "ref_list_toggle": {
          "$ref": "#/definitions/keybindArray"
        },
        "search": {
          "$ref": "#/definitions/keybindArray"
        },
        "ignore_case_toggle": {
          "$ref": "#/definitions/keybindArray"
        },
        "fuzzy_toggle": {
          "$ref": "#/definitions/keybindArray"
        },
        "short_copy": {
          "$ref": "#/definitions/keybindArray"
        },
        "full_copy": {
          "$ref": "#/definitions/keybindArray"
        }
      },
      "patternProperties": {
        "^user_command_view_toggle_[0-9]+$": {
          "description": "Keybinding to toggle a specific user command view, where the number corresponds to the command in 'core.user_command'.",
          "$ref": "#/definitions/keybindArray"
        }
      },
      "additionalProperties": false
    }
  },
  "additionalProperties": false,
  "definitions": {
    "keybindArray": {
      "type": "array",
      "description": "An array of key sequences for an action. Examples: [\"q\"], [\"ctrl-c\"], [\"j\", \"down\"]",
      "items": {
        "type": "string"
      }
    }
  }
}