Document the new run-shell kitten

This commit is contained in:
Kovid Goyal
2023-06-26 10:47:13 +05:30
parent 7e35ee33e3
commit 01b55a5522
3 changed files with 30 additions and 4 deletions

View File

@@ -44,12 +44,12 @@ func EntryPoint(root *cli.Command) *cli.Command {
})
sc.Add(cli.OptionSpec{
Name: "--shell-integration",
Help: "Specify a value for the shell_integration option, overriding the one from kitty.conf.",
Help: "Specify a value for the :opt:`shell_integration` option, overriding the one from :file:`kitty.conf`.",
})
sc.Add(cli.OptionSpec{
Name: "--shell",
Default: ".",
Help: "Specify the shell command to run. The default value of :code:`.` will use the parent shell if recognized, falling back to the value of the :code:`shell` option from kitty.conf.",
Help: "Specify the shell command to run. The default value of :code:`.` will use the parent shell if recognized, falling back to the value of the :opt:`shell` option from :file:`kitty.conf`.",
})
return sc
}