My wiki pages:Small notes:
- about [http proxy] for wikit at Suggestions for Wikit
- widget::rotext - Scrollable readonly text widget for Tcl/Tk. - Scrollable readonly text widget for Tcl/Tk.
- widget::radiogroup - Radio group widget intended for small groups of radiobuttons. - Radio group widget intended for small groups of radiobuttons.
- tkapp - Basic application framework for Tk. - Basic application framework for Tk.
- tcl1 - Frontend to run one line scripts in Tcl. - Frontend to run one line scripts in Tcl.
My .tclshrc
# my OS is Debian, so Tcl/Tk manual pages in sections 3tcl and 3tk
if {$tcl_platform(platform) eq {unix}} {
    proc help command {
        exec xterm -e man -S 3tcl:3tk $command &
        return
    }
}
