Overview
Comment: | Modified Files: README sample.tclshrc tclreadline.n.in tclreadlineSetup.tcl.in Added Files: Makefile.in tclreadline.c tclreadlineConfig.sh.in tclreadlineInit.tcl.in |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
12f1ef04084e8a17ce0e9bb65d5e76c6 |
User & Date: | johannes@zellner.org on 1999-08-22 22:28:30 |
Other Links: | manifest | tags |
Context
1999-08-22
| ||
22:34 | tclreadlineSetup.tcl.in check-in: 66eb0d332d user: johannes@zellner.org tags: trunk | |
22:28 | Modified Files: README sample.tclshrc tclreadline.n.in tclreadlineSetup.tcl.in Added Files: Makefile.in tclreadline.c tclreadlineConfig.sh.in tclreadlineInit.tcl.in check-in: 12f1ef0408 user: johannes@zellner.org tags: trunk | |
21:31 | Modified Files: README tclreadline.n.in tclreadlineSetup.tcl.in Added Files: Makefile.in tclreadline.c tclreadlineConfig.sh.in tclreadlineInit.tcl.in check-in: 32efe7b8fe user: johannes@zellner.org tags: trunk | |
Changes
Modified README from [b445706663] to [109aca9237].
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | FILE: "/home/joze/src/tclreadline/README" |
︙ | |||
79 80 81 82 83 84 85 | 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | - + + + + + + + + + + - - + + - - + + + - + | tclreadline-0.9: (Aug 1999) changes: - tclreadline::readline customcompleter - tclreadline::readline builtincompleter - tclreadline::readline eofchar |
Modified sample.tclshrc from [79de25f768] to [7e7f1c5e92].
1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | - - + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + | #!/bin/sh |
Modified tclreadline.n.in from [401a33cf08] to [d7922e5c29].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 | - + | .TH tclreadline n "@TCLREADLINE_VERSION@" "Johannes Zellner" .\" (C) 1999 by Johannes Zellner .\" FILE: "/home/joze/src/tclreadline/tclreadline.n.in" |
︙ | |||
119 120 121 122 123 124 125 | 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | - + | Example: \fB% puts $b<TAB>\fP will call the custom completer with the four arguments \fI"$b"\fP, \fI"5"\fP, \fI"8"\fP and \fI"puts $b"\fP. The custom completer could return a string like "$bl $black $blue", which will complete "$b" to "$bl" (the longest match) and offer a list of two further matches "$black" and "$blue". |
︙ | |||
164 165 166 167 168 169 170 | 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 | - + + + + - + + + + | .TP 5 \fB::tclreadline::Print\fP [\fIyes / no\fP] turns on or off the default behavior of tclsh to print the result of every command. This is turned on by default, so it will just behave as the tclsh w/o tclreadline. Turning off might be useful, when reading binary data for example. If \fB::tclreadline::Print\fP is called w/o |
︙ | |||
276 277 278 279 280 281 282 | 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 | - + + + + + + + | Christian Krone <krischan@sql.de>, Larry W. Virden <lvirden@cas.org>, David Engel <dlengel@home.com>, <david@debian.org> .SH DEBIAN PACKAGE David Engel <dlengel@home.com>, <david@debian.org> |
Modified tclreadlineSetup.tcl.in from [92fdf6b439] to [65d3fcdc8e].
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | #!/usr/local/bin/tclsh # FILE: "/home/joze/src/tclreadline/tclreadlineSetup.tcl.in" |
︙ | |||
159 160 161 162 163 164 165 | 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | - + | } else { append part $char } } return ${part} } |
︙ | |||
226 227 228 229 230 231 232 | 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 | - + | proc ::tclreadline::Setup {} { uplevel #0 { if {[info commands ::tclreadline::readline] == ""} { ::tclreadline::Init } |
︙ |