Discussion:
completion
AVKuznetsov
2008-07-04 08:27:35 UTC
Permalink
Hi Tony,

thank you for the nice completion macros
http://nedit.hackvalue.nl/niki/index.php/Tony%27s_Complete_Word

Please, correct several lines at Niki

newComplete = (end != ctx["prefixEnd"] ||
end != search("\\y|\\s|$", pStart, R) || \
get_range(pStart, end) != prefix)

the first line is not terminated by "\"

for (pos = search_string(wordlist, prefixRE, end, R);
pos >= 0;
pos = search_string(wordlist, prefixRE, end, R)) {

two lines must be also terminated.

Unfortunately, NEdit's code is still free of macro language extensions.

Alexey
--
NEdit Discuss mailing list - Discuss-***@public.gmane.org
http://www.nedit.org/mailman/listinfo/discuss
Randy Kramer
2008-07-04 13:32:04 UTC
Permalink
Post by AVKuznetsov
Unfortunately, NEdit's code is still free of macro language extensions.
I'm curious--what are "macro language extensions" (which might need to be in
Nedit's code)?

Randy Kramer
--
NEdit Discuss mailing list - Discuss-***@public.gmane.org
http://www.nedit.org/mailman/listinfo/discuss
Bert Wesarg
2008-07-04 15:10:46 UTC
Permalink
hi,
Post by Randy Kramer
Post by AVKuznetsov
Unfortunately, NEdit's code is still free of macro language extensions.
I'm curious--what are "macro language extensions" (which might need to be in
Nedit's code)?
Tony has several patches which extends the NEdit macro language. You
can see a list here:

http://ajbj.free.fr/nedit/nedit5.5dev/patches/NEditPatches.html

but most patches should also be in the patch tracker.

bert
Post by Randy Kramer
Randy Kramer
--
NEdit Discuss mailing list - Discuss-***@public.gmane.org
http://www.nedit.org/mailman/listinfo/discuss
Tony Balinski
2008-07-13 16:59:14 UTC
Permalink
Post by AVKuznetsov
Hi Tony,
thank you for the nice completion macros
http://nedit.hackvalue.nl/niki/index.php/Tony%27s_Complete_Word
Please, correct several lines at Niki
newComplete = (end != ctx["prefixEnd"] ||
end != search("\\y|\\s|$", pStart, R) || \
get_range(pStart, end) != prefix)
the first line is not terminated by "\"
for (pos = search_string(wordlist, prefixRE, end, R);
pos >= 0;
pos = search_string(wordlist, prefixRE, end, R)) {
two lines must be also terminated.
Fixed. Yes, that's the problem with working with an enhanced NEdit!
Post by AVKuznetsov
Unfortunately, NEdit's code is still free of macro language extensions.
Let's get the 5.6 out!

Tony
--
NEdit Discuss mailing list - Discuss-***@public.gmane.org
http://www.nedit.org/mailman/listinfo/discuss
AVKuznetsov
2008-07-14 08:49:16 UTC
Permalink
Hi!
...........
Let's get the 5.6 out!
Tony
Yes! Can I help?

Alexey
--
NEdit Discuss mailing list - Discuss-***@public.gmane.org
http://www.nedit.org/mailman/listinfo/discuss
Loading...