Start work on quick-access-terminal kitten

This commit is contained in:
Kovid Goyal
2025-04-28 19:52:04 +05:30
parent 83bb1553f7
commit 5683314784
13 changed files with 164 additions and 46 deletions

View File

@@ -78,10 +78,6 @@ func (self *Option) FormatOptionForMan(output io.Writer) {
fmt.Fprint(output, "\" ")
defval := self.Default
switch self.OptionType {
case StringOption:
if self.IsList {
defval = ""
}
case CountOption:
defval = ""
case BoolOption:
@@ -109,10 +105,6 @@ func (self *Option) FormatOption(output io.Writer, formatter *markup.Context, sc
}
defval := self.Default
switch self.OptionType {
case StringOption:
if self.IsList {
defval = ""
}
case CountOption:
defval = ""
case BoolOption: