Esta funcionalidade parece ser fornecida pelo pacote tcl-tclreadline
. De apt-cache show tcl-tclreadline
:
Description-en_CA: GNU Readline Extension for Tcl/Tk tclreadline adds GNU Readline support to standard Tcl/Tk. It provides interactive command editing and history for Tcl shells (this must be enabled on a user-by-user basis) and allows the use of GNU Readline features in Tcl programs.
Depois de ter instalado o pacote, seja a partir do Centro de Software ou através da linha de comando usando sudo apt-get install tcl-tclreadline
, você pode habilitá-lo para shells interativos tcl adicionando
if {$tcl_interactive} {
package require tclreadline
::tclreadline::Loop
}
ao seu arquivo $HOME/.tclshrc
, conforme explicado na página inicial do projeto tclreadline .