Thanks for new version. It's awesome:)
I'm using PSPath for TCL/TK and I'd like to make it as much TCL friendly as
possible.
I start to use the newest beta version of TCL/TK with PSPad and I missed some
keywords. 
Could you add them to the distribution? Here you have the list:
try apply dict chan lassign unload zlib throw lreverse next my superclass
self

Next things:
1. TCL codeBrowser and Variables section. In my opinion is useless and slow down
processing of the file. In TCL you can set/unset many variables and seeing them
in codeBrowser dosn't speed up coding. I'm voting to remove variable section, if
it's possible

2. codeBrowser fo objects. I see the methods are processing but class not.
Bellow you can find example. Please note that you can use _oo::class_ or
_class_ directly:
oo::class create fruit {
    method eat {} {
        puts "yummy!"
    }
}
oo::class create banana {
    superclass fruit
    constructor {} {
        my variable peeled
        set peeled 0
    }
    method peel {} {
        my variable peeled
        set peeled 1
        puts "skin now off"
    }
    method edible? {} {
        my variable peeled
        return $peeled
    }
    method eat {} {
        if {![my edible?]} {
            my peel
        }
        next
    }
}

3. Variable highlighter problem: when minus(-) is before variable char $, the
variable is not highlighed. Please examinate follow example:
set a -$t     ;# $t is not highlighted
set a +$t     ;# everything is OK

Thanks in advance

-- 
<http://forum.pspad.com/read.php?6,55988,55997>
PSPad freeware editor http://www.pspad.com

Odpovedet emailem