pspad:
--------------------------------------------------------------------------------
tyzio:
--------------------------------------------------------------------------------
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:
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
--------------------------------------------------------------------------------
I will add missing keywords
1. removed
2. I don't see any difference in your example in definition both classes
3. I will fix it
--------------------------------------------------------------------------------
Thanks for the feedback and corrections.
Regarding point 2, my mistake, they are the same. Bellow correct one:
_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"
}
}
--
<http://forum.pspad.com/read.php?6,55988,56021>
PSPad freeware editor http://www.pspad.com