Overview
Comment: | Modified Files: share/vim/VIM/vimrc src/tclreadline/tclreadlineSetup.tcl.in Added Files: src/csym/version src/tclreadline/Makefile.in src/tclreadline/tclreadline.c src/tclreadline/tclreadlineConfig.sh.in src/tclreadline/tclreadlineInit.tcl.in |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1624ab45b9636083f4129f1ff60b318b |
User & Date: | johannes@zellner.org on 1999-08-29 23:51:00 |
Other Links: | manifest | tags |
Context
1999-08-29
| ||
23:56 | tclreadlineSetup.tcl.in check-in: f99d41820c user: johannes@zellner.org tags: trunk | |
23:51 | Modified Files: share/vim/VIM/vimrc src/tclreadline/tclreadlineSetup.tcl.in Added Files: src/csym/version src/tclreadline/Makefile.in src/tclreadline/tclreadline.c src/tclreadline/tclreadlineConfig.sh.in src/tclreadline/tclreadlineInit.tcl.in check-in: 1624ab45b9 user: johannes@zellner.org tags: trunk | |
14:41 | Modified Files: share/vim/ft/tcl_ft.vim src/tclreadline/README src/tclreadline/configure.in src/tclreadline/tclreadline.h.in src/tclreadline/tclreadline.n.in src/tclreadline/tclreadlineSetup.tcl.in Added Files: bin/script/tcltags src/csym/version src/tclreadline/Makefile.in src/tclreadline/tclreadline.c src/tclreadline/tclreadlineConfig.sh.in src/tclreadline/tclreadlineInit.tcl.in check-in: a912dd1a5a user: johannes@zellner.org tags: trunk | |
Changes
Modified tclreadlineSetup.tcl.in from [3f57a0d3cc] to [2f6ce36029].
|
| | | | 1 2 3 4 5 6 7 8 9 10 | #!/usr/locanl/bin/tclsh # FILE: "/home/joze/src/tclreadline/tclreadlineSetup.tcl.in" # LAST MODIFICATION: "Mon Aug 30 01:34:07 1999 (joze)" # (C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org> # $Id$ # --- # # tclreadline -- gnu readline for tcl # Copyright (C) 1999 Johannes Zellner # |
︙ | ︙ | |||
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | # - lrange # - lreplace # - lsearch # - lsort # - history # - load # - namespace # - set # - unset # # package provide tclreadline @TCLREADLINE_VERSION@ package provide tclreadline 0.9 proc unknown args { | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 74 75 76 77 78 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 109 110 111 112 113 114 115 116 117 118 119 120 | # - lrange # - lreplace # - lsearch # - lsort # - history # - load # - namespace # - open # - package # - pkg_mkIndex # - proc # - puts # - pwd # - pid # - read # - regexp # - (registry is only on M$) # - regsub # - rename # - (resource is on mac only) # - return # - scan # TODO # - seek # - socket # - split # TODO # - string # - subst # - switch # - tell # - time # TODO ?? # - trace # - set # - unknown # - unset # - update # - uplevel # - upvar # - variable # - vwait # - while # TODO # # package provide tclreadline @TCLREADLINE_VERSION@ package provide tclreadline 0.9 proc unknown args { |
︙ | ︙ | |||
190 191 192 193 194 195 196 197 198 | } return -code error "invalid command name \"$name\"" } namespace eval tclreadline:: { namespace export Setup Glob Loop InitCmds InitTclCmds InitTkCmds Print ls } proc tclreadline::FmtFindInList {text lst} { | > > > > > > > > > > > > > > > > > > > | > > > > > > > > > > | > > > > > > | | 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 | } return -code error "invalid command name \"$name\"" } namespace eval tclreadline:: { namespace export Setup Glob Loop InitCmds InitTclCmds InitTkCmds Print ls } proc tclreadline::FirstNonOption {line} { set expr_pos 1 foreach word [lrange ${line} 1 end] {; # 0 is the command itself if {"-" != [string index ${word} 0]} { break } else { incr expr_pos } } return ${expr_pos} } proc tclreadline::FmtFindInList {text lst} { return [string trim [tclreadline::Format \ [tclreadline::FindInList $text $lst] $text]] } proc tclreadline::RemoveUsedOptions {line opts {terminate {}}} { if {[llength ${terminate}]} { if {[regexp -- ${terminate} ${line}]} { return "" } } set new "" foreach word ${opts} { if {![regexp -- ${word} ${line}]} { lappend new ${word} } } return [string trim ${new}] } proc tclreadline::FmtFindInListSpecial {text lst} { if {![llength ${text}]} { return [string trim "{} ${lst}"] } else { return [string trim [FmtFindInList ${text} ${lst}]] } } proc tclreadline::FindInList {text lst} { set result "" foreach word $lst { if {[string match ${text}* ${word}]} { lappend result ${word} } } return [string trim $result] } # get the longest common completion # e.g. str == {tcl_version tclreadline_version tclreadline_library} # --> [tclreadline::GetCommon ${str}] == "tcl" # |
︙ | ︙ | |||
457 458 459 460 461 462 463 | return [string trim "${pre}${common} ${matches}"] } } else { return ""; # nothing to complete } } | > > > > > > > > > > > > > > > > > > > | > > > > > > | | > > > > | | > > > | > > > > > > > > | > | | > > > > > > > > > > > > | | | | < < > > > | | > > | 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 | return [string trim "${pre}${common} ${matches}"] } } else { return ""; # nothing to complete } } proc tclreadline::FullQualifiedMatches {qualifier matchlist} { set new "" foreach entry ${matchlist} { set full ${qualifier}::${entry} if {"" != [namespace which ${full}]} { lappend new ${full} } } return ${new} } proc tclreadline::ProcsOnlyCompletion {cmd} { return [tclreadline::CommandCompletion ${cmd} procs] } proc tclreadline::CommandsOnlyCompletion {cmd} { return [tclreadline::CommandCompletion ${cmd} commands] } proc tclreadline::CommandCompletion {cmd {action both} {spc ::}} { set quali [namespace qualifiers ${cmd}] if {[llength ${quali}]} { set rec [CommandCompletion [namespace tail ${cmd}] ${action} ${quali}] return [FullQualifiedMatches ${quali} ${rec}] } # puts stderr \ncmd=|$cmd|\n set cmd [string trim ${cmd}]* if {"procs" != ${action}} { set commands [namespace eval $spc "info commands [QuoteQuotes ${cmd}]"] # puts stderr commands=|$commands| } else { set commands "" } if {"commands" != ${action}} { set procs [namespace eval $spc "info procs [QuoteQuotes ${cmd}]"] # puts stderr procs=|$procs| } else { set procs "" } set matches [namespace eval $spc concat ${commands} ${procs}] # # foreach match ${matches} { # set full ${spc}::${match} # if {"" != [namespace which ${full}]} { # lappend new bla::${full} # } # } # set namespaces [namespace children $spc ${cmd}] if {![llength ${matches}] && 1 == [llength ${namespaces}]} { set namespaces [string trim ${namespaces}] regsub {^([^:])} $namespaces {::\1} namespaces # set matches [namespace eval ${namespaces} \ # {concat [info commands] [info procs]}] if {"procs" != ${action}} { set n_commands [namespace eval ${namespaces} "info commands"] } else { set n_commands "" } if {"commands" != ${action}} { set n_procs [namespace eval ${namespaces} "info procs"] } else { set n_procs "" } set matches [string trim "${n_commands} ${n_procs}"] if {[llength ${matches}]} { # # foreach match ${matches} { # set full ${namespaces}::${match} # if {"" != [namespace which ${full}]} { # lappend new ${namespaces}::${match} # } # } # # set matches ${new} # unset new # set matches [FullQualifiedMatches ${namespaces} ${matches}] set namespaces "" } } return [string trim "${matches} ${namespaces}"] } # if the line entered so far is |
︙ | ︙ | |||
550 551 552 553 554 555 556 | } elseif {"" != [set sub [tclreadline::SubCmd $start $line]]} { set new_start [lindex $sub 0] set new_end [expr $end - ($start - $new_start)] set new_line [lindex $sub 1] # puts stderr "(SubCmd) $new_start $new_end $new_line" return \ [tclreadline::ScriptCompleter $part $new_start $new_end $new_line] | > | > > > > > | > | | > > > > | | 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 | } elseif {"" != [set sub [tclreadline::SubCmd $start $line]]} { set new_start [lindex $sub 0] set new_end [expr $end - ($start - $new_start)] set new_line [lindex $sub 1] # puts stderr "(SubCmd) $new_start $new_end $new_line" return \ [tclreadline::ScriptCompleter $part $new_start $new_end $new_line] } elseif {0 == \ [set pos [tclreadline::PartPosition $part $start $end $line]]} { # puts stderr "(PartPosition) $part $start $end $line" # set matches [array names known_cmds "[string trim ${part}]*"] set all [CommandCompletion ${part}] #puts \nmatches=$matches\n return [tclreadline::Format $all $part] } else { # try to use $pos further ... # regsub -all -- \" $line {\"} thisline set thisline [QuoteQuotes $line] set cmd [lindex $thisline 0] if {"." == [string index [lindex ${line} 0] 0]} { set alias WIDGET } else { set alias ${cmd} } if {"" != [namespace eval ::tclreadline \ "info procs complete($alias)"]} { # to be more error-proof, we could check here, # if complete($cmd) takes exactly 5 arguments. if {"\"" == [string index $part 0] \ || "\{" == [string index $part 0]} { set mod [string range $part 1 end] } else { set mod $part } if {[catch [list set script_result \ [::tclreadline::complete($alias) $part \ $start $end $line $pos $mod]] msg]} { error "error during evaluation of `complete($alias)'" } return ${script_result} } elseif {"" != [array names known_cmds $cmd]} { set current [lindex $known_cmds($cmd) $pos] if {"" != $current && "" == [string trim $part]} { return $current } else { return "" } } else { return "" } } error "{NOTREACHED (this is probably an error)}" } proc tclreadline::ls {args} { if {[exec uname -s] == "Linux"} { eval exec ls --color -FC [::tclreadline::Glob $args] } else { eval exec ls -FC [::tclreadline::Glob $args] |
︙ | ︙ | |||
800 801 802 803 804 805 806 | "break" "catch command ?varName?" "cd" "clock" "close <channelId>" "concat" "continue" | < < < | < < < | < < < | | < < | < | < | | 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 | "break" "catch command ?varName?" "cd" "clock" "close <channelId>" "concat" "continue" "eof <channelId>" "error message ?errorInfo? ?errorCode?" "eval arg ?arg ...?" "exec ?switches? arg ?arg ...?" "exit ?returnCode?" "expr arg ?arg ...?" "fblocked <channelId>" "fconfigure <channelId> ?optionName? ?value? ?optionName value?..." "fcopy input output ?-size size? ?-command callback?" "file" "fileevent channelId event ?script?" "flush channelId" "for start test next command" "foreach varList list ?varList list ...? command" "format formatString ?arg arg ...?" "gets channelId ?varName?" "glob" "global varName ?varName ...?" "incr varName ?increment?" "info option ?arg arg ...?" "interp cmd ?arg ...?" "join list ?joinString?" "lappend varName ?value value ...?" "lindex list index" "linsert list <index> <element> ?element ...?" "list" "llength list" "lrange list first last" "lreplace list first last ?element element ...?" "lsearch ?mode? list pattern" "lsort ?options? list" "namespace" "package option ?arg arg ...?" "proc name args body" "read ?-nonewline? channelId" "regexp ?switches? exp string ?matchVar? ?subMatchVar subMatchVar ...?" "rename oldName newName" "scan <string> <format> ?varName varName ...?" "set varName ?newValue?" "source <fileName>" "split <string> ?splitChars?" "subst ?-nobackslashes? ?-nocommands? ?-novariables? string" "switch ?switches? string pattern body ... ?default body?" "time <command> ?count?" "unknown <cmdName> ?arg? ?...?" "uplevel ?level? command ?arg ...?" "vwait name" "while test command" } { tclreadline::readline add $line set known_cmds([lindex $line 0]) ${line} } rename tclreadline::InitTclCmds "" } proc ::tclreadline::InitTkCmds {} { variable known_cmds foreach line { |
︙ | ︙ | |||
906 907 908 909 910 911 912 | "tk option ?arg?" "tkwait variable|visibility|window name" "toplevel pathName ?options?" "winfo option ?arg?" "wm option window ?arg ...?" } { tclreadline::readline add $line | | | | | | 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 | "tk option ?arg?" "tkwait variable|visibility|window name" "toplevel pathName ?options?" "winfo option ?arg?" "wm option window ?arg ...?" } { tclreadline::readline add $line set known_cmds([lindex $line 0]) ${line} } rename tclreadline::InitTkCmds "" } namespace eval tclreadline { # explicit command completers # # ------------------------------------- # TCL # ------------------------------------- proc complete(append) {text start end line pos mod} { if {1 == $pos} { return [VarCompletion ${text}] } return "" } |
︙ | ︙ | |||
1276 1277 1278 1279 1280 1281 1282 | return [FmtFindInList $text $cmds] } elseif {2 == $pos} { set cmd [lindex $line 1] switch -- $cmd { args - body - default - | | < < < | 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 | return [FmtFindInList $text $cmds] } elseif {2 == $pos} { set cmd [lindex $line 1] switch -- $cmd { args - body - default - procs { return [complete(proc) ${text} 0 0 ${line} 1 ${mod}] } complete { ; # TODO } level { ; # TODO } loaded { ;# TODO } commands - |
︙ | ︙ | |||
1450 1451 1452 1453 1454 1455 1456 | } elseif {![llength ${mod}]} { return "?element?" } return "" } proc complete(lsearch) {text start end line pos mod} { | > | > > > > | < < < | > | > > | < < < < | | | | < < < | < < < < | 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 | } elseif {![llength ${mod}]} { return "?element?" } return "" } proc complete(lsearch) {text start end line pos mod} { if {1 == $pos} { set options [FmtFindInListSpecial ${mod} { -exact -glob -regexp <list>}] set matches [ListCompletion ${text}] return [string trim "${matches} ${options}"] } else { if {![llength ${mod}]} { set opt [lindex ${line} 1] if {[llength [FmtFindInListSpecial ${opt} { -exact -glob -regexp }]]} { incr pos -1 } if {1 == $pos} { return <list> } elseif {2 == $pos} { return <pattern> } } } return "" } proc complete(lsort) {text start end line pos mod} { set options [FmtFindInListSpecial ${mod} { -ascii -dictionary -integer -real -command -increasing -decreasing -index }] set matches [ListCompletion ${text}] return [string trim "${matches} ${options}"] } proc complete(history) {text start end line pos mod} { if {1 == $pos} { set cmds {add change clear event info keep nextid redo} |
︙ | ︙ | |||
1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 | event - redo { if {![llength ${mod}]} { return ?event? } } clear - nextid { return "" } } } } proc complete(namespace) {text start end line pos mod} { if {1 == $pos} { set cmds { children code current delete eval export forget import inscope origin parent qualifiers tail which} return [FmtFindInList $text $cmds] } elseif {2 == $pos} { | > > > > > > < < < < < < > > > > > > > > > > > > > > > > > > > > > | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | > > > > | > > > > > > > | > > > > | | > | > > > > > > > | > > > > > > | > > > > > > > | > > > > > > > > > | > > > > > > > > > > | > > > > > > > > > > > > > > > > > | > > > > > > > > > > > > > > | > > > > > > > > > > > > > > > > | > > | > > > > > > > | > > > > > > > > > > > | > > > > > > | > | > > | > > > > > > > > > > > > > > > > > | > > > > > > > | 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 | event - redo { if {![llength ${mod}]} { return ?event? } } clear - nextid { return "" } } } return "" } proc complete(namespace) {text start end line pos mod} { regsub {^([^:])} ${mod} {::\1} mod # TODO dosn't work ??? set space_matches [namespace children :: [string trim ${mod}*]] # puts \nspace_matches=|${space_matches}| set cmd [lindex $line 1] if {1 == $pos} { set cmds { children code current delete eval export forget import inscope origin parent qualifiers tail which} return [FmtFindInList $text $cmds] } elseif {2 == $pos} { switch -- $cmd { children - delete - eval - inscope - forget - parent { return [FmtFindInList ${mod} $space_matches] } code { return "" } current {} export { return [FmtFindInListSpecial ${mod} -clear ?pattern?] } import { return [FmtFindInListSpecial ${mod} -force] } origin { if {![llength ${mod}]} { return <command> } } qualifiers - tail { if {![llength ${mod}]} { return <string> } } which { return [FmtFindInListSpecial ${mod} { -command -variable <name>}] } } # forget { if {![llength ${mod}]} { return ?pattern? } } } elseif {3 == $pos && "inscope" == $cmd} { if {![llength ${mod}]} { return arg } } else { switch -- $cmd { children { if {![llength ${mod}]} { return ?pattern? } } delete { return [FmtFindInList $text $space_matches] } eval { if {![llength ${mod}]} { return ?arg? } } inscope { if {![llength ${mod}]} { return ?arg? } } parent {} code {} current {} export { return [FmtFindInListSpecial ${mod} ?pattern?] } forget - import { if {![llength ${mod}]} { return ?pattern? } } origin {} qualifiers {} tail {} which { return [FmtFindInListSpecial $text { -command -variable <name>}] } } } return "" } proc complete(open) {text start end line pos mod} { if {![llength ${mod}]} { if {2 == $pos} { return ?access? } elseif {3 == $pos} { return ?permissions? } } return "" } proc complete(package) {text start end line pos mod} { set cmd [lindex $line 1] if {1 == $pos} { set cmds { forget ifneeded names present provide require unknown vcompare versions vsatisfies} return [FmtFindInList $text $cmds] } elseif {2 == $pos} { switch -- $cmd { forget - ifneeded - provide - versions { return [FmtFindInListSpecial ${mod} [package names]] } present - require { return [FmtFindInListSpecial ${mod} "-exact [package names]"] } names {} unknown { if {![llength ${mod}]} { return ?command? } } vcompare - vsatisfies { if {![llength ${mod}]} { return <version1> } } } } elseif {3 == $pos} { switch -- $cmd { forget {} ifneeded { if {![llength ${mod}]} { return <version> } } provide { if {![llength ${mod}]} { return ?version? } } versions {} present - require { set prev [PreviousWord ${start} ${line}] if {[llength [FmtFindInListSpecial ${prev} -exact]]} { return [FmtFindInListSpecial ${mod} [package names]] } elseif {![llength ${mod}]} { return ?version? } } names {} unknown {} vcompare - vsatisfies { if {![llength ${mod}]} { return <version2> } } } } return "" } proc complete(pkg_mkIndex) {text start end line pos mod} { set cmds [RemoveUsedOptions ${line} {-direct -load -verbose -- <dir>} {--}] set res [string trim [FmtFindInListSpecial $text $cmds]] if {[regexp -- [PreviousWord ${start} ${line}] -load] \ && ![llength ${mod}]} { return <pkgPat> } if {![llength [join ${res}]]} { return "" } else { return ${res} } return "" } proc complete(proc) {text start end line pos mod} { # puts known_procs=|${known_procs}| if {1 == $pos} { set known_procs [ProcsOnlyCompletion ${mod}] set common [GetCommon ${known_procs}] if {"" == ${common}} { return [Format ${known_procs} ${text}] } else { return [string trim "${common} ${known_procs}"] } } elseif {2 == $pos} { set proc [lindex $line 1] if {[catch {set args [uplevel 2 info args ${proc}]}]} { return "" } else { return [list "\{${args}\} \{"] } } return "" } proc complete(puts) {text start end line pos mod} { if {1 == $pos} { return [FmtFindInListSpecial ${mod} "-nonewline [OutChannelId ${mod}]"] } elseif {2 <= $pos} { if {![llength ${mod}]} { set opt [lindex ${line} 1] if {[llength [FmtFindInListSpecial ${opt} {-nonewline}]]} { incr pos -1 } if {1 == $pos} { return [OutChannelId ${mod}] } elseif {2 == $pos} { return <string> } } } return "" } proc complete(read) {text start end line pos mod} { if {1 == $pos} { return [FmtFindInListSpecial ${mod} "-nonewline [InChannelId ${mod}]"] } elseif {2 == $pos} { if {![llength ${mod}]} { set opt [lindex ${line} 1] if {[llength [FmtFindInListSpecial ${opt} {-nonewline}]]} { return [InChannelId ${mod}] } elseif {![llength ${mod}]} { return <numBytes> } } } return "" } proc complete(regexp) {text start end line pos mod} { set prev [PreviousWord ${start} ${line}] if {[llength ${prev}] && ("-" == [string index ${prev} 0] || 1 == $pos)} { set cmds [RemoveUsedOptions ${line} { -nocase -indices -expanded -line -linestop -lineanchor -about <expression> --} {--}] if {[llength ${cmds}]} { return [string trim [FmtFindInListSpecial $text $cmds]] } } else { set virtual_pos [expr ${pos} - [FirstNonOption ${line}]] switch -- ${virtual_pos} { 1 { if {![llength ${mod}]} { return <string> } } 2 { if {![llength ${mod}]} { return ?matchVar? } } default { if {![llength ${mod}]} { return ?subMatchVar? } } } } return "" } proc complete(regsub) {text start end line pos mod} { set prev [PreviousWord ${start} ${line}] if {[llength ${prev}] && ("-" == [string index ${prev} 0] || 1 == $pos)} { set cmds [RemoveUsedOptions ${line} {-all -nocase -- <expression>} {--}] set res [string trim [FmtFindInListSpecial ${mod} ${cmds}]] if {[llength ${res}]} { return ${res} } } else { set virtual_pos [expr ${pos} - [FirstNonOption ${line}]] switch -- ${virtual_pos} { 1 { if {![llength ${mod}]} { return <expression> } } 2 { if {![llength ${mod}]} { return <string> } } 3 { if {![llength ${mod}]} { return <subSpec> } } 4 { if {![llength ${mod}]} { return <varName> } } } } return "" } proc complete(rename) {text start end line pos mod} { if {1 == $pos} { set all [CommandCompletion ${mod}] return [tclreadline::Format $all ${mod}] } elseif {2 == $pos && ![llength ${mod}]} { return <newName> } return "" } proc complete(return) {text start end line pos mod} { # TODO this is not perfect yet set cmds {-code -errorinfo -errorcode <string>} set res [FmtFindInListSpecial [PreviousWord ${start} ${line}] ${cmds}] if {1 == [llength ${res}]} { switch -- ${res} { -errorinfo { if {![llength ${mod}]} { return <info> } } -code - -errorcode { set codes {ok error return break continue} return [FmtFindInList ${mod} ${codes}] } } } set cmds [RemoveUsedOptions ${line} ${cmds}] set res [string trim [FmtFindInListSpecial ${mod} ${cmds}]] if {[llength ${res}]} { return ${res} } return "" } proc complete(seek) {text start end line pos mod} { if {1 == $pos} { return [ChannelId ${mod}] } elseif {2 == $pos} { return [FmtFindInList ${mod} {start current end}] } return "" } proc complete(set) {text start end line pos mod} { # puts stderr "\ntext=|$text| $start $end\n" # puts stderr \nline=|$line|\n |
︙ | ︙ | |||
1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 | return "" } else { return [Quote $value ${text}] } } return "" } proc complete(unset) {text start end line pos mod} { return [VarCompletion ${text}] } }; # namespace tclreadline | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 | return "" } else { return [Quote $value ${text}] } } return "" } proc complete(socket) {text start end line pos mod} { set cmd [lindex ${line} 1] set prev [PreviousWord ${start} ${line}] if {"-server" == ${cmd}} { # server sockets # if {2 == $pos && ![llength ${mod}]} { return <command> } switch -- ${prev} { -myaddr { if {![llength ${mod}]} { return <addr> } } } return [FmtFindInList ${mod} [concat {-error -sockname -peername}]] } else { # client sockets # switch -- ${prev} { -myaddr { if {![llength ${mod}]} { return <addr> } } -myport { if {![llength ${mod}]} { return <port> } } } # read the host table only once. # variable hosts if {![info exists hosts] && "-server" != ${cmd}} { set id [open /etc/hosts r] set hosts "" if {0 != ${id}} { while {-1 != [gets ${id} line]} { regsub {#.*} ${line} {} line if {[llength ${line}] >= 2} { lappend hosts [lindex ${line} 1] } } close $id } } set cmds {-myaddr -myport -async -myaddr -error -sockname -peername} if {$pos <= 1} { lappend cmds -server } return [FmtFindInList ${mod} [concat ${cmds} ${hosts}]] } return "" } proc complete(string) {text start end line pos mod} { set cmd [lindex ${line} 1] set cmds { compare first index last length match range tolower totitle toupper trim trimleft trimright wordend wordstart} if {1 == $pos} { return [FmtFindInList ${mod} ${cmds}] } elseif {2 == $pos} { switch -- $cmd { compare - first - last { if {![llength ${mod}]} { return <string1> } } match { if {![llength ${mod}]} { return <pattern> } } index - length - range - tolower - totitle - toupper - trim - trimleft - trimright - wordend - wordstart { if {![llength ${mod}]} { return <string> } } } } elseif {3 == $pos} { switch -- $cmd { compare - first - last { if {![llength ${mod}]} { return <string2> } } index { if {![llength ${mod}]} { return <charIndex> } } length {} match { if {![llength ${mod}]} { return <string> } } range { if {![llength ${mod}]} { return <first> } } tolower - totitle - toupper {} trim - trimleft { if {![llength ${mod}]} { return ?chars? } } trimright - wordend - wordstart { if {![llength ${mod}]} { return <index> } } } } return "" } proc complete(subst) {text start end line pos mod} { set opts {-nobackslashes -nocommands -novariables} set opts [RemoveUsedOptions ${line} ${opts}] return [FmtFindInList ${mod} [concat ${opts} <string>]] return "" } proc complete(switch) {text start end line pos mod} { set opts {-exact -glob -regexp --} set opts [RemoveUsedOptions ${line} ${opts} {--}] return [FmtFindInList ${mod} [concat ${opts} <string>]] return "" } proc complete(tell) {text start end line pos mod} { if {1 == $pos} { return [ChannelId ${mod}] } return "" } proc complete(trace) {text start end line pos mod} { set cmd [lindex ${line} 1] if {1 == $pos} { return [FmtFindInList ${mod} {variable vdelete vinfo}] } elseif {2 == $pos} { return [Format [uplevel 2 info vars "${mod}*"] ${mod}] } elseif {3 == $pos && "variable" == ${cmd}} { return [FmtFindInList ${mod} {r w u}] } return "" } proc complete(update) {text start end line pos mod} { if {1 == $pos && ![llength ${mod}]} { return ?idletasks? } return "" } proc complete(uplevel) {text start end line pos mod} { if {![llength ${mod}]} { if {1 == $pos} { return ?level? } elseif {2 == $pos} { return <command> } elseif {3 == $pos} { return ?arg? } elseif {4 == $pos} { return ?...? } } return "" } proc complete(upvar) {text start end line pos mod} { if {![llength ${mod}]} { if {1 == $pos} { return ?level? } elseif {2 == $pos} { return <otherVar> } elseif {3 == $pos} { return <myVar> } elseif {4 == $pos} { return ?...? } } return "" } proc complete(variable) {text start end line pos mod} { set modulo [expr $pos % 2] if {1 == ${modulo}} { return [VarCompletion ${mod}] } elseif {0 == ${modulo} && \ ($text == "" || $text == "\"" || $text == "\{")} { set line [QuoteQuotes $line] incr pos -1 if {[catch \ "set value [list [uplevel [info level] set [lindex $line ${pos}]]]"\ msg]} { return "" } else { return [Quote $value ${mod}] } } return "" } proc complete(vwait) {text start end line pos mod} { if {1 == ${pos}} { return [VarCompletion ${mod}] } } proc complete(unset) {text start end line pos mod} { return [VarCompletion ${text}] } # ------------------------------------- # TK # ------------------------------------- # generic widget configuration proc TrySubCmds cmd { set trystring ____ set result "" if [catch {set result [${cmd} ${trystring}]} msg] { if {[regexp {bad *option.*____.*: *must *be( .*$)} ${msg} all raw]} { regsub -all -- , ${raw} { } raw set len [llength ${raw}] set len_2 [expr ${len} - 2] for {set i 0} {${i} < ${len}} {incr i} { set word [lindex ${raw} ${i}] if {"or" != ${word} && ${i} != ${len_2}} { lappend result ${word} } } } } return ${result} } proc WidgetList {pattern} { regsub {^([^\.])} ${pattern} {\.\1} pattern if {[winfo exists ${pattern}]} { return [winfo children ${pattern}] } else { regsub {.[^.]*$} $pattern {} pattern if {[winfo exists ${pattern}]} { return [winfo children ${pattern}] } else { return "" } } } proc complete(WIDGET) {text start end line pos mod} { set widget [lindex ${line} 0] set cmd [lindex ${line} 1] # first we build an option table # if {[catch [list set option_table [${widget} configure]] msg]} { return "" } foreach optline ${option_table} { if {5 != [llength ${optline}]} continue else { lappend options(switches) [lindex ${optline} 0] lappend options(value) [lindex ${optline} 4] } } if {1 >= ${pos}} { set cmds [TrySubCmds ${widget}] if {[llength ${cmds}]} { return [FmtFindInList ${mod} ${cmds}] } } elseif {2 <= ${pos} && ([string match ${cmd}* cget] || \ [string match ${cmd}* configure])} { set prev [PreviousWord ${start} ${line}] #puts \nprev=|$prev| #puts switches=|$options(switches)| #puts found=[lsearch -exact ${prev} $options(switches)] if {-1 != [set found [lsearch -exact $options(switches) ${prev}]]} { if {![llength ${mod}]} { return [lindex $options(value) ${found}] } } else { return [FmtFindInList ${mod} $options(switches)] } } return "" } proc complete(winfo) {text start end line pos mod} { set cmd [lindex ${line} 1] if {1 >= ${pos}} { set cmds [TrySubCmds winfo] if {[llength ${cmds}]} { return [FmtFindInList ${mod} ${cmds}] } } elseif {2 == ${pos}} { return [FmtFindInList ${mod} [WidgetList ${mod}]] } return "" } }; # namespace tclreadline |