mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-22 16:28:19 +02:00
Add --debug-rendering to QAT
This commit is contained in:
@@ -74,6 +74,9 @@ func main(cmd *cli.Command, opts *Options, args []string) (rc int, err error) {
|
|||||||
if conf.Hide_on_focus_loss {
|
if conf.Hide_on_focus_loss {
|
||||||
argv = append(argv, `--hide-on-focus-loss`)
|
argv = append(argv, `--hide-on-focus-loss`)
|
||||||
}
|
}
|
||||||
|
if opts.DebugRendering {
|
||||||
|
argv = append(argv, `--debug-rendering`)
|
||||||
|
}
|
||||||
if opts.Detach {
|
if opts.Detach {
|
||||||
argv = append(argv, `--detach`)
|
argv = append(argv, `--detach`)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -109,6 +109,11 @@ Path to a log file to store STDOUT/STDERR when using :option:`--detach`
|
|||||||
--instance-group
|
--instance-group
|
||||||
default=quick-access
|
default=quick-access
|
||||||
The unique name of this quick access terminal Use a different name if you want multiple such terminals.
|
The unique name of this quick access terminal Use a different name if you want multiple such terminals.
|
||||||
|
|
||||||
|
|
||||||
|
--debug-rendering
|
||||||
|
type=bool-set
|
||||||
|
For debugging interactions with the compositor/window manager.
|
||||||
'''
|
'''
|
||||||
|
|
||||||
def main(args: list[str]) -> None:
|
def main(args: list[str]) -> None:
|
||||||
|
|||||||
Reference in New Issue
Block a user