KR6H53E3RYWORZA76GYIO7SURPV5XAGQGPKOR7SEJBCAMCC4KGPQC // reservedClassifyKeys are single-character keys the classify TUI handles// itself (see tui/classify.go). User bindings to these keys would be silently// overridden by the TUI, so we reject them at config-load time.var reservedClassifyKeys = map[string]string{",": "previous segment",".": "next segment","0": "confirm label at certainty 100"," ": "open comment dialog",}
Config-load rejects bindings that collide with keys the TUI reserves for its owncommands (`,` previous segment, `.` next segment, `0` confirm at certainty 100,space opens the comment dialog). Previously these were silently shadowed by theTUI hotkey and the user's binding did nothing.