From 3d0ae84dc2f61fe131fb06da113c69454db6d5cc Mon Sep 17 00:00:00 2001 From: svk Date: Thu, 12 Feb 2026 11:53:37 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D1=8D=D0=BA=D1=80=D0=B0=D0=BD=D0=B8=D1=80=D0=BE=D0=B2=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20'*'=20=D0=B2=20=D0=B8=D0=BC=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=20=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=B8=20=D0=B4?= =?UTF-8?q?=D0=BB=D1=8F=20=D0=BF=D0=BE=D0=B8=D1=81=D0=BA=D0=B0.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/tree.tcl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/tree.tcl b/lib/tree.tcl index 2fc99ab..37ff5e8 100644 --- a/lib/tree.tcl +++ b/lib/tree.tcl @@ -132,8 +132,10 @@ namespace eval Tree { $nbEditor select $nbItem set txt $nbItem.frmText.t set findString [dict get $lexers [dict get $editors $txt fileType] procFindString] + DebugPuts "Tree::PressItem: $findString\n values: $values" + regsub -all {\*} $values {\\*} values regsub -all {PROCNAME} $findString $values str - + DebugPuts "Tree::PressItem: $str" Editor::FindFunction $txt "$str" } }